/* Stop page scroll while the loader is visible. */
html.is-loading,
html.is-loading body {
    overflow: hidden;
}

/* Full screen loading layer. */
.tech-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #111827;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 50% 45%, rgba(239, 47, 98, .11), transparent 36%),
        radial-gradient(circle at 18% 20%, rgba(255, 79, 122, .08), transparent 30%),
        linear-gradient(135deg, #f8fafc, #ffffff 48%, #f2f4f8);
    transition: opacity .65s ease, visibility .65s ease;
}

/* Dark theme loader background. */
html[data-theme="dark"] .tech-preloader {
    color: #ffffff;
    background:
        radial-gradient(circle at 50% 45%, rgba(239, 47, 98, .20), transparent 34%),
        radial-gradient(circle at 20% 20%, rgba(255, 79, 122, .10), transparent 28%),
        linear-gradient(135deg, #060608, #0b0b0d 45%, #070708);
}

/* Fade the loader away after loading. */
.tech-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Decorative loader layers. */
.tech-grid,
/* Soft glow behind the card. */
.tech-glow {
    position: absolute;
    pointer-events: none;
}

/* Subtle grid behind the loader. */
.tech-grid {
    inset: 0;
    opacity: 1;
    background-size: 58px 58px;
    background-image:
        linear-gradient(rgba(239, 47, 98, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 47, 98, .08) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
}

html[data-theme="dark"] .tech-grid {
    background-image:
        linear-gradient(rgba(239, 47, 98, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 47, 98, .14) 1px, transparent 1px);
}

.tech-glow {
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(239, 47, 98, .14);
    filter: blur(80px);
}

html[data-theme="dark"] .tech-glow {
    background: rgba(239, 47, 98, .18);
}

/* Main loader card. */
.tech-loader-box {
    position: relative;
    z-index: 2;
    width: min(92%, 420px);
    padding: 42px 34px;
    text-align: center;
    overflow: hidden;
    border-radius: 26px;
    color: #111827;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .90)),
        rgba(255, 255, 255, .94);
    border: 1px solid rgba(239, 47, 98, .26);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .90) inset,
        0 30px 90px rgba(15, 23, 42, .16),
        0 0 90px rgba(239, 47, 98, .16);
    backdrop-filter: blur(18px) saturate(1.12);
    box-sizing: border-box;
}

html[data-theme="dark"] .tech-loader-box {
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
        rgba(10, 10, 12, .92);
    border-color: rgba(239, 47, 98, .34);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .05) inset,
        0 32px 90px rgba(0, 0, 0, .58),
        0 0 90px rgba(239, 47, 98, .20);
}

/* Logo animation area. */
.tech-logo-loader {
    position: relative;
    width: 118px;
    height: 118px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
}

/* Orbit rings around the logo. */
.tech-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(239, 47, 98, .30);
}

.orbit-two {
    inset: 15px;
    border-color: rgba(95, 102, 115, .30);
}

html[data-theme="dark"] .orbit-two {
    border-color: rgba(174, 180, 191, .30);
}

/* Center logo badge. */
.tech-core {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #ef2f62, #ff4f7a);
    box-shadow:
        0 16px 36px rgba(239, 47, 98, .26),
        0 0 30px rgba(239, 47, 98, .28),
        inset 0 0 0 1px rgba(255, 255, 255, .45);
    box-sizing: border-box;
}

.tech-core span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.tech-core img {
    display: block;
    width: 40px;
    max-width: 40px;
    height: auto;
    padding-top: 1px;
}

.tech-loader-box h2 {
    margin: 0 0 8px;
    color: inherit;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.7rem;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -.04em;
}

.tech-loader-box h2 span,
.tech-loader-box h2 b {
    color: #ef2f62;
}

.tech-loader-box p {
    margin: 0 0 24px;
    color: #5f6673;
    font-size: .95rem;
    line-height: 1.45;
}

html[data-theme="dark"] .tech-loader-box p {
    color: #aeb4bf;
}

/* Loading progress track. */
.tech-progress {
    position: relative;
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(17, 24, 39, .12);
}

html[data-theme="dark"] .tech-progress {
    background: rgba(255, 255, 255, .10);
}

.tech-progress span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ef2f62, #ff4f7a, #ffffff);
    box-shadow: 0 0 22px rgba(239, 47, 98, .72);
}

/* Smaller loader on mobile. */
@media (max-width: 720px) {
    .tech-loader-box {
        padding: 34px 24px;
    }

    .tech-logo-loader {
        width: 96px;
        height: 96px;
    }

    .tech-core {
        width: 54px;
        height: 54px;
    }

    .tech-core img {
        width: 36px;
        max-width: 36px;
    }

    .tech-loader-box h2 {
        font-size: 1.45rem;
    }
}

/* Main site styles start here. */

/* Light theme tokens. */
:root {
    --bg: #f6f7fb;
    --bg-2: #ffffff;
    --bg-3: #eef1f7;
    --text: #111827;
    --muted: #4b5563;
    --muted-2: #6b7280;
    --pink: #ef2f62;
    --pink-2: #ff4f7a;
    --line: rgba(17, 24, 39, .12);
    --card: rgba(255, 255, 255, .88);
    --shadow: 0 28px 70px rgba(15, 23, 42, .15);
    --container: 1200px;
    --header-bg: rgba(255, 255, 255, .88);
    --input-bg: #ffffff;
    --mock-bg: #ffffff;
    --mock-title: #111827;
    --footer-bg: #ffffff;
    --dots: rgba(239, 47, 98, .22);
}

