/* ====================== HELVETICA FONTS ====================== */
@font-face {
    font-family: 'Helvetica';
    src: url('images/helvetica-255-webfont/Helvetica.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica';
    src: url('images/helvetica-255-webfont/Helvetica-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica';
    src: url('images/helvetica-255-webfont/Helvetica-Oblique.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica';
    src: url('images/helvetica-255-webfont/Helvetica-BoldOblique.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica';
    src: url('images/helvetica-255-webfont/helvetica-light-587be5a59211.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ====================== RESET & BASE ====================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --c-indigo: #0064ff;
    --c-violet: #0064ff;
    --c-violet-dark: #0052cc;
    --c-magenta: #96d700;
    --c-pink: #96d700;
    --c-cyan: #22d3ee;
    --gradient-brand: linear-gradient(135deg, #0064ff 0%, #0052cc 48%, #96d700 100%);
    --gradient-brand-soft: linear-gradient(135deg, rgba(0, 100, 255, 0.12) 0%, rgba(0, 82, 204, 0.12) 48%, rgba(150, 215, 0, 0.12) 100%);
    --c-dark: #0e0a1f;
    --c-dark-soft: #160f30;
    --c-dark-card: #1c1440;
    --c-light: #ffffff;
    --c-light-soft: #f6f4fc;
    --c-light-alt: #f1ecfb;
    --c-text: #1b1530;
    --c-text-muted: #675f80;
    --c-text-dim: #9991b5;
    --c-border: #e8e3f6;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --shadow-sm: 0 8px 20px -10px rgba(0, 100, 255, 0.15);
    --shadow-md: 0 24px 48px -16px rgba(0, 100, 255, 0.28);
    --shadow-lg: 0 32px 64px -20px rgba(0, 100, 255, 0.35);
    --font-display: "Helvetica", sans-serif;
    --font-body: "Helvetica", sans-serif;
    --container-w: 1240px;
    --nav-h: 84px;
}

html,
body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-light);
    overflow-x: hidden;
}

body {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

img,
svg,
canvas {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: 1rem;
    color: var(--c-text);
}
.servicess h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-text);
    line-height: 1.12;
}

:focus-visible {
    outline: 2.5px solid var(--c-violet);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ====================== UTILITIES ====================== */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 128px 0;
    position: relative;
}

.section-tight {
    padding: 96px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    .section-tight {
        padding: 64px 0;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-violet);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient-brand);
}

.eyebrow.on-dark {
    color: #c9b8ff;
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    margin-bottom: 18px;
    font-weight: 700;
}

.section-head p {
    color: var(--c-text-muted);
    font-size: 1.05rem;
    font-weight: 400;
}

/* ====================== REVEAL ANIMATION ====================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
        transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.reveal-stagger.in-view>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in-view>*:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-stagger.in-view>*:nth-child(2) {
    transition-delay: 0.13s;
}

.reveal-stagger.in-view>*:nth-child(3) {
    transition-delay: 0.21s;
}

.reveal-stagger.in-view>*:nth-child(4) {
    transition-delay: 0.29s;
}

.reveal-stagger.in-view>*:nth-child(5) {
    transition-delay: 0.37s;
}

.reveal-stagger.in-view>*:nth-child(6) {
    transition-delay: 0.45s;
}

.reveal-stagger.in-view>*:nth-child(n+7) {
    transition-delay: 0.5s;
}

/* ====================== BUTTONS ====================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 30px;
    border-radius: var(--radius-pill);
    transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1),
        box-shadow 0.35s, background 0.35s, color 0.35s;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.35s;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(124, 58, 237, 0.55);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px -10px rgba(124, 58, 237, 0.6);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--c-text);
    border: 1.5px solid var(--c-border);
}

.btn-ghost:hover {
    border-color: var(--c-violet);
    color: var(--c-violet);
    transform: translateY(-3px);
}

.btn-light {
    background: #fff;
    color: var(--c-violet-dark);
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.25);
}

.btn-light:hover {
    transform: translateY(-3px);
}

.btn-sm {
    padding: 11px 22px;
    font-size: 0.86rem;
}

.btn-block {
    width: 100%;
}

/* ====================== NAVBAR ====================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: padding 0.35s, background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px -12px rgba(43, 21, 92, 0.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--c-text);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}
.logo-img-footer {
    max-width: 200px; /* Isse logo ka size increase ho jayega */
    height: auto;
    display: block;
    margin-bottom: 15px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--c-text);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2.5px;
    background: var(--gradient-brand);
    transition: width 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--c-violet);
}

.nav-links a.active {
    color: var(--c-violet);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
}

.menu-toggle:hover {
    background: rgba(124, 58, 237, 0.15);
    transform: scale(1.05);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
    transform-origin: center;
}

.menu-toggle.open {
    background: rgba(124, 58, 237, 0.12);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--c-violet);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--c-violet);
}

/* ===== NAV ITEM DROPDOWN ===== */
.nav-item {
    position: relative;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1.5px solid var(--c-border);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(0, 100, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
    z-index: 999;
    margin-top: 8px;
}

.nav-item:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--c-text);
    font-size: 0.9rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.services-dropdown a:hover {
    background: var(--c-light-soft);
    color: var(--c-violet);
    border-left-color: var(--c-violet);
    padding-left: 24px;
}