/* Dark theme tokens. */
html[data-theme="dark"] {
    --bg: #0b0b0d;
    --bg-2: #111113;
    --bg-3: #171719;
    --text: #ffffff;
    --muted: #c9c9cf;
    --muted-2: #8d8d96;
    --line: rgba(255, 255, 255, .12);
    --card: rgba(255, 255, 255, .055);
    --shadow: 0 28px 70px rgba(0, 0, 0, .45);
    --header-bg: rgba(12, 12, 14, .82);
    --input-bg: #0c0c0e;
    --mock-bg: #0e0e10;
    --mock-title: #ffffff;
    --footer-bg: #0a0a0b;
    --dots: rgba(239, 47, 98, .35);
}

/* Basic reset. */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Smooth anchor scrolling. */
html {
    scroll-behavior: smooth;
}

/* Main page setup. */
body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background .25s ease, color .25s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
}

/* Background dot texture. */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        radial-gradient(circle, var(--dots) 2px, transparent 3px),
        radial-gradient(circle, rgba(100, 116, 139, .18) 1px, transparent 2px);
    background-size: 210px 210px, 160px 160px;
    background-position: 40px 80px, 20px 30px;
    opacity: .45;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* Shared page width. */
.container {
    width: min(100% - 34px, var(--container));
    margin-inline: auto;
}

/* Responsive service image. */
.service-image {
    width: 400px;
    max-width: 100%;
    height: auto;
}

/* Ovval preloader. */
html.is-loading,
html.is-loading body {
    overflow: hidden;
}

.tech-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: var(--bg-2);
    color: var(--text);
    overflow: hidden;
    transition: opacity .65s ease, visibility .65s ease;
}

.tech-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tech-grid {
    position: absolute;
    inset: 0;
    animation: gridMove 5s linear infinite;
    background-color: var(--bg-2)
}

.tech-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgb(239, 133, 47) 1px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, .22) 1px, transparent 2px);
    background-size: 160px 160px, 230px 230px;
    background-position: 40px 30px, 80px 120px;
    animation: particlesFloat 6s ease-in-out infinite alternate;
}

.tech-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgb(0, 0, 0);
    filter: blur(80px);
    animation: glowPulse 2.4s ease-in-out infinite;
}

.tech-loader-box {
    position: relative;
    z-index: 2;
    width: min(92%, 420px);
    padding: 42px 34px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(0, 0, 0, 0.025)),
        rgba(10, 10, 12, 0.955);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.tech-loader-box::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    animation: scanLine 2s linear infinite;
}

.tech-loader-box::after {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid transparent;
    background:
        linear-gradient(90deg, transparent, rgba(231, 178, 4, 0.6), transparent) border-box;
    mask:
        linear-gradient(#000 0 0) padding-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: .45;
    pointer-events: none;
}

.tech-logo-loader {
    position: relative;
    width: 118px;
    height: 118px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
}

.tech-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(239, 47, 98, .24);
}

.tech-orbit::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 18px rgba(29, 177, 10, 0.9);
}

.orbit-one {
    animation: orbitRotate 1.6s linear infinite;
}

.orbit-two {
    inset: 15px;
    border-color: rgba(255, 255, 255, .15);
    animation: orbitRotateReverse 2.2s linear infinite;
}

.orbit-two::before {
    width: 8px;
    height: 8px;
    background: #ffffff;
    box-shadow: 0 0 18px rgba(255, 255, 255, .7);
}

.tech-core {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink), var(--pink-2));
    box-shadow:
        0 0 28px rgba(239, 47, 98, .62),
        inset 0 0 0 1px rgba(255, 255, 255, .28);
    animation: corePulse 1.5s ease-in-out infinite;
}


.tech-core img {
    padding-top: 1px;
    width: 40px;
    height: auto;
    max-width: 100%;
}

.tech-core span {
    color: #fff;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
}

.tech-loader-box h2 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 8px;
}

.tech-loader-box h2::first-letter {
    color: var(--pink);
}

.tech-loader-box p {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 24px;
}

.tech-progress {
    position: relative;
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.tech-progress span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--pink), var(--pink-2), #ffffff);
    box-shadow: 0 0 22px rgba(239, 47, 98, .8);
    animation: progressMove 1.45s ease-in-out infinite;
}

.tech-status {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: var(--muted-2);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tech-status span {
    position: relative;
    padding-left: 12px;
}

.tech-status span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink);
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(239, 47, 98, .9);
}

/* Loader animations. */
@keyframes orbitRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.08);
        filter: brightness(1.18);
    }
}

@keyframes progressMove {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(260%);
    }
}

@keyframes scanLine {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        transform: translateY(300px);
        opacity: 0;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(.95);
        opacity: .65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes gridMove {
    to {
        background-position: 58px 58px;
    }
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0);
        opacity: .35;
    }

    100% {
        transform: translateY(-22px);
        opacity: .75;
    }
}

@media (max-width: 720px) {
    .tech-loader-box {
        padding: 34px 24px;
    }

    .tech-logo-loader {
        width: 96px;
        height: 96px;
    }

    .tech-core {
        width: 54px;
        height: 54px;
    }

    .tech-loader-box h2 {
        font-size: 1.45rem;
    }
}

/* Respect reduced motion settings. */
@media (prefers-reduced-motion: reduce) {

    .tech-grid,
    .tech-grid::after,
    .tech-glow,
    .tech-orbit,
    .tech-core,
    .tech-progress span,
    .tech-loader-box::before {
        animation: none !important;
    }
}


/* Loader theme polish. */

:root {
    --preloader-bg:
        radial-gradient(circle at 50% 45%, rgba(239, 47, 98, .13), transparent 34%),
        radial-gradient(circle at 18% 20%, rgba(255, 79, 122, .10), transparent 28%),
        linear-gradient(135deg, #f7f8fc, #ffffff 48%, #eef1f7);
    --preloader-card:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72)),
        rgba(255, 255, 255, .86);
    --preloader-border: rgba(239, 47, 98, .22);
    --preloader-glow: rgba(239, 47, 98, .18);
    --preloader-grid: rgba(239, 47, 98, .12);
    --preloader-panel-shadow:
        0 0 0 1px rgba(17, 24, 39, .04) inset,
        0 28px 80px rgba(15, 23, 42, .16),
        0 0 70px rgba(239, 47, 98, .16);
}

/* Dark loader colors. */
html[data-theme="dark"] {
    --preloader-bg:
        radial-gradient(circle at 50% 45%, rgba(239, 47, 98, .20), transparent 34%),
        radial-gradient(circle at 20% 20%, rgba(255, 79, 122, .10), transparent 28%),
        linear-gradient(135deg, #060608, #0b0b0d 45%, #070708);
    --preloader-card:
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
        rgba(10, 10, 12, .90);
    --preloader-border: rgba(239, 47, 98, .32);
    --preloader-glow: rgba(239, 47, 98, .18);
    --preloader-grid: rgba(239, 47, 98, .14);
    --preloader-panel-shadow:
        0 0 0 1px rgba(255, 255, 255, .04) inset,
        0 28px 80px rgba(0, 0, 0, .55),
        0 0 70px rgba(197, 239, 47, 0.18);
}

.tech-preloader {
    background: var(--preloader-bg);
    color: var(--text);
}

.tech-grid {
    background-image:
        linear-gradient(var(--preloader-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--preloader-grid) 1px, transparent 1px);
}

.tech-glow {
    background: var(--preloader-glow);
}

.tech-loader-box {
    border: 8px solid var(--preloader-border);
    border-radius: 24px;
}

.tech-loader-box h2 span {
    color: var(--pink);
}

.tech-status {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: var(--muted-2);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tech-status span {
    position: relative;
    padding-left: 12px;
}

.tech-status span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink);
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(239, 47, 98, .9);
}

/* Fixed top header. */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    transition: background .25s ease, border-color .25s ease;
}

/* Header layout. */
.nav {
    min-height: 74px;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: stretch;
}

/* Logo and brand name. */
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-right: 28px;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -.04em;
}

.brand .mark {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--pink);
    color: white;
    overflow: hidden;
    font-weight: 900;
}

.brand .mark img {
    width: 40px;
}

.brand b {
    color: var(--pink);
}

/* Desktop navigation links. */
.nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.nav-menu a {
    height: 74px;
    display: grid;
    place-items: center;
    padding: 0 22px;
    color: var(--text);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: .22s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--pink);
    background: rgba(239, 47, 98, .06);
}

/* Header action controls. */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 18px;
}

.icon-btn,
.language-select {
    min-height: 44px;
    background: var(--bg-2);
    color: var(--text);
    cursor: pointer;
    transition: .22s ease;
}

.icon-btn {
    width: 44px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    border: none !important;
}

.language-select {
    min-width: 150px;
    padding: 0 12px;
    font-weight: 500;
    outline: none;
    border: none !important;
}

.icon-btn:hover,
.language-select:hover {
    color: var(--pink);
    transform: translateY(-2px);
}

/* Mobile menu button. */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg-2);
    color: var(--text);
    cursor: pointer;
}

/* Main button style. */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 28px;
    border: 0;
    background: var(--pink);
    color: white;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    /* Shadow kept off for a flatter default button. */
    transition: .25s ease;
}

.btn:hover {
    transform: translateY(-4px);
    background: var(--pink-2);
    box-shadow: 0 22px 54px rgba(239, 47, 98, .38);
}

/* Secondary button style. */
.btn-outline {
    background: transparent;
    border: 1px solid var(--pink);
    color: var(--pink);
    box-shadow: none;
}

.btn-outline:hover {
    color: white;
    background: var(--pink);
}

/* Shared section spacing. */
.section {
    position: relative;
    padding: 112px 0;
    border-bottom: 1px solid rgba(127, 127, 127, .16);
}

/* Section title block. */
.section-title-wrap {
    position: relative;
    max-width: 780px;
    margin: 0 auto 62px;
    text-align: center;
}

/* Large faded section label. */
.section-watermark {
    position: absolute;
    left: 50%;
    top: -42px;
    transform: translateX(-50%);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    letter-spacing: -.09em;
    color: rgba(127, 127, 127, .10);
    line-height: 1;
    z-index: -1;
    white-space: nowrap;
    text-transform: uppercase;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--pink);
    font-weight: 900;
    letter-spacing: .03em;
}