/* ===== SIDEBAR (Mobile) ===== */
@media (max-width: 920px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(80vw, 340px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 44px 40px;
        gap: 12px;
        box-shadow: -30px 0 60px -20px rgba(43, 21, 92, 0.25);
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.44, 1), opacity 0.5s ease;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        border-left: 2px solid rgba(124, 58, 237, 0.1);
    }

    .nav-links.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-links a::before {
        content: "→";
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        color: var(--c-violet);
        font-weight: 700;
    }

    .nav-links a:hover::before,
    .nav-links a.active::before {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:hover {
        color: var(--c-violet);
        padding-left: 10px;
    }

    .nav-links a.active {
        color: var(--c-violet);
        border-bottom-color: var(--c-violet);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links::before {
        content: "Menu";
        position: absolute;
        top: 24px;
        left: 44px;
        font-family: var(--font-display);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--c-text-dim);
        opacity: 0.6;
    }

    .nav-links::after {
        content: "✕";
        position: absolute;
        top: 20px;
        right: 24px;
        font-size: 1.4rem;
        color: var(--c-text);
        cursor: pointer;
        opacity: 0.5;
        transition: opacity 0.3s ease, transform 0.3s ease;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.04);
    }

    .nav-links::after:hover {
        opacity: 1;
        transform: rotate(90deg);
    }

    .nav-cta {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .logo-img {
        height: 55px;
        max-width: 130px;
    }

    .services-dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        transition: all 0.3s ease;
    }

    .nav-item.open .services-dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding: 8px 0;
        background: var(--c-light-soft);
        border: 1px solid var(--c-border);
        margin: 8px 0;
    }

    .nav-item.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .services-dropdown a {
        padding: 8px 16px;
        margin-left: 0;
    }

    .services-dropdown a:hover {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
        max-width: 110px;
    }

    .nav-links {
        padding: 50px 28px 30px;
        width: 88vw;
    }

    .nav-links a {
        font-size: 1.05rem;
        padding: 10px 0;
    }

    .nav-links::before {
        left: 28px;
        font-size: 0.65rem;
    }
}

/* ====================== HERO ====================== */
.hero {
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 90px;
    background: linear-gradient(180deg, #fbfafe 0%, #f3effc 100%);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: blobfloat 14s ease-in-out infinite;
}

.hero-blob.b1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #c7b8fb, transparent 70%);
    top: -120px;
    left: -100px;
}

.hero-blob.b2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fbc7ee, transparent 70%);
    bottom: -80px;
    right: 10%;
    animation-delay: -5s;
}

.hero-blob.b3 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, #b9d9fb, transparent 70%);
    top: 30%;
    right: -60px;
    animation-delay: -9s;
}

@keyframes blobfloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.08);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    width: 100%;
}

.hero-copy h1 {
    font-size: clamp(2.3rem, 4.6vw, 3.6rem);
    margin-bottom: 22px;
}

.hero-copy p {
    font-size: 1.08rem;
    color: var(--c-text-muted);
    max-width: 520px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}

.hero-stats {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
}

.hero-stats .stat b {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
}

.hero-stats .stat span {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
    min-height: 300px;
}

#heroGem {
    width: 100%;
    height: 100%;
}

.hero-visual-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

/* .scroll-indicator {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    color: var(--c-text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-indicator .chev {
    width: 13px;
    height: 13px;
    border-right: 2px solid var(--c-text-dim);
    border-bottom: 2px solid var(--c-text-dim);
    transform: rotate(45deg);
    animation: chevbounce 1.8s ease-in-out infinite;
} */

@keyframes chevbounce {
    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(4px, 4px);
    }
}

/* Lines 892-938 ✅ CORRECT */
@media (max-width: 980px) {
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hero-copy {
        order: 2;  /* Text below ✓ */
        width: 100%;
    }

    .hero-visual {
        order: 1;  /* Globe upar ✓ */
        height: 220px;
        width: 100%;
        margin-bottom: 0;
    }
}


/* ====================== SERVICES ====================== */
.services {
    background: #fff;
    padding: 80px 0;
}

.services-inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: flex-start;
}

.services-text p {
    color: var(--c-text-muted);
    margin-bottom: 24px;
}

.services-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    padding: 8px;
    background: var(--c-light-soft);
    border-radius: 12px;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid transparent;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
    white-space: nowrap;
    min-height: 44px;
    touch-action: manipulation;
}

.service-tab:hover {
    background: rgba(124, 58, 237, 0.08);
    color: var(--c-violet);
    transform: translateY(-2px);
}