.section-kicker::before {
    content: "";
    width: 54px;
    height: 2px;
    background: var(--pink);
}

.section-title,
.about-content h2 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    line-height: .98;
    letter-spacing: -.06em;
    margin-bottom: 18px;
}

.section-text {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

/* Hero section. */
.ovval {
    width: 100%;
    min-height: 100vh;
    padding-top: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero content layout. */
.ovval-grid {
    display: grid;
    grid-template-columns: 1fr .92fr;
    align-items: center;
    gap: 54px;
    min-height: calc(100vh - 74px);
    padding: 60px 0;
}

.ovval h1 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    line-height: .92;
    letter-spacing: -.07em;
    margin-bottom: 20px;
}

.ovval h1 span {
    color: var(--pink);
}

/* Typewriter text line. */
.type-line {
    visibility: hidden;
    min-height: 58px;
    color: var(--pink);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -.04em;
    margin-bottom: 24px;
}

.type-line.is-ready {
    visibility: visible;
}

.type-line::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: .95em;
    margin-left: 6px;
    background: var(--pink);
    vertical-align: -5px;
    animation: blink .8s infinite;
}

/* Typewriter cursor blink. */
@keyframes blink {
    50% {
        opacity: 0;
    }
}

.ovval p,
.about-content p,
.skill-copy p,
.process-card p,
.contact-info p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.05rem;
}

.ovval p {
    max-width: 610px;
    font-size: 1.08rem;
    margin-bottom: 34px;
}

.ovval-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

/* Hero social links. */
.ovval-social {
    display: flex;
    gap: 12px;
}

.ovval-social a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg-2);
    color: var(--pink);
    transition: .22s ease;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.ovval-social a:hover {
    transform: translateY(-4px);
    background: var(--pink);
    color: #fff;
}

/* Hero preview area. */
.ovval-visual {
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
}

.pink-shape {
    position: absolute;
    right: 12%;
    top: 19%;
    width: 360px;
    height: 510px;
    background: var(--pink);
    clip-path: polygon(15% 0, 100% 12%, 82% 100%, 0 86%);
    filter: drop-shadow(0 30px 70px rgba(239, 47, 98, .25));
    opacity: .95;
}

/* Website mockup frame. */
.website-mockup {
    position: relative;
    z-index: 2;
    width: min(100%, 510px);
    border: 8px solid #e8e8e8;
    background: var(--mock-bg);
    box-shadow: var(--shadow);
    transform: translateX(-10px);
}

.mockup-top {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    background: var(--bg-3);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--pink);
}

.dot:nth-child(2) {
    background: #f7b731;
}

.dot:nth-child(3) {
    background: #20bf6b;
}

.mockup-body {
    padding: 24px;
    min-height: 420px;
    background:
        linear-gradient(135deg, rgba(239, 47, 98, .16), transparent 35%),
        linear-gradient(180deg, var(--bg-2), var(--bg-3));
}

.mockup-body img {
    width: 500px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.mockup-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 46px;
}

.mockup-logo,
.mockup-pill,
.mockup-line,
.mockup-card {
    border-radius: 999px;
    background: rgba(148, 163, 184, .28);
}

.mockup-logo {
    width: 90px;
    height: 15px;
}

.mockup-pill {
    width: 58px;
    height: 12px;
}

.mockup-title {
    width: 78%;
    height: 42px;
    border-radius: 16px;
    background: var(--mock-title);
    margin-bottom: 14px;
}

.mockup-subtitle {
    width: 58%;
    height: 30px;
    border-radius: 14px;
    background: var(--pink);
    margin-bottom: 26px;
}

.mockup-line {
    height: 10px;
    margin-bottom: 10px;
}

.mockup-line.one {
    width: 86%;
}

.mockup-line.two {
    width: 74%;
}

.mockup-line.three {
    width: 64%;
}

.mockup-cards {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-card {
    height: 88px;
    border-radius: 16px;
    background: rgba(148, 163, 184, .18);
    border: 1px solid var(--line);
}

/* Small scroll hint. */
.scroll-indicator {
    position: absolute;
    left: 34px;
    bottom: 34px;
    width: 44px;
    height: 74px;
    border: 2px solid var(--pink);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--pink);
    animation: scrollFloat 1.8s infinite ease-in-out;
}

@keyframes scrollFloat {
    50% {
        transform: translateY(10px);
    }
}

/* Shared two-column layouts. */
.about-layout,
.skills-layout,
.contact-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.contact-layout {
    grid-template-columns: .82fr 1.18fr;
    gap: 42px;
}

/* About visual block. */
.about-image {
    position: relative;
    min-height: 560px;
}

.about-pink {
    position: absolute;
    inset: 0 auto auto 0;
    width: 76%;
    height: 84%;
    background: var(--pink);
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.about-frame {
    position: absolute;
    left: 62px;
    top: 82px;
    width: 82%;
    min-height: 430px;
    border: 10px solid #e9e9e9;
    background: var(--mock-bg);
    box-shadow: var(--shadow);
    /* Image frame uses its own spacing. */
    display: grid;
    align-content: center;
    gap: 18px;
}

.about-frame img {
    width: 430px;
    height: 430px;
    max-width: 100%;
    object-fit: cover;
}

.browser-bar {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink);
}

.agency-preview {
    display: grid;
    gap: 14px;
}

.preview-title {
    height: 54px;
    width: 78%;
    border-radius: 16px;
    background: var(--mock-title);
}

.preview-accent {
    height: 28px;
    width: 52%;
    border-radius: 999px;
    background: var(--pink);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.preview-card {
    height: 96px;
    border-radius: 18px;
    background: rgba(148, 163, 184, .18);
    border: 1px solid var(--line);
}

/* About copy spacing. */
.about-content p {
    margin-bottom: 24px;
}

/* Bio details grid. */
.bio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 34px;
    margin-top: 34px;
}

.bio-item {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 12px;
    color: var(--muted);
}

.bio-item strong {
    color: var(--text);
}

/* Services card grid. */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card,
.process-card,
/* Contact panels. */
.contact-info,
.contact-form {
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: 0 14px 40px rgba(15, 23, 42, .07);
}

/* Service card. */
.service-card {
    position: relative;
    padding: 34px;
    min-height: 320px;
    overflow: hidden;
    transition: .28s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--pink);
    transform: translateY(100%);
    transition: .32s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card>* {
    position: relative;
    z-index: 1;
}

/* Service icon box. */
.service-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid var(--pink);
    color: var(--pink);
    background: var(--bg-2);
    font-size: 1.7rem;
    transition: .25s ease;
}

.service-card:hover .service-icon {
    background: white;
    color: var(--pink);
    border-color: white;
}

.service-card h3,
.process-card h3,
.contact-info h3,
.contact-form h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
}

.service-card h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
    transition: .25s ease;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover ul {
    color: white;
}

.service-card ul {
    display: grid;
    gap: 9px;
    list-style: none;
    color: var(--muted-2);
    transition: .25s ease;
}

.service-card li::before {
    content: "— ";
    color: var(--pink);
    transition: .25s ease;
}

.service-card:hover li::before {
    color: white;
}

/* Skills section layout. */
.skills-layout {
    grid-template-columns: .9fr 1.1fr;
}

.skill-copy p {
    margin-bottom: 32px;
}

.signature {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
}

.signature-name {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 2.2rem;
    color: var(--text);
    font-style: italic;
    opacity: .9;
}

.signature-role {
    padding-left: 26px;
    border-left: 1px solid var(--pink);
}

.signature-role strong {
    display: block;
    margin-bottom: 6px;
}

/* Skill progress list. */
.skill-bars {
    display: grid;
    gap: 36px;
}

.skill-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 900;
}

.bar {
    height: 18px;
    background: rgba(148, 163, 184, .20);
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    width: var(--value);
    background: var(--pink);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.1s ease;
}

.bar.visible span {
    transform: scaleX(1);
}

/* Portfolio category filters. */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 54px;
}

.filter-btn {
    border: 0;
    background: transparent;
    color: var(--text);
    font-weight: 800;
    font-size: 1.02rem;
    cursor: pointer;
    transition: .22s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--pink);
}

/* Portfolio cards grid. */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Portfolio card. */
.portfolio-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: var(--bg-2);
    transition: .28s ease;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
    border: 1px solid var(--line);
}

.portfolio-card.hide {
    display: none;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.portfolio-visual {
    height: 100%;
    min-height: 360px;
    padding: 30px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .55)),
        radial-gradient(circle at 40% 30%, rgba(239, 47, 98, .28), transparent 35%);
}

.portfolio-visual.dark {
    background:
        radial-gradient(circle at 25% 20%, rgba(239, 47, 98, .25), transparent 35%),
        linear-gradient(135deg, #171719, #0d0d0f);
}

.portfolio-mock {
    border: 8px solid #111;
    background: white;
    min-height: 230px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
    padding: 18px;
}

.portfolio-mock .mini-nav {
    height: 18px;
    border-radius: 999px;
    background: #e5e7eb;
    margin-bottom: 28px;
    width: 70%;
}

.portfolio-mock .mini-title {
    height: 34px;
    width: 82%;
    background: var(--pink);
    border-radius: 12px;
    margin-bottom: 14px;
}

.portfolio-mock .mini-line {
    height: 10px;
    background: #d1d5db;
    border-radius: 999px;
    margin-bottom: 9px;
}

.portfolio-mock .mini-line:nth-child(4) {
    width: 70%;
}

.portfolio-mock .mini-line:nth-child(5) {
    width: 56%;
}

/* Portfolio hover details. */
.portfolio-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 24px;
    background: rgba(0, 0, 0, .88);
    color: white;
    transform: translateY(28px);
    opacity: 0;
    transition: .28s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: #d1d5db;
}

.portfolio-card.is-clickable {
    cursor: pointer;
}

.portfolio-card.is-clickable:focus-visible {
    outline: 3px solid rgba(239, 47, 98, .65);
    outline-offset: 6px;
}

.portfolio-mock-featured {
    position: relative;
}

.portfolio-mock-featured::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .95), transparent 20%),
        linear-gradient(135deg, var(--pink), var(--pink-2));
    box-shadow: 0 18px 34px rgba(239, 47, 98, .28);
    opacity: .92;
}

.portfolio-chip {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 12px;
    padding: 7px 11px;
    border: 1px solid rgba(239, 47, 98, .45);
    color: #fff;
    background: rgba(239, 47, 98, .18);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.portfolio-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--pink-2);
    font-weight: 900;
    font-size: .92rem;
    transition: .22s ease;
}