.service-tab.active {
    background: #fff;
    border-color: var(--c-violet);
    color: var(--c-violet);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.tab-icon {
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
    flex-shrink: 0;
}

.service-tab:hover .tab-icon {
    transform: scale(1.2) rotate(8deg);
}

.service-tab.active .tab-icon {
    transform: scale(1.25) rotate(-8deg);
    filter: drop-shadow(0 2px 4px rgba(124, 58, 237, 0.3));
}

.tab-name {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services-visual {
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    transform: rotateX(8deg) rotateZ(-2deg);
    transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.services-visual:hover .laptop-mockup {
    transform: rotateX(5deg) rotateZ(-1deg);
}

.laptop-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #000;
    border: 12px solid #1a1a1a;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.screen-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
    pointer-events: none;
}

.screen-item {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.screen-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.screen-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.screen-icon {
    font-size: 2.8rem;
    animation: screenIconFloat 3s ease-in-out infinite;
    flex-shrink: 0;
}

.screen-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.screen-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    flex-grow: 1;
}

.screen-features {
    display: flex;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(79, 70, 229, 0.2);
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #d946ef);
    animation: featurePulse 2s ease-in-out infinite;
}

.feature-dot:nth-child(1) {
    animation-delay: 0s;
}

.feature-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes screenIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes featurePulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.laptop-bezel {
    position: relative;
    width: 100%;
    height: 16px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 12px solid #1a1a1a;
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.laptop-bezel::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 6px;
    background: #000;
    border-radius: 3px;
}

.laptop-stand {
    position: relative;
    width: 80%;
    height: 20px;
    margin: -2px auto 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ===== SERVICES RESPONSIVE ===== */
@media (max-width: 1200px) {
    .services-inner {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 50px;
    }

    .laptop-mockup {
        max-width: 450px;
    }
}

@media (max-width: 1080px) {
    .services {
        padding: 60px 0;
    }

    .services-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .laptop-mockup {
        transform: rotateX(5deg) rotateZ(-1deg);
        max-width: 400px;
    }

    .services-visual {
        padding: 30px 20px;
    }

    .laptop-screen {
        border-width: 10px;
    }

    .screen-content {
        padding: 32px;
    }

    .screen-header h3 {
        font-size: 1.6rem;
    }

    .screen-text {
        font-size: 0.92rem;
    }

    .screen-icon {
        font-size: 2.4rem;
    }
}

@media (max-width: 900px) {
    .services {
        padding: 50px 0;
    }

    .services-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-tabs {
        gap: 6px;
        padding: 6px;
        margin-bottom: 20px;
    }

    .service-tab {
        padding: 8px 10px;
        font-size: 0.78rem;
        gap: 6px;
    }

    .tab-icon {
        font-size: 1rem;
    }

    .tab-name {
        display: none;
    }

    .service-tab.active .tab-name {
        display: inline;
    }

    .laptop-mockup {
        transform: rotateX(3deg) rotateZ(-1deg);
        max-width: 100%;
    }

    .laptop-screen {
        border-width: 8px;
        aspect-ratio: 16 / 10;
    }

    .screen-content {
        padding: 24px;
    }

    .screen-header {
        gap: 12px;
        margin-bottom: 14px;
    }

    .screen-icon {
        font-size: 2rem;
    }

    .screen-header h3 {
        font-size: 1.4rem;
    }

    .screen-text {
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .services-visual {
        padding: 20px 16px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }

    .services-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-tabs {
        gap: 5px;
        padding: 5px;
        margin-bottom: 16px;
        justify-content: center;
    }

    .service-tab {
        padding: 7px 9px;
        font-size: 0.72rem;
        gap: 4px;
        min-height: 40px;
    }

    .tab-icon {
        font-size: 0.95rem;
    }

    .tab-name {
        display: none;
    }

    .service-tab.active .tab-name {
        display: inline;
        font-size: 0.7rem;
    }

    .laptop-mockup {
        transform: rotateX(2deg) rotateZ(0deg);
        max-width: 100%;
    }

    .laptop-screen {
        border-width: 8px;
        aspect-ratio: 16 / 10;
        border-radius: 12px 12px 0 0;
    }

    .screen-content {
        padding: 20px;
    }

    .screen-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .screen-icon {
        font-size: 1.8rem;
    }

    .screen-header h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .screen-text {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .feature-dot {
        width: 6px;
        height: 6px;
    }

    .services-visual {
        padding: 16px 12px;
    }

    .laptop-bezel {
        height: 12px;
        border-width: 8px;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 32px 0;
    }

    .services-inner {
        gap: 20px;
    }

    .services-tabs {
        gap: 4px;
        padding: 4px;
        margin-bottom: 14px;
    }

    .service-tab {
        padding: 6px 8px;
        font-size: 0.68rem;
        gap: 3px;
        min-height: 38px;
    }

    .tab-icon {
        font-size: 0.9rem;
    }

    .laptop-mockup {
        transform: rotateX(0deg) rotateZ(0deg);
    }

    .laptop-screen {
        border-width: 6px;
        aspect-ratio: 16 / 10;
    }

    .screen-content {
        padding: 16px;
    }

    .screen-header {
        gap: 8px;
        margin-bottom: 10px;
    }

    .screen-icon {
        font-size: 1.6rem;
    }

    .screen-header h3 {
        font-size: 1.1rem;
    }

    .screen-text {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .services-visual {
        padding: 12px 10px;
    }

    .laptop-bezel {
        height: 10px;
        border-width: 6px;
    }

    .laptop-stand {
        height: 16px;
    }

    .btn {
        width: 100%;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 24px 0;
    }

    .services-inner {
        gap: 16px;
    }

    .services-tabs {
        gap: 3px;
        padding: 3px;
        margin-bottom: 12px;
    }

    .service-tab {
        padding: 5px 7px;
        font-size: 0.64rem;
        gap: 2px;
        min-height: 36px;
    }

    .tab-icon {
        font-size: 0.8rem;
    }

    .tab-name {
        display: none;
    }

    .service-tab.active .tab-name {
        display: inline;
        font-size: 0.62rem;
    }

    .laptop-mockup {
        max-width: 100%;
    }

    .laptop-screen {
        border-width: 5px;
        aspect-ratio: 16 / 10;
        border-radius: 10px 10px 0 0;
    }

    .screen-content {
        padding: 14px;
    }

    .screen-header {
        gap: 6px;
        margin-bottom: 8px;
    }

    .screen-icon {
        font-size: 1.4rem;
    }

    .screen-header h3 {
        font-size: 0.95rem;
        line-height: 1.1;
    }

    .screen-text {
        font-size: 0.74rem;
        line-height: 1.3;
    }

    .screen-features {
        gap: 8px;
        padding-top: 12px;
    }

    .feature-dot {
        width: 5px;
        height: 5px;
    }

    .services-visual {
        padding: 10px 8px;
    }

    .laptop-bezel {
        height: 8px;
        border-width: 5px;
    }

    .laptop-bezel::after {
        width: 80px;
        height: 4px;
    }

    .laptop-stand {
        height: 12px;
        width: 75%;
    }

    .btn {
        width: 100%;
        margin-top: 12px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 380px) {
    .services {
        padding: 20px 0;
    }

    .services-tabs {
        gap: 2px;
        padding: 2px;
        margin-bottom: 10px;
    }

    .service-tab {
        padding: 4px 6px;
        font-size: 0.6rem;
        gap: 2px;
        min-height: 34px;
    }

    .tab-icon {
        font-size: 0.75rem;
    }

    .screen-content {
        padding: 12px;
    }

    .screen-header h3 {
        font-size: 0.85rem;
    }

    .screen-text {
        font-size: 0.7rem;
    }

    .services-visual {
        padding: 8px 6px;
    }

    .laptop-screen {
        border-width: 4px;
    }

    .laptop-bezel {
        border-width: 4px;
    }

    .btn {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

/* ===== ANIMATION PERFORMANCE ===== */
.laptop-mockup {
    will-change: transform;
}

.screen-item {
    will-change: opacity, transform;
}

.feature-dot {
    will-change: opacity, transform;
}

/* ===== TOUCH DEVICE OPTIMIZATION ===== */
@media (hover: none) and (pointer: coarse) {
    .service-tab:active {
        transform: scale(0.98);
        background: rgba(124, 58, 237, 0.15);
    }

    .service-tab.active:active {
        transform: scale(0.98);
    }

    .tab-icon {
        transform: none;
    }

    .service-tab:hover .tab-icon {
        transform: none;
    }

    .laptop-mockup {
        transform: none;
    }

    .services-visual:hover .laptop-mockup {
        transform: none;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .laptop-mockup {
        transition: none;
    }

    .screen-item {
        transition: none;
    }

    .service-tab {
        transition: none;
    }

    .tab-icon {
        animation: none;
    }

    .screen-icon {
        animation: none;
    }

    .feature-dot {
        animation: none;
    }

    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* ====================== SERVICES GRID (services.html) ====================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border: 1.5px solid var(--c-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--c-violet);
    box-shadow: 0 20px 40px rgba(0, 100, 255, 0.15);
}

.service-card-icon {
    font-size: 3rem;
    display: block;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 0;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-violet);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.service-card-link:hover {
    gap: 12px;
}

.service-card-link::after {
    content: "→";
    transition: transform 0.2s;
}

.service-card:hover .service-card-link {
    color: var(--c-magenta);
}

/* ===== SERVICE HERO ===== */
.service-hero {
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 80px;
    background: linear-gradient(180deg, #fbfafe 0%, #f3effc 100%);
}

.service-hero h1 {
    font-size: clamp(2.5rem, 4.8vw, 3.8rem);
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    max-width: 620px;
}

/* ====================== SERVICE PAGE RESPONSIVE FIXES ====================== */

/* ===== SERVICE HERO RESPONSIVE ===== */
@media (max-width: 1200px) {
    .service-hero {
        padding-top: calc(var(--nav-h) + 48px);
        padding-bottom: 60px;
    }

    .service-hero h1 {
        font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding-top: calc(var(--nav-h) + 32px);
        padding-bottom: 48px;
    }

    .service-hero h1 {
        font-size: clamp(1.8rem, 3.8vw, 2.8rem);
        margin-bottom: 14px;
    }

    .service-hero p {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding-top: calc(var(--nav-h) + 24px);
        padding-bottom: 32px;
    }

    .service-hero h1 {
        font-size: clamp(1.4rem, 3.2vw, 2.2rem);
        margin-bottom: 12px;
    }

    .service-hero p {
        font-size: 0.95rem;
    }
}

/* ===== WHAT WE PROVIDE RESPONSIVE ===== */
@media (max-width: 1080px) {
    section[style*="display: grid"],
    div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 900px) {
    section[style*="display: grid"],
    div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

@media (max-width: 768px) {
    section[style*="display: grid"],
    div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .section-head h2 {
        font-size: clamp(1.5rem, 2.8vw, 2rem);
        margin-bottom: 12px;
    }

    .section-head p {
        font-size: 0.96rem;
    }
}

@media (max-width: 640px) {
    section[style*="display: grid"],
    div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .section-head h2 {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    section[style*="display: grid"],
    div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .section-head {
        margin-bottom: 24px;
    }

    .section-head h2 {
        font-size: clamp(1.2rem, 2.3vw, 1.6rem);
        margin-bottom: 8px;
    }

    .section-head p {
        font-size: 0.90rem;
    }
}

/* ===== FEATURE BOXES RESPONSIVE ===== */
@media (max-width: 900px) {
    div[style*="border-left: 4px solid"] {
        border-left: 3px solid var(--c-violet);
        padding: 22px !important;
    }
}

@media (max-width: 768px) {
    div[style*="border-left: 4px solid"] {
        border-left: 3px solid var(--c-violet);
        padding: 20px !important;
        margin-bottom: 12px !important;
    }

    div[style*="border-left: 4px solid"] h4 {
        font-size: 0.98rem !important;
        margin-bottom: 8px !important;
    }

    div[style*="border-left: 4px solid"] p {
        font-size: 0.92rem !important;
    }
}

@media (max-width: 640px) {
    div[style*="border-left: 4px solid"] {
        border-left: 3px solid var(--c-violet);
        padding: 18px !important;
        margin-bottom: 10px !important;
    }

    div[style*="border-left: 4px solid"] h4 {
        font-size: 0.93rem !important;
        margin-bottom: 6px !important;
    }

    div[style*="border-left: 4px solid"] p {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    div[style*="border-left: 4px solid"] {
        border-left: 3px solid var(--c-violet);
        padding: 16px !important;
        margin-bottom: 10px !important;
        font-size: 0.88rem !important;
    }

    div[style*="border-left: 4px solid"] h4 {
        font-size: 0.90rem !important;
        margin-bottom: 5px !important;
    }

    div[style*="border-left: 4px solid"] p {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
    }
}

/* ===== SERVICE CARDS GRID RESPONSIVE ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 28px 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }

    .service-card {
        padding: 24px 18px;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card p {
        font-size: 0.88rem;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.86rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 18px 14px;
    }

    .service-card-icon {
        font-size: 2.2rem;
        height: 50px;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .service-card p {
        font-size: 0.82rem;
    }
}

/* ===== SECTION PADDING RESPONSIVE ===== */
@media (max-width: 1200px) {
    .section {
        padding: 100px 0;
    }

    .section-tight {
        padding: 80px 0;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 80px 0;
    }

    .section-tight {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-tight {
        padding: 48px 0;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 48px 0;
    }

    .section-tight {
        padding: 36px 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 36px 0;
    }

    .section-tight {
        padding: 28px 0;
    }
}

/* ===== TIMELINE RESPONSIVE ===== */
@media (max-width: 900px) {
    .timeline {
        max-width: 100%;
        padding-left: 30px;
    }

    .timeline-item {
        padding: 18px 0 18px 30px;
    }

    .timeline-item::before {
        left: -24px;
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 640px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding: 16px 0 16px 20px;
    }

    .timeline-item::before {
        left: -18px;
        width: 12px;
        height: 12px;
    }

    .timeline-item .year {
        font-size: 1rem;
    }

    .timeline-item h3 {
        font-size: 0.95rem;
    }

    .timeline-item p {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .timeline {
        padding-left: 16px;
    }

    .timeline-item {
        padding: 14px 0 14px 16px;
    }

    .timeline-item::before {
        left: -14px;
        width: 10px;
        height: 10px;
    }

    .timeline-item .year {
        font-size: 0.9rem;
    }

    .timeline-item h3 {
        font-size: 0.88rem;
    }

    .timeline-item p {
        font-size: 0.82rem;
    }
}

/* ===== ADVANTAGES GRID RESPONSIVE ===== */
@media (max-width: 1200px) {
    .advantages-grid {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 32px;
    }

    .adv-card {
        padding: 24px 20px;
    }

    .adv-card h3 {
        font-size: 0.95rem;
    }

    .adv-card p {
        font-size: 0.82rem;
    }
}

@media (max-width: 640px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
    }

    .adv-card {
        padding: 22px 18px;
    }

    .adv-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .adv-icon i {
        font-size: 24px;
    }

    .adv-card h3 {
        font-size: 0.92rem;
    }

    .adv-card p {
        font-size: 0.80rem;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }

    .adv-card {
        padding: 20px 16px;
    }

    .adv-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .adv-icon i {
        font-size: 22px;
    }

    .adv-card h3 {
        font-size: 0.88rem;
    }

    .adv-card p {
        font-size: 0.78rem;
    }
}

/* ===== CTA BANNER RESPONSIVE ===== */
@media (max-width: 1200px) {
    .cta-banner {
        padding: 70px 0;
    }
}

@media (max-width: 900px) {
    .cta-banner {
        padding: 60px 0;
    }

    .cta-inner {
        gap: 32px;
    }

    .cta-inner h2 {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
    }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 50px 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-inner h2 {
        font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    }

    .cta-inner p {
        font-size: 0.95rem;
    }

    .cta-inner .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 40px 0;
    }

    .cta-inner {
        gap: 18px;
    }

    .cta-inner h2 {
        font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    }

    .cta-inner p {
        font-size: 0.9rem;
    }

    .cta-inner .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* ===== INQUIRY SECTION RESPONSIVE ===== */
@media (max-width: 1200px) {
    .inquiry-inner {
        gap: 40px;
    }
}

@media (max-width: 980px) {
    .inquiry-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .inquiry-icons {
        max-width: 340px;
        margin: 0 auto;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .inquiry {
        padding: 60px 0;
    }

    .inquiry-copy p {
        font-size: 0.95rem;
        margin: 14px 0 24px;
        max-width: 100%;
    }

    .inquiry-form {
        padding: 28px 24px;
    }
}

@media (max-width: 640px) {
    .inquiry {
        padding: 48px 0;
    }

    .inquiry-form {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .form-field input,
    .form-field textarea {
        padding: 10px 12px;
        font-size: 0.88rem;
    }

    .form-field textarea {
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .inquiry {
        padding: 32px 0;
    }

    .inquiry-copy {
        text-align: center;
    }

    .inquiry-copy p {
        font-size: 0.9rem;
        margin-left: auto;
        margin-right: auto;
    }

    .inquiry-icons {
        height: 150px;
        max-width: 280px;
    }

    .inq-icon {
        width: 70px;
        height: 70px;
    }

    .inq-icon svg {
        width: 28px;
        height: 28px;
    }

    .inquiry-form {
        padding: 20px 16px;
    }

    .form-field label {
        font-size: 0.75rem;
    }

    .form-field input,
    .form-field textarea {
        padding: 9px 10px;
        font-size: 0.86rem;
    }

    .form-field textarea {
        min-height: 70px;
    }
}

/* ===== CONTAINER MAX-WIDTH RESPONSIVE ====================== */
@media (max-width: 1400px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 28px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* ====================== PASSIONATE SECTION ====================== */
.passionate {
    background: var(--c-light-soft);
    overflow: hidden;
    padding: 100px 0;
}

.passionate-inner {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.passionate-copy h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.passionate-copy p {
    color: var(--c-text-muted);
    margin: 18px 0 28px;
    max-width: 480px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.passionate-visual {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blob-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, #0064ff, #0052cc);
    opacity: 0.85;
    animation: blobShift 7s ease-in-out infinite;
    box-shadow: 0 25px 65px rgba(124, 58, 237, 0.35);
}

.blob.blob1 {
    width: 220px;
    height: 220px;
    animation: blobShift 7s ease-in-out infinite;
}

.blob.blob2 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #0052cc, #96d700);
    animation: blobShift2 8s ease-in-out infinite;
    opacity: 0.65;
}

.blob.blob3 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #96d700, #0064ff);
    animation: blobShift3 6.5s ease-in-out infinite;
    opacity: 0.75;
}

@keyframes blobShift {
    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) scale(1);
    }

    25% {
        border-radius: 70% 30% 66% 33% / 33% 66% 33% 67%;
        transform: translate(25px, -35px) scale(1.1);
    }

    50% {
        border-radius: 33% 67% 66% 33% / 66% 33% 67% 33%;
        transform: translate(-30px, 30px) scale(0.95);
    }

    75% {
        border-radius: 66% 33% 33% 67% / 67% 33% 66% 33%;
        transform: translate(35px, 20px) scale(1.05);
    }
}

@keyframes blobShift2 {
    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(-20px, 20px) scale(1);
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(30px, -25px) scale(0.95);
    }

    50% {
        border-radius: 70% 30% 46% 66% / 41% 70% 33% 59%;
        transform: translate(-25px, -30px) scale(1.1);
    }

    75% {
        border-radius: 28% 64% 70% 33% / 66% 33% 66% 33%;
        transform: translate(20px, 25px) scale(1);
    }
}

@keyframes blobShift3 {
    0%,
    100% {
        border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
        transform: translate(25px, -15px) scale(1);
    }

    33% {
        border-radius: 70% 40% 50% 60% / 40% 60% 40% 60%;
        transform: translate(-30px, 25px) scale(1.08);
    }

    66% {
        border-radius: 40% 60% 60% 40% / 60% 60% 40% 40%;
        transform: translate(15px, 30px) scale(0.92);
    }
}

.passionate-visual::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.2), transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@media (max-width: 980px) {
    .passionate-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .passionate-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .passionate-visual {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 600px) {
    .passionate-visual {
        height: 250px;
    }

    .blob.blob1 {
        width: 150px;
        height: 150px;
    }

    .blob.blob2 {
        width: 110px;
        height: 110px;
    }

    .blob.blob3 {
        width: 80px;
        height: 80px;
    }
}

/* ====================== CTA BANNER ====================== */
.cta-banner {
    position: relative;
    background: var(--gradient-brand);
    overflow: hidden;
    padding: 90px 0;
}

.cta-banner canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    max-width: 560px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.82);
    margin-top: 12px;
    max-width: 480px;
}

.cta-banner .btn-light {
    flex-shrink: 0;
}

@media (max-width: 780px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ====================== ADVANTAGES ====================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.adv-card {
    background: #fff;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.35s,
        border-color 0.35s;
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.adv-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.adv-icon i {
    font-size: 26px;
    color: #fff;
}

.adv-card h3 {
    font-size: 1.05rem;
    margin-bottom: 9px;
}

.adv-card p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
}

@media (max-width: 980px) {
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================== CONTACT VR ====================== */
.contact-vr {
    background: var(--c-dark);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.contact-vr::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
    filter: blur(20px);
}

.contact-vr-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-vr-copy p {
    color: #bcb3dc;
    margin: 18px 0 28px;
    max-width: 440px;
}

.contact-vr-visual {
    position: relative;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-figure {
    width: 230px;
    height: 380px;
    position: relative;
}

.vr-head {
    width: 128px;
    height: 150px;
    border-radius: 60px 60px 54px 54px;
    background: linear-gradient(160deg, #e8c9a8, #d2a87e);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.vr-hair {
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    width: 140px;
    height: 74px;
    border-radius: 70px 70px 0 0;
    background: linear-gradient(160deg, #2a2235, #16121f);
}

.vr-visor {
    position: absolute;
    left: 50%;
    top: 48px;
    transform: translateX(-50%);
    width: 148px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1b1430, #352a5c);
    box-shadow: 0 0 0 4px #0e0a1f, 0 0 30px rgba(124, 58, 237, 0.6);
    overflow: hidden;
}

.vr-visor::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(124, 255, 247, 0.55), transparent);
    animation: visorscan 3.2s ease-in-out infinite;
}

.vr-strap {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    width: 172px;
    height: 18px;
    border-radius: 9px;
    background: #241b3e;
    z-index: -1;
}

.vr-body {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 188px;
    height: 230px;
    border-radius: 60px 60px 26px 26px;
    background: linear-gradient(165deg, #3a3050, #211a38);
}

.vr-collar {
    position: absolute;
    left: 50%;
    top: 140px;
    transform: translateX(-50%);
    width: 150px;
    height: 34px;
    border-radius: 50%;
    background: #e8c9a8;
}

@keyframes visorscan {
    0%,
    100% {
        left: -60%;
    }

    50% {
        left: 120%;
    }
}

.vr-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 12px 14px;
    backdrop-filter: blur(6px);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease-out;
}

.vr-card svg {
    width: 18px;
    height: 18px;
    color: #22d3ee;
    flex-shrink: 0;
}

.vr-card.c1 {
    top: 8%;
    left: 0;
}

.vr-card.c2 {
    top: 42%;
    right: -4%;
}

.vr-card.c3 {
    bottom: 10%;
    left: 6%;
}

@media (max-width: 980px) {
    .contact-vr-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-vr-copy p {
        margin-inline: auto;
    }

    .contact-vr-visual {
        height: 340px;
    }

    .vr-figure {
        transform: scale(0.82);
    }
}

/* ====================== SHOWCASE ====================== */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.browser-mock {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    animation: browserSlideIn 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}

@keyframes browserSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.browser-bar {
    background: linear-gradient(180deg, #f5f1fc 0%, #ede7fb 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--c-border);
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s;
}

.browser-dot.red {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

.browser-dot.yellow {
    background: #eabb25;
    box-shadow: 0 0 8px rgba(234, 187, 37, 0.3);
}

.browser-dot.green {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.browser-url {
    font-size: 0.75rem;
    color: var(--c-text-dim);
    font-family: monospace;
    font-weight: 500;
}

.browser-body {
    padding: 28px 24px;
    background: linear-gradient(180deg, #fafbfe 0%, #fff 100%);
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.dash-tile {
    background: #fff;
    border: 1.5px solid var(--c-border);
    border-radius: 12px;
    padding: 18px 14px;
    transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    gap: 14px;
}

.dash-tile:hover {
    border-color: var(--c-violet);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
    transform: translateY(-4px);
}

.stat-content {
    flex: 1;
}

.num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--c-violet), var(--c-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.lbl {
    font-size: 0.75rem;
    color: var(--c-text-dim);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.chart-container {
    background: #fff;
    border: 1.5px solid var(--c-border);
    border-radius: 14px;
    padding: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-header h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-text);
}

.chart-legend {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text-dim);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.chart-svg {
    width: 100%;
    height: 200px;
    display: block;
    margin: 0 -8px;
}

.chart-area {
    animation: chartAreaFill 1.2s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.chart-area:nth-of-type(1) {
    animation-delay: 0s;
}

.chart-area:nth-of-type(2) {
    animation-delay: 0.2s;
}

@keyframes chartAreaFill {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.chart-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: chartLineDraw 1.4s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
}

.chart-line:nth-of-type(2) {
    animation-delay: 0.2s;
}

.chart-line:nth-of-type(4) {
    animation-delay: 0.4s;
}

@keyframes chartLineDraw {
    from {
        stroke-dashoffset: 500;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.chart-dots circle {
    opacity: 0;
    animation: dotAppear 0.6s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
}

.chart-dots circle:nth-child(1) {
    animation-delay: 0.6s;
}

.chart-dots circle:nth-child(2) {
    animation-delay: 0.7s;
}

.chart-dots circle:nth-child(3) {
    animation-delay: 0.8s;
}

.chart-dots circle:nth-child(4) {
    animation-delay: 0.9s;
}

.chart-dots circle:nth-child(5) {
    animation-delay: 1s;
}

.chart-dots circle:nth-child(6) {
    animation-delay: 1.1s;
}

.chart-dots circle:nth-child(7) {
    animation-delay: 1.2s;
}

.chart-dots circle:nth-child(8) {
    animation-delay: 1.3s;
}

.chart-dots circle:nth-child(9) {
    animation-delay: 1.4s;
}

@keyframes dotAppear {
    from {
        opacity: 0;
        r: 0;
    }

    to {
        opacity: 1;
        r: 4;
    }
}

.chart-footer {
    margin-top: 14px;
    text-align: right;
}

.time-label {
    font-size: 0.75rem;
    color: var(--c-text-dim);
    font-weight: 500;
}

.phone-mock {
    perspective: 1200px;
    position: relative;
    width: 280px;
    margin: 0 auto;
}

.ios-phone {
    width: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 40px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: phoneSlideIn 0.8s cubic-bezier(0.16, 0.84, 0.44, 1) 0.6s both;
}

@keyframes phoneSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.phone-camera {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #000;
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
}

.phone-screen {
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
    border-radius: 36px;
    padding: 0;
    height: 480px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.phone-notch-ios {
    width: 150px;
    height: 26px;
    background: #000;
    margin: 0 auto;
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 5;
}

.phone-content {
    height: calc(100% - 26px);
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #000;
}

.status-time {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.status-icons {
    display: flex;
    gap: 4px;
    font-size: 0.6rem;
}

.ring-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
}

.progress-ring {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.2));
}

.ring-bg {
    stroke: #f0f0f0;
}

.ring-fg {
    stroke: url(#ringGrad);
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.ring-label {
    position: absolute;
    text-align: center;
}

.ring-label b {
    font-family: var(--font-display);
    font-size: 1.1rem;
    display: block;
    color: #000;
}

.ring-label span {
    font-size: 0.6rem;
    color: var(--c-text-dim);
}

.phone-notification {
    position: absolute;
    bottom: 18px;
    left: 12px;
    right: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: notifSlideUp 0.6s cubic-bezier(0.16, 0.84, 0.44, 1) 1s both;
}

@keyframes notifSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notif-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notif-content b {
    display: block;
    font-size: 0.75rem;
    color: #000;
}

.notif-content span {
    font-size: 0.65rem;
    color: var(--c-text-dim);
}

.phone-bottom-ios {
    width: 100px;
    height: 4px;
    background: #000;
    border-radius: 2px;
    margin: 8px auto 0;
}

@media (max-width: 1080px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 680px) {
    .showcase-grid {
        gap: 20px;
    }

    .browser-mock {
        max-width: 100%;
    }

    .dash-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dash-tile {
        padding: 14px 12px;
    }

    .num {
        font-size: 1.4rem;
    }

    .chart-container {
        padding: 16px;
    }

    .chart-svg {
        height: 150px;
    }

    .ios-phone {
        width: 240px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        gap: 16px;
    }

    .browser-body {
        padding: 16px 12px;
    }

    .dash-tile {
        padding: 12px 10px;
        gap: 10px;
    }

    .num {
        font-size: 1.2rem;
    }

    .lbl {
        font-size: 0.65rem;
    }

    .chart-container {
        padding: 12px;
    }

    .chart-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .chart-legend {
        font-size: 0.65rem;
        gap: 10px;
    }

    .chart-svg {
        height: 120px;
        margin: 0;
    }

    .ios-phone {
        width: 200px;
        padding: 10px;
    }

    .ios-phone .phone-screen {
        height: 400px;
    }

    .phone-notch-ios {
        width: 130px;
    }
}

/* ====================== TESTIMONIAL ====================== */
.testimonial-wrap {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 46px;
}

.testi-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-blob {
    position: absolute;
    width: 260px;
    height: 260px;
    background: var(--gradient-brand);
    border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
    animation: blobmorph 9s ease-in-out infinite;
}

@keyframes blobmorph {
    0%,
    100% {
        border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
    }

    50% {
        border-radius: 60% 40% 35% 65% / 55% 60% 40% 45%;
    }
}

.testi-avatar {
    position: relative;
    z-index: 2;
    width: 140px;
    height: 140px;
}

.testi-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 8px 0;
}

.testi-slide {
    display: none;
}

.testi-slide.active {
    display: block;
    animation: fadein 0.5s ease;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testi-slide p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--c-text);
    margin-bottom: 20px;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-person-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testi-person b {
    display: block;
    font-size: 0.94rem;
}

.testi-person span {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.testi-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
}

.testi-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    background: #fff;
}

.testi-arrow:hover {
    background: var(--c-light-alt);
    border-color: var(--c-violet);
}

.testi-arrow svg {
    width: 16px;
    height: 16px;
}

.testi-dots {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.testi-dot.active {
    background: var(--c-violet);
    transform: scale(1.3);
}

@media (max-width: 900px) {
    .testimonial-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testi-person,
    .testi-nav {
        justify-content: center;
    }
}

/* ====================== INQUIRY ====================== */
.inquiry {
    background: var(--c-light-soft);
    position: relative;
    overflow: hidden;
}

.inquiry-inner {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 50px;
    align-items: start;
}

.inquiry-copy p {
    color: var(--c-text-muted);
    margin: 18px 0 30px;
    max-width: 420px;
}

.inquiry-icons {
    position: relative;
    height: 230px;
}

.inq-icon {
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconfloat 5s ease-in-out infinite;
}

.inq-icon svg {
    width: 36px;
    height: 36px;
}

.inq-icon.i1 {
    top: 0;
    left: 8%;
    animation-delay: 0s;
}

.inq-icon.i2 {
    top: 14%;
    left: 48%;
    animation-delay: 0.6s;
}

.inq-icon.i3 {
    top: 54%;
    left: 0;
    animation-delay: 1.2s;
}

.inq-icon.i4 {
    top: 50%;
    left: 54%;
    animation-delay: 1.8s;
}

@keyframes iconfloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(-4deg);
    }
}

.inquiry-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.form-field input,
.form-field textarea {
    border: 1.5px solid var(--c-border);
    border-radius: 11px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--c-text);
    background: var(--c-light-soft);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--c-violet);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
    background: #fff;
}

.form-field textarea {
    resize: vertical;
    min-height: 96px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: #ecfdf5;
    color: #047857;
    border-radius: 11px;
    padding: 13px 16px;
    font-size: 0.88rem;
    margin-top: 6px;
}

.form-success.show {
    display: flex;
    animation: fadein 0.4s ease;
}

.form-success svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .inquiry-inner {
        grid-template-columns: 1fr;
    }

    .inquiry-icons {
        max-width: 340px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-form {
        padding: 24px;
    }
}

/* ====================== FOOTER ====================== */
.site-footer {
    background: var(--c-dark);
    color: #bcb3dc;
    position: relative;
    overflow: hidden;
    padding: 70px 0 0;
}

.footer-watermark {
    position: absolute;
    bottom: -4%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: min(22vw, 260px);
    color: rgba(255, 255, 255, 0.035);
    letter-spacing: 0.02em;
    white-space: nowrap;
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    margin: 16px 0 18px;
    font-size: 0.88rem;
    color: #9f95c2;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
}

.footer-social a:hover {
    background: var(--gradient-brand);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.92rem;
    margin-bottom: 18px;
    font-family: var(--font-display);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    font-size: 0.86rem;
    color: #9f95c2;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #7e739f;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* ====================== ABOUT PAGE ====================== */
.about-hero {
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 80px;
    background: linear-gradient(180deg, #fbfafe 0%, #f3effc 100%);
}

.about-hero h1 {
    font-size: clamp(2.5rem, 4.8vw, 3.8rem);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    max-width: 620px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--c-text-dim);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--c-violet);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--c-violet-dark);
}

.mission-section {
    padding: 80px 0;
    background: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-grid .mission-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 18px;
}

.mission-grid .mission-content p {
    color: var(--c-text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background: var(--c-light-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.value-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1.5px solid var(--c-border);
    transition: all 0.35s cubic-bezier(0.16, 0.84, 0.44, 1);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.value-card .value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: var(--c-dark);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-grid .stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats-grid .stat-item .stat-label {
    font-size: 0.9rem;
    color: #bcb3dc;
    margin-top: 4px;
}

.history-section {
    padding: 80px 0;
    background: var(--c-light-soft);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding: 20px 0 20px 40px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-brand);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--c-violet);
}

.timeline-item .year {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--c-violet);
}

.timeline-item h3 {
    font-size: 1.05rem;
    margin: 4px 0;
}

.timeline-item p {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
    background: var(--gradient-brand);
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
}

.about-cta .btn-light {
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.35);
}

@media (max-width: 980px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stats-grid .stat-item .stat-number {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -16px;
        width: 12px;
        height: 12px;
    }
}

/* ====================== CONTACT PAGE ====================== */
.contact-hero {
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 60px;
    background: linear-gradient(180deg, #fbfafe 0%, #f3effc 100%);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 4.8vw, 3.8rem);
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    max-width: 620px;
}

.contact-main {
    padding: 60px 0 100px;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.contact-info>p {
    color: var(--c-text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--c-border);
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.contact-detail-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item .icon-box svg {
    width: 22px;
    height: 22px;
    color: var(--c-violet);
}

.contact-detail-item .detail-content h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-detail-item .detail-content p,
.contact-detail-item .detail-content a {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    transition: color 0.2s;
}

.contact-detail-item .detail-content a:hover {
    color: var(--c-violet);
}

.contact-social {
    margin-top: 28px;
}

.contact-social h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.contact-social .social-icons {
    display: flex;
    gap: 12px;
}

.contact-social .social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 0.84, 0.44, 1);
    color: var(--c-text-muted);
}

.contact-social .social-icons a:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(124, 58, 237, 0.4);
}

.contact-social .social-icons a svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background: var(--c-light-soft);
    border-radius: var(--radius-lg);
    padding: 40px 38px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.contact-form-wrapper .form-subtitle {
    color: var(--c-text-muted);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form-wrapper .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-wrapper .form-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-text-muted);
}

.contact-form-wrapper .form-field input,
.contact-form-wrapper .form-field textarea {
    border: 1.5px solid var(--c-border);
    border-radius: 11px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--c-text);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}

.contact-form-wrapper .form-field input:focus,
.contact-form-wrapper .form-field textarea:focus {
    outline: none;
    border-color: var(--c-violet);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}

.contact-form-wrapper .form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-wrapper .form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: #ecfdf5;
    color: #047857;
    border-radius: 11px;
    padding: 13px 16px;
    font-size: 0.88rem;
    margin-top: 16px;
}

.contact-form-wrapper .form-success.show {
    display: flex;
    animation: fadein 0.4s ease;
}

.contact-form-wrapper .form-success svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }
}

@media (max-width: 600px) {
    .contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px 18px;
    }

    .contact-detail-item {
        padding: 14px 0;
    }
}

/* ===== BREADCRUMB UTILITY ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--c-text-dim);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--c-violet);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--c-violet-dark);
}

/* ===== ANIMATION PERFORMANCE ===== */
.browser-mock {
    will-change: transform, opacity;
}

.chart-line {
    will-change: stroke-dashoffset;
}

.phone-mock {
    will-change: transform, opacity;
}
.footer-certified {
    margin-top: 20px;
}

.footer-certified h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-certified img {
    width: 80px; /* Thoda size badha diya hai taake logo clear dikhe */
    height: auto;
    border-radius: 5px;
}

  #portfolio .tk-pf-grid{
    display:grid; grid-template-columns:repeat(2,1fr); gap:28px;
    margin-top:48px;
  }
  @media (max-width:720px){ #portfolio .tk-pf-grid{ grid-template-columns:1fr; } }

  #portfolio .tk-pf-card{
    display:flex; flex-direction:column;
    background:#ffffff; border:1px solid #e6eaf2;
    border-radius:20px; text-decoration:none; overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  #portfolio .tk-pf-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px -12px rgba(0,100,255,.18);
    border-color:#0064ff;
  }

  #portfolio .tk-pf-shot{
    width:100%; height:220px; overflow:hidden;
    background:linear-gradient(135deg, rgba(0,100,255,.06), rgba(150,215,0,.06));
    border-bottom:1px solid #e6eaf2;
  }
  #portfolio .tk-pf-shot img{
    width:100%; height:100%; object-fit:cover; object-position:top;
    display:block; transition:transform .4s ease;
  }
  #portfolio .tk-pf-card:hover .tk-pf-shot img{ transform:scale(1.04); }

  #portfolio .tk-pf-body{ padding:28px 32px 32px; display:flex; flex-direction:column; }

  #portfolio .tk-pf-tag{
    align-self:flex-start; font-family:'Inter', sans-serif;
    font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
    color:#5fa500; background:rgba(150,215,0,.12);
    padding:5px 12px; border-radius:999px; margin-bottom:14px;
  }
  #portfolio .tk-pf-name{
    font-family:'Sora', sans-serif; font-weight:700; font-size:20px;
    color:#0b1220; margin:0 0 10px;
  }
  #portfolio .tk-pf-desc{
    font-family:'Inter', sans-serif; font-size:14.5px; line-height:1.6;
    color:#5b6472; margin:0 0 22px;
  }
  #portfolio .tk-pf-link{
    margin-top:auto; font-family:'Sora', sans-serif; font-weight:600; font-size:14px;
    color:#0064ff; display:inline-flex; align-items:center; gap:8px;
  }
  #portfolio .tk-pf-link i{ font-size:11px; transition:transform .2s ease; }
  #portfolio .tk-pf-card:hover .tk-pf-link i{ transform:translate(2px,-2px); }