.portfolio-card:hover .portfolio-action {
    color: #fff;
    transform: translateX(4px);
}

/* Process steps grid. */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Process step card. */
.process-card {
    padding: 30px;
    min-height: 260px;
    transition: .28s ease;
}

.process-card:hover {
    border-color: var(--pink);
    transform: translateY(-8px);
}

.process-number {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: rgba(239, 47, 98, .30);
    margin-bottom: 18px;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.contact-info,
.contact-form {
    padding: 34px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
}

.contact-info p {
    margin-bottom: 26px;
}

.contact-list {
    display: grid;
    gap: 16px;
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 14px;
    color: var(--muted);
    align-items: flex-start;
}

.contact-list i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--pink);
    color: white;
    flex: 0 0 42px;
}

/* Contact form grid. */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    color: var(--text);
    font-weight: 800;
    font-size: .9rem;
}

/* Form fields. */
input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: transparent !important;
    color: var(--text);
    padding: 15px 16px;
    outline: none;
    transition: .2s ease;
}

select option {
    background: var(--input-bg);
    color: var(--text);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(239, 47, 98, .12);
}

.form-note {
    margin: 16px 0 20px;
    color: var(--muted-2);
    line-height: 1.6;
    font-size: .9rem;
}

/* Form feedback message. */
.form-message {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(34, 197, 94, .3);
    background: rgba(34, 197, 94, .12);
    color: #15803d;
    font-weight: 700;
}

html[data-theme="dark"] .form-message {
    color: #bbf7d0;
}

.form-message.error {
    border-color: rgba(239, 47, 98, .4);
    background: rgba(239, 47, 98, .12);
    color: #be123c;
}

html[data-theme="dark"] .form-message.error {
    color: #fecdd3;
}

/* Footer area. */
.site-footer {
    padding: 38px 0;
    border-top: 1px solid var(--line);
    background: var(--footer-bg);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
    color: var(--muted-2);
}

/* Floating WhatsApp button. */
.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 990;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: #be123c;
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    box-shadow: 0 18px 46px rgba(181, 98, 142, 0.35);
    transition: .25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.04);
}

/* Scroll reveal state. */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet layout changes. */
@media (max-width: 1080px) {
    .nav {
        grid-template-columns: 1fr auto;
    }

    .nav-menu {
        position: fixed;
        inset: 74px 0 auto 0;
        display: grid;
        background: var(--bg-2);
        border-bottom: 1px solid var(--line);
        transform: translateY(-120%);
        transition: .25s ease;
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-menu li {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .nav-menu a {
        height: 56px;
    }

    .nav-controls {
        padding-left: 0;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .ovval-grid,
    .about-layout,
    .skills-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .ovval-visual {
        min-height: 560px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile layout changes. */
@media (max-width: 720px) {
    .section {
        padding: 86px 0;
    }

    .brand {
        font-size: 1.1rem;
        padding-right: 10px;
    }

    .brand .mark {
        width: 35px;
        height: 35px;
    }

    .brand .mark img {
        width: 23px;
    }

    .language-select {
        min-width: 98px;
        max-width: 112px;
    }

    .ovval-grid {
        padding-top: 44px;
    }

    .ovval h1 {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .ovval-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .ovval-social {
        justify-content: center;
    }

    .ovval-visual {
        min-height: 500px;
    }

    .pink-shape {
        width: 270px;
        height: 410px;
        right: 0;
    }

    .website-mockup {
        border-width: 8px;
    }

    .about-image {
        min-height: 470px;
    }

    .about-frame {
        left: 26px;
        top: 70px;
        width: calc(100% - 26px);
    }

    .bio-grid,
    .services-grid,
    .portfolio-grid,
    .process-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .bio-item {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .signature {
        align-items: flex-start;
        flex-direction: column;
    }

    .portfolio-overlay {
        opacity: 1;
        transform: none;
    }
}

/* Real website preview image. */
.real-site-preview {
    width: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #0e0e10;
}

.website-mockup.real-preview {
    overflow: hidden;
}

.website-mockup.real-preview .mockup-body {
    padding: 0;
    min-height: 420px;
    background: #0e0e10;
}

.fa-moon {
    font-weight: 500 !important;
}


/* Final loader contrast fix. */

/* Light loader colors. */
:root,
html[data-theme="light"] {
    --preloader-bg:
        radial-gradient(circle at 50% 45%, rgba(239, 47, 98, .11), transparent 36%),
        radial-gradient(circle at 18% 20%, rgba(255, 79, 122, .08), transparent 30%),
        linear-gradient(135deg, #f8fafc, #ffffff 48%, #f2f4f8);
    --preloader-card:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .90)),
        rgba(255, 255, 255, .94);
    --preloader-card-text: #111827;
    --preloader-card-muted: #5f6673;
    --preloader-card-border: rgba(239, 47, 98, .26);
    --preloader-card-shadow:
        0 0 0 1px rgba(255, 255, 255, .90) inset,
        0 30px 90px rgba(15, 23, 42, .16),
        0 0 90px rgba(239, 47, 98, .16);
    --preloader-grid-line: rgba(239, 47, 98, .08);
    --preloader-dot-primary: rgba(239, 47, 98, .50);
    --preloader-dot-secondary: rgba(17, 24, 39, .10);
    --preloader-glow-color: rgba(239, 47, 98, .14);
    --preloader-progress-track: rgba(17, 24, 39, .12);
    --preloader-scan-line: rgba(239, 47, 98, .60);
    --preloader-orbit-line: rgba(239, 47, 98, .30);
}

html[data-theme="dark"] {
    --preloader-bg:
        radial-gradient(circle at 50% 45%, rgba(239, 47, 98, .20), transparent 34%),
        radial-gradient(circle at 20% 20%, rgba(255, 79, 122, .10), transparent 28%),
        linear-gradient(135deg, #060608, #0b0b0d 45%, #070708);
    --preloader-card:
        linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
        rgba(10, 10, 12, .92);
    --preloader-card-text: #ffffff;
    --preloader-card-muted: #aeb4bf;
    --preloader-card-border: rgba(239, 47, 98, .34);
    --preloader-card-shadow:
        0 0 0 1px rgba(255, 255, 255, .05) inset,
        0 32px 90px rgba(0, 0, 0, .58),
        0 0 90px rgba(239, 47, 98, .20);
    --preloader-grid-line: rgba(239, 47, 98, .14);
    --preloader-dot-primary: rgba(239, 47, 98, .75);
    --preloader-dot-secondary: rgba(255, 255, 255, .20);
    --preloader-glow-color: rgba(239, 47, 98, .18);
    --preloader-progress-track: rgba(255, 255, 255, .10);
    --preloader-scan-line: rgba(239, 47, 98, .90);
    --preloader-orbit-line: rgba(239, 47, 98, .28);
}

.tech-preloader {
    background: var(--preloader-bg) !important;
    color: var(--preloader-card-text) !important;
    transition: background .28s ease, color .28s ease, opacity .65s ease, visibility .65s ease;
}

.tech-grid {
    opacity: 1;
    background-color: transparent !important;
    background-image:
        linear-gradient(var(--preloader-grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--preloader-grid-line) 1px, transparent 1px) !important;
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
}

.tech-grid::after {
    background-image:
        radial-gradient(circle, var(--preloader-dot-primary) 1px, transparent 2px),
        radial-gradient(circle, var(--preloader-dot-secondary) 1px, transparent 2px) !important;
}

.tech-glow {
    background: var(--preloader-glow-color) !important;
}

.tech-loader-box {
    color: var(--preloader-card-text) !important;
    background: var(--preloader-card) !important;
    border: 1px solid var(--preloader-card-border) !important;
    border-radius: 26px;
    box-shadow: var(--preloader-card-shadow) !important;
    transition:
        background .28s ease,
        color .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.tech-loader-box::before {
    background: linear-gradient(90deg, transparent, var(--preloader-scan-line), transparent) !important;
}

.tech-loader-box::after {
    background:
        linear-gradient(90deg, transparent, var(--preloader-card-border), transparent) border-box !important;
    opacity: .75;
}

.tech-loader-box h2 {
    color: var(--preloader-card-text) !important;
}

.tech-loader-box h2 span,
.tech-loader-box h2 b {
    color: var(--pink) !important;
}

.tech-loader-box p {
    color: var(--preloader-card-muted) !important;
}

.tech-orbit {
    border-color: var(--preloader-orbit-line) !important;
}

.orbit-two {
    border-color: color-mix(in srgb, var(--preloader-card-muted) 30%, transparent) !important;
}

.tech-progress {
    background: var(--preloader-progress-track) !important;
}

.tech-progress span {
    background: linear-gradient(90deg, var(--pink), var(--pink-2), #ffffff) !important;
    box-shadow: 0 0 22px rgba(239, 47, 98, .72) !important;
}

html[data-theme="light"] .tech-loader-box {
    backdrop-filter: blur(18px) saturate(1.12);
}

html[data-theme="light"] .tech-core {
    box-shadow:
        0 16px 36px rgba(239, 47, 98, .26),
        0 0 30px rgba(239, 47, 98, .28),
        inset 0 0 0 1px rgba(255, 255, 255, .45) !important;
}

html[data-theme="dark"] .tech-loader-box {
    backdrop-filter: blur(18px);
}


/* Process icons. */

.process-card {
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: "";
    position: absolute;
    right: -48px;
    top: -48px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 47, 98, .18), transparent 68%);
    opacity: 0;
    transform: scale(.8);
    transition: .32s ease;
    pointer-events: none;
}

.process-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Process icon style. */
.process-icon {
    position: relative;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border: 1px solid rgba(239, 47, 98, .42);
    color: var(--pink);
    background:
        radial-gradient(circle at 50% 45%, rgba(239, 47, 98, .14), transparent 62%),
        var(--bg-2);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .03) inset,
        0 18px 46px rgba(15, 23, 42, .10),
        0 0 36px rgba(239, 47, 98, .12);
    font-size: 2rem;
    transition: .28s ease;
    z-index: 1;
}

.process-icon::before,
.process-icon::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
}

.process-icon::before {
    inset: -7px;
    border: 1px solid rgba(239, 47, 98, .12);
    opacity: .7;
}

.process-icon::after {
    inset: 11px;
    background: rgba(239, 47, 98, .08);
    filter: blur(14px);
    z-index: -1;
}

.process-icon i {
    transition: transform .28s ease, filter .28s ease;
}

.process-card:hover .process-icon {
    color: #ffffff;
    border-color: var(--pink);
    background: linear-gradient(135deg, var(--pink), var(--pink-2));
    box-shadow:
        0 20px 52px rgba(239, 47, 98, .28),
        0 0 42px rgba(239, 47, 98, .26);
    transform: translateY(-4px);
}

.process-card:hover .process-icon i {
    transform: scale(1.08) rotate(-4deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .24));
}

html[data-theme="dark"] .process-icon {
    background:
        radial-gradient(circle at 50% 45%, rgba(239, 47, 98, .18), transparent 62%),
        rgba(255, 255, 255, .045);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .035) inset,
        0 20px 54px rgba(0, 0, 0, .22),
        0 0 38px rgba(239, 47, 98, .15);
}

@media (max-width: 720px) {
    .process-icon {
        width: 66px;
        height: 66px;
        font-size: 1.65rem;
        margin-bottom: 24px;
    }
}

/* Main site styles start here. */

/* Contact showcase. */

/* Contact section wrapper. */
.contact-showcase {
    width: min(100%, 1120px);
    margin: 0 auto;
    position: relative;
    padding-top: 12px;
}

/* Contact cards row. */
.contact-top-cards {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: -64px;
}

.wh-card {
    display: flex;
    justify-content: center;
}

/* Small contact card. */
.contact-mini-card {
    min-height: 178px;
    padding: 26px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015)),
        var(--card);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, .16),
        0 0 0 1px rgba(255, 255, 255, .02) inset;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
    overflow: hidden;
}

html[data-theme="light"] .contact-mini-card {
    background: #ffffff;
    box-shadow:
        0 18px 44px rgba(15, 23, 42, .10),
        0 0 0 1px rgba(255, 255, 255, .9) inset;
}

.contact-mini-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 47, 98, .72);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, .24),
        0 0 42px rgba(239, 47, 98, .13);
}

/* Contact card icon. */
.contact-mini-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    display: grid;
    place-items: center;
    color: var(--pink);
    font-size: 1.72rem;
    border: 1px solid rgba(239, 47, 98, .45);
    background:
        radial-gradient(circle at 50% 45%, rgba(239, 47, 98, .16), transparent 62%),
        var(--bg-2);
    box-shadow: 0 0 30px rgba(239, 47, 98, .12);
    transition: .28s ease;
}

.contact-mini-icon-anchor {
    font-size: 1.72rem !important;
    color: #ef2f62 !important;
}


.contact-mini-icon-anchor:hover,
.contact-mini-card .contact-mini-icon .contact-mini-icon-anchor:hover {
    color: #ffffff !important;
}

.contact-mini-card:hover .contact-mini-icon {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--pink-2));
    transform: scale(1.06) rotate(-3deg);
}

.contact-mini-card h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: .88rem;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .035em;
    margin-bottom: 10px;
    color: var(--text);
}

.contact-mini-card p,
.contact-mini-card a {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
    word-break: break-word;
}

/* Centered form shell. */
.contact-form-shell {
    position: relative;
    z-index: 2;
    width: min(100%, 850px);
    margin: 0 auto;
    padding: 116px 54px 54px;
    border: 1px solid rgba(239, 47, 98, .22);
    box-shadow:
        0 28px 78px rgba(0, 0, 0, .22),
        0 0 70px rgba(239, 47, 98, .08);
    overflow: hidden;
}

.contact-form-shell::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 120%;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    opacity: .75;
}

html[data-theme="light"] .contact-form-shell {

    background-color: #ffffff;
    box-shadow:
        0 28px 78px rgba(15, 23, 42, .13),
        0 0 70px rgba(239, 47, 98, .09);
}

/* Clean form layout. */
.contact-form-modern {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.contact-form-modern h3 {
    text-align: center;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -.055em;
    margin-bottom: 12px;
}

.contact-form-intro {
    width: min(100%, 650px);
    margin: 0 auto 30px;
    text-align: center;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-modern-grid {
    width: min(100%, 700px);
    margin: 0 auto;
}

.contact-form-modern label {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: .9rem;
    letter-spacing: -.02em;
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    min-height: 54px;
    background: rgba(0, 0, 0, .08);
    border-color: rgba(127, 127, 127, .22);
}

html[data-theme="dark"] .contact-form-modern input,
html[data-theme="dark"] .contact-form-modern select,
html[data-theme="dark"] .contact-form-modern textarea {
    background: rgb(255, 255, 255);
    border-color: rgba(255, 255, 255, .12);
}

.contact-form-modern textarea {
    min-height: 150px;
}

.contact-form-modern .form-note {
    width: min(100%, 700px);
    margin: 20px auto 24px;
    text-align: center;
}

.contact-submit-btn {
    min-width: 260px;
    margin: 0 auto;
    display: flex;
}

.contact-form-modern .form-message {
    width: min(100%, 700px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (max-width: 1080px) {
    .contact-top-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 22px;
    }

    .contact-form-shell {
        padding-top: 54px;
    }
}

@media (max-width: 720px) {
    .contact-top-cards {
        grid-template-columns: 1fr;
    }

    .contact-mini-card {
        min-height: auto;
    }

    .contact-form-shell {
        padding: 42px 22px 34px;
    }

    .contact-form-modern h3 {
        text-align: left;
    }

    .contact-form-intro,
    .contact-form-modern .form-note {
        text-align: left;
    }

    .contact-submit-btn {
        width: 100%;
        min-width: 0;
    }
    

}




