/* =====================================================
   INFYRAA TECHNOLOGIES
   DARK GLASSMORPHISM SYSTEM
===================================================== */

:root {
    --bg: #FFFFFF;
    --bg-soft: #F2F6FF;

    --primary: #0066FF;
    --blue: #00D1FF;
    --purple: #2F6FFF;

    --text: #0A1128;
    --text-soft: #46516E;
    --text-muted: #6C7690;

    --glass: rgba(0,102,255,.045);
    --glass-border: rgba(0,102,255,.14);

    --chip-bg: rgba(0,102,255,.055);
    --mobile-nav-bg: rgba(255,255,255,.97);
    --mobile-nav-hover: rgba(0,102,255,.07);
    --navbar-scroll-bg: rgba(255,255,255,.7);

    --font-heading: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --container: 1180px;

    --ease: cubic-bezier(.22,.61,.36,1);
}


/* =====================================================
   DARK MODE
===================================================== */

:root[data-theme="dark"] {
    --bg: #000000;
    --bg-soft: #0A0A10;

    --text: #ffffff;
    --text-soft: #a8afc4;
    --text-muted: #727991;

    --glass: rgba(255,255,255,0.045);
    --glass-border: rgba(255,255,255,0.10);

    --chip-bg: rgba(255,255,255,.035);
    --mobile-nav-bg: rgba(4,4,8,.92);
    --mobile-nav-hover: rgba(255,255,255,.05);
    --navbar-scroll-bg: rgba(5,7,19,.35);
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =====================================================
   INTRO
===================================================== */

.intro-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0,102,255,.2),
            transparent 35%
        ),
        var(--bg);

    overflow: hidden;
}

.intro-screen.hide {
    animation: introExit .8s var(--ease) forwards;
}

.intro-content {
    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.intro-logo {
    display: flex;
    align-items: center;
    gap: 15px;

    opacity: 0;
    transform: scale(.7);

    animation: logoReveal 1s var(--ease) .2s forwards;
}

.intro-logo-image {
    display: block;

    height: 130px;
    width: auto;

    object-fit: contain;

    filter: drop-shadow(0 4px 20px rgba(0,102,255,.5));
}

.logo-mark {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;
}

.logo-mark span {
    width: 8px;
    height: 38px;

    display: block;

    border-radius: 10px;

    background: linear-gradient(
        180deg,
        var(--blue),
        var(--primary)
    );

    transform-origin: bottom;

    animation: logoBar 1s var(--ease) forwards;
}

.logo-mark span:nth-child(2) {
    height: 50px;
    animation-delay: .12s;
}

.logo-mark span:nth-child(3) {
    height: 30px;
    animation-delay: .24s;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.logo-text strong {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: .08em;
}

.logo-text small {
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: .28em;
}

.intro-line {
    width: 0;
    height: 1px;

    margin-top: 28px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--blue),
        transparent
    );

    animation: lineReveal .9s var(--ease) 1s forwards;
}

.intro-tagline {
    margin-top: 24px;

    color: var(--text-soft);

    font-size: 26px;
    font-weight: 500;
    letter-spacing: .03em;

    opacity: 0;

    animation: fadeUp .8s var(--ease) 1.2s forwards;
}

.intro-loader {
    position: absolute;

    bottom: 40px;
    left: 50%;

    width: 100px;
    height: 2px;

    transform: translateX(-50%);

    background: rgba(255,255,255,.08);
}

.intro-loader span {
    display: block;

    width: 0;
    height: 100%;

    background: linear-gradient(
        90deg,
        var(--primary),
        var(--blue)
    );

    animation: loader 2.4s linear forwards;
}

.intro-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .16;

    pointer-events: none;
}

.intro-glow-1 {
    top: 15%;
    left: 20%;
    background: var(--primary);
}

.intro-glow-2 {
    right: 15%;
    bottom: 10%;
    background: var(--blue);
}


/* =====================================================
   MAIN WEBSITE REVEAL
===================================================== */

.main-website {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease);
}

.main-website.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 100vh;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    pointer-events: none;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );
}


/* FLOATING ICONS & SERVICE TAGS */

.hero-float-icons {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.hero-icon-badge,
.hero-tag-badge {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--glass-border);

    background: var(--glass);

    color: var(--text-soft);

    opacity: .55;

    animation: heroTagFloat 7s ease-in-out infinite;
}

.hero-icon-badge {
    width: 38px;
    height: 38px;

    border-radius: 50%;
}

.hero-icon-badge svg {
    width: 17px;
    height: 17px;

    fill: var(--primary);
}

.hero-tag-badge {
    padding: 8px 15px;

    border-radius: 50px;

    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.pos-1 { top: 42%; left: 1.5%;  animation-delay: 0s;   }
.pos-2 { top: 23%; right: 2%;   animation-delay: 1.1s; }
.pos-3 { top: 88%; left: 2%;    animation-delay: 2.2s; }
.pos-4 { top: 30%; right: 2%;   animation-delay: .6s;  }
.pos-5 { top: 62%; left: 1.5%;  animation-delay: 1.8s; }
.pos-6 { top: 17%; left: 41%;   animation-delay: 2.9s; }
.pos-7 { top: 76%; right: 1.5%; animation-delay: .3s;  }
.pos-8 { top: 22%; left: 1.5%;  animation-delay: 2.5s; }

@keyframes heroTagFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 900px) {

    .hero-float-icons {
        display: none;
    }

}

.gradient-orb {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .17;

    transition:
        transform 1.2s var(--ease);
}

.orb-one {
    top: 10%;
    left: 10%;
    background: var(--primary);

    animation: orbMoveOne 12s ease-in-out infinite;
}

.orb-two {
    top: 20%;
    right: 8%;
    background: var(--blue);

    animation: orbMoveTwo 14s ease-in-out infinite;
}

.orb-three {
    bottom: -20%;
    left: 40%;
    background: var(--purple);

    animation: orbMoveThree 16s ease-in-out infinite;
}

.network-svg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: .22;
}

.network-lines path {
    fill: none;

    stroke: url(#networkGradient);

    stroke-width: 1;

    stroke-dasharray: 8 14;

    animation: networkFlow 18s linear infinite;
}

.network-dots circle {
    fill: #00D1FF;

    opacity: .7;

    animation: dotPulse 3s ease-in-out infinite;
}

.network-dots circle:nth-child(2n) {
    animation-delay: 1s;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: relative;
    z-index: 10;

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;
    padding-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-logo {
    display: block;

    height: 118px;
    width: auto;
    max-width: 320px;

    object-fit: contain;

    filter: drop-shadow(0 2px 14px rgba(0,102,255,.45));
}

:root[data-theme="dark"] .brand-logo {
    filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0,102,255,.6));
}

:root[data-theme="dark"] .footer-logo,
:root[data-theme="dark"] .intro-logo-image {
    filter: brightness(0) invert(1);
}

.brand-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 3px;
}

.brand-icon span {
    width: 5px;
    height: 23px;

    border-radius: 6px;

    background: linear-gradient(
        180deg,
        var(--blue),
        var(--primary)
    );
}

.brand-icon span:nth-child(2) {
    height: 29px;
}

.brand-icon span:nth-child(3) {
    height: 18px;
}

.brand strong {
    display: block;

    font-family: var(--font-heading);
    font-size: 16px;

    letter-spacing: .08em;
}

.brand small {
    display: block;

    margin-top: -2px;

    font-size: 6px;
    letter-spacing: .27em;

    color: var(--text-muted);
}

.navbar nav {
    display: flex;
    gap: 34px;
}

.navbar nav a {
    color: var(--text-soft);

    font-size: 17px;
    font-weight: 600;

    transition: color .3s ease;
}

.navbar nav a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 17px;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    background: var(--chip-bg);

    font-size: 13px;
    font-weight: 500;

    transition: .3s ease;
}

.nav-cta:hover {
    border-color: rgba(0,209,255,.5);
    transform: translateY(-2px);
}


/* MOBILE NAV TOGGLE */

.nav-toggle {
    display: none;

    flex-direction: column;
    justify-content: center;
    gap: 5px;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 1px solid var(--glass-border);
    border-radius: 10px;

    background: var(--chip-bg);

    cursor: pointer;

    z-index: 20;
}

.nav-toggle span {
    display: block;

    width: 16px;
    height: 2px;

    margin: 0 auto;

    background: var(--text);
    border-radius: 2px;

    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* THEME TOGGLE */

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    background: var(--chip-bg);

    color: var(--text);

    cursor: pointer;

    transition: .3s ease;
}

.theme-toggle:hover {
    border-color: rgba(0,209,255,.5);
    transform: translateY(-2px);
}

.theme-toggle svg {
    width: 16px;
    height: 16px;

    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-toggle .icon-sun {
    display: none;
}

:root[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

:root[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}


/* LANGUAGE TOGGLE */

.lang-toggle {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 500;

    display: flex;
    align-items: stretch;

    height: 38px;

    flex-shrink: 0;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    background: var(--bg-soft);

    box-shadow: 0 10px 26px rgba(0,0,0,.25);

    overflow: hidden;
}

@media (max-width: 650px) {

    .lang-toggle {
        left: 16px;
        bottom: 16px;

        height: 34px;
    }

}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 13px;

    border: none;
    background: transparent;

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;

    cursor: pointer;

    transition: .3s ease;
}

.lang-option:hover {
    color: var(--text);
}

.lang-option.is-active {
    background: linear-gradient(100deg, var(--primary), var(--blue));
    color: #ffffff;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    min-height: calc(100vh - 125px);

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 50px;
}

.hero-copy {
    padding-top: 20px;
}

.eyebrow {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 7px 12px;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    background: var(--chip-bg);

    color: var(--text-soft);

    font-size: 11px;

    animation: fadeUp .9s var(--ease) .2s both;
}

.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow: 0 0 12px var(--blue);
}

.hero h1 {
    max-width: 650px;

    margin-top: 24px;

    font-family: var(--font-heading);

    font-size: clamp(
        42px,
        5.5vw,
        76px
    );

    line-height: 1.03;

    letter-spacing: -.055em;

    animation: fadeUp .9s var(--ease) .35s both;
}

.gradient-text {
    background: linear-gradient(
        100deg,
        var(--primary),
        var(--blue),
        var(--purple)
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    background-size: 200% auto;

    animation: gradientShift 6s ease infinite;
}

.hero-copy > p {
    max-width: 540px;

    margin-top: 24px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.75;

    animation: fadeUp .9s var(--ease) .5s both;
}

.hero-actions {
    display: flex;
    gap: 12px;

    margin-top: 30px;

    animation: fadeUp .9s var(--ease) .65s both;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 13px 19px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.primary-btn {
    background: linear-gradient(
        100deg,
        var(--primary),
        #00A3FF
    );

    box-shadow:
        0 12px 35px rgba(0,102,255,.25);
}

.primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 45px rgba(0,102,255,.35);
}

.secondary-btn {
    border: 1px solid var(--glass-border);

    background: var(--chip-bg);

    color: var(--text-soft);
}

.secondary-btn:hover {
    color: var(--text);

    transform: translateY(-3px);

    border-color: rgba(0,209,255,.4);
}

.hero-stats {
    display: flex;
    gap: 35px;

    margin-top: 45px;

    animation: fadeUp .9s var(--ease) .8s both;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: var(--font-heading);
    font-size: 22px;
}

.hero-stats span {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 10px;
}


/* =====================================================
   HERO VISUAL — Interactive 3D AI ecosystem
===================================================== */

.hero-3d-visual {
    --h3d-navy: #071A3D;
    --h3d-deep: #0A235A;
    --h3d-blue: #1677FF;
    --h3d-cyan: #00C8FF;

    position: relative;

    min-height: 520px;

    animation: visualReveal 1.2s var(--ease) .45s both;
}

.hero-3d-stage,
.hero-3d-overlay {
    position: absolute;
    inset: 0;
    margin: auto;

    width: min(100%, 520px);

    aspect-ratio: 1 / 1;
}

.hero-3d-stage {
    overflow: hidden;

    background: radial-gradient(circle at 50% 42%, rgba(22,119,255,.14), transparent 62%);
}

.hero-3d-canvas {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
}

.hero-3d-fallback {
    position: absolute;
    inset: 0;

    overflow: hidden;

    opacity: 0;

    transition: opacity .6s ease;
}

.hero-3d-visual.is-static .hero-3d-fallback {
    opacity: 1;
}

.person-scene-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

    opacity: .55;
}

.orb-a {
    top: 8%;
    left: 8%;

    width: 220px;
    height: 220px;

    background: var(--primary);

    animation: orbMoveOne 12s ease-in-out infinite;
}

.orb-b {
    top: 12%;
    right: 6%;

    width: 180px;
    height: 180px;

    background: var(--blue);

    animation: orbMoveTwo 14s ease-in-out infinite;
}

.orb-c {
    bottom: -10%;
    left: 35%;

    width: 240px;
    height: 240px;

    background: var(--purple);

    animation: orbMoveThree 16s ease-in-out infinite;
}

.hero-3d-overlay {
    pointer-events: none;
}

.hero-3d-ai-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: #ffffff;

    font-family: var(--font-heading);
    font-size: clamp(30px, 4.4vw, 46px);
    font-weight: 800;
    letter-spacing: .04em;

    text-shadow: 0 0 24px rgba(0,200,255,.7);
}

.hero-3d-node {
    position: absolute;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;

    width: 128px;

    padding: 10px 12px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;

    background: rgba(7,26,61,.72);
    backdrop-filter: blur(10px);

    text-align: center;

    pointer-events: auto;
    cursor: default;

    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.hero-3d-node:hover,
.hero-3d-node:focus-visible {
    transform: scale(1.08);

    border-color: rgba(0,200,255,.55);

    box-shadow: 0 10px 30px rgba(0,102,255,.35);

    outline: none;
}

.hero-3d-node-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    color: var(--h3d-cyan);
}

.hero-3d-node-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.hero-3d-node strong {
    color: #ffffff;

    font-family: var(--font-heading);
    font-size: 12px;
}

.hero-3d-node small {
    color: rgba(255,255,255,.6);

    font-size: 9px;
    line-height: 1.3;
}

.node-website {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.node-website:hover,
.node-website:focus-visible {
    transform: translateX(-50%) scale(1.08);
}

.node-ads {
    top: 36%;
    left: -6%;
}

.node-seo {
    top: 36%;
    right: -6%;
}

.node-social {
    bottom: 2%;
    left: 4%;
}

.node-analytics {
    bottom: 2%;
    right: 4%;
}


/* FLOATING DASHBOARD CARDS */

.hero-3d-card {
    position: absolute;

    display: flex;
    flex-direction: column;
    gap: 4px;

    width: 148px;

    padding: 12px 14px;

    border: 1px solid var(--glass-border);
    border-radius: 12px;

    background: rgba(10,12,28,.75);
    backdrop-filter: blur(15px);

    box-shadow: 0 20px 40px rgba(0,0,0,.25);

    animation: floating 4s ease-in-out infinite;

    pointer-events: none;
}

.hero-3d-card-label {
    color: rgba(255,255,255,.55);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-3d-card-value {
    display: flex;
    align-items: baseline;
    gap: 4px;

    color: #ffffff;

    font-family: var(--font-heading);
    font-size: 18px;
}

.hero-3d-card-value small {
    color: rgba(255,255,255,.5);
    font-size: 10px;
}

.hero-3d-card-delta {
    width: fit-content;

    padding: 2px 7px;

    border-radius: 20px;

    font-size: 9px;
    font-weight: 700;
}

.hero-3d-card-delta.is-up {
    background: rgba(0,200,255,.15);
    color: var(--h3d-cyan);
}

.hero-3d-card-graph {
    width: 100%;
    height: 22px;

    margin-top: 2px;
}

.hero-3d-card-graph polyline {
    fill: none;
    stroke: var(--h3d-cyan);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-campaign {
    top: 6%;
    left: -12%;

    animation-delay: -1s;
}

.card-seo-score {
    top: 10%;
    right: -12%;

    animation-delay: -2.5s;
}

.card-analytics-total {
    top: 56%;
    right: -12%;

    animation-delay: -3.5s;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    position: relative;

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

    padding: 130px 0;
}

.services-page-section {
    padding-top: 55px;
}


/* =====================================================
   HOMEPAGE TEASER SECTIONS
===================================================== */

.services-teaser-section {
    width: min(calc(100% - 40px), var(--container));

    margin: auto;

    padding: 110px 0;
}

.services-teaser-section .section-heading {
    flex-direction: column;
    align-items: center;

    text-align: center;

    max-width: 720px;
    margin: 0 auto;
}

.services-teaser-section .section-heading h2 {
    font-size: clamp(32px, 4.6vw, 48px);
}

.services-teaser-section .section-label {
    font-size: 16px;
}

.services-teaser-section .section-heading > p {
    max-width: 560px;
}


/* FLYING WORD HEADING */

.fly-heading .fly-word {
    display: inline-block;

    opacity: 0;
    transform: translateY(-30px) rotate(-6deg);
}

.fly-heading.is-visible .fly-word {
    animation: flyWordIn .7s var(--ease) forwards;
    animation-delay: var(--fly-delay, 0s);
}

@keyframes flyWordIn {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}


/* SERVICES SLIDER */

.services-slider-wrap {
    position: relative;

    margin-top: 55px;
}

.services-slider-viewport {
    overflow: hidden;
}

.services-slider-track {
    display: flex;
    gap: 20px;

    transition: transform .5s var(--ease);
}

.slider-card {
    position: relative;

    flex: 0 0 auto;

    width: 270px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--glass-border);
    border-radius: 18px;

    background: var(--glass);

    overflow: hidden;

    transition: transform .3s var(--ease), border-color .3s ease;
}

.slider-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,209,255,.35);
}

.slider-card.is-popping {
    transition: transform .18s ease;
    transform: scale(1.08);

    border-color: rgba(0,209,255,.6);

    box-shadow: 0 16px 40px rgba(0,102,255,.35);
}

.slider-card-visual {
    height: 150px;

    overflow: hidden;
}

.slider-card-visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.slider-card.is-coming-soon .slider-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--bg-soft);
}

.slider-card-body {
    padding: 18px;
}

.slider-card-number {
    color: var(--blue);

    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.slider-card-body h3 {
    margin-top: 6px;

    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1.3;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border: 1px solid var(--glass-border);
    border-radius: 50%;

    background: var(--bg-soft);

    color: var(--text);

    cursor: pointer;

    box-shadow: 0 10px 26px rgba(0,0,0,.18);

    animation: arrowBlink 1.8s ease-in-out infinite;
}

.slider-arrow svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-arrow.prev {
    left: -23px;
}

.slider-arrow.next {
    right: -23px;
}

.slider-arrow:hover {
    animation-play-state: paused;

    border-color: rgba(0,209,255,.5);
    color: var(--blue);
}

@keyframes arrowBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 10px 26px rgba(0,0,0,.18);
    }

    50% {
        opacity: .55;
        box-shadow: 0 10px 26px rgba(0,102,255,.35);
    }
}

@media (max-width: 650px) {

    .slider-arrow {
        display: none;
    }

    .services-slider-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;

        margin: 0 -20px;
        padding: 0 20px;
    }

    .services-slider-track {
        transition: none;
    }

    .slider-card {
        scroll-snap-align: start;
    }

}

.mini-services-list {
    margin-top: 45px;

    display: flex;
    flex-direction: column;
}

.mini-service-row {
    display: flex;
    gap: 26px;

    padding: 28px 0;

    border-bottom: 1px solid var(--glass-border);

    transition: padding-left .3s ease;
}

.mini-service-row:first-child {
    padding-top: 0;
}

.mini-service-row:hover {
    padding-left: 10px;
}

.mini-service-number {
    flex-shrink: 0;

    width: 40px;

    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;

    color: var(--blue);
}

.mini-service-row h3 {
    font-family: var(--font-heading);
    font-size: 19px;
}

.mini-service-row p {
    max-width: 560px;

    margin-top: 8px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.7;
}

.services-teaser-cta {
    display: inline-flex;

    margin-top: 40px;
}

.about-teaser-section {
    width: min(calc(100% - 40px), 800px);

    margin: auto;

    padding: 0 0 110px;

    text-align: center;
}

.about-teaser-copy h2 {
    font-family: var(--font-heading);

    font-size: clamp(30px, 4.2vw, 44px);
    font-weight: 800;
    line-height: 1.15;
}

.about-teaser-copy h2 span:not(.heading-lead) {
    color: var(--text-muted);
}

.about-teaser-copy p {
    max-width: 640px;

    margin: 20px auto 0;

    color: var(--text);

    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
}

.about-teaser-copy .detail-list {
    max-width: 520px;

    margin: 36px auto 0;

    gap: 14px;

    text-align: left;
}

.about-teaser-copy .detail-list li {
    padding: 20px 22px 20px 56px;

    border-radius: 14px;

    background: linear-gradient(
        100deg,
        #001233,
        var(--primary),
        var(--purple),
        var(--blue),
        #001233
    );

    background-size: 300% auto;

    animation: gradientShift 8s ease infinite;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.about-teaser-copy .detail-list li::before {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);

    width: 24px;
    height: 24px;

    font-size: 12px;
}

.about-teaser-copy .primary-btn {
    margin-top: 36px;
}

.process-section {
    width: min(calc(100% - 40px), var(--container));

    margin: auto;

    padding: 0 0 130px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 55px;
}

.section-label {
    display: block;

    color: var(--blue);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .14em;
}

.section-heading h2,
.about-section h2,
.contact-card h2 {
    margin-top: 12px;

    font-family: var(--font-heading);

    font-size: clamp(34px, 4vw, 56px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.section-heading h2 span,
.about-section h2 span,
.contact-card h2 span {
    color: var(--text-muted);
}

.section-heading h2 .heading-lead,
.about-section h2 .heading-lead,
.contact-card h2 .heading-lead {
    color: var(--text);
}

.section-heading > p {
    max-width: 350px;

    color: var(--text);

    font-weight: 600;
    line-height: 1.7;
    font-size: 16px;
}


/* SERVICE GRID */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 28px;

    overflow: hidden;

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.018)
        );

    backdrop-filter: blur(18px);

    transition:
        transform .45s var(--ease),
        border-color .45s ease,
        background .45s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -100px;

    border-radius: 50%;

    background: var(--primary);

    filter: blur(100px);

    opacity: .08;

    transition: .5s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0,209,255,.25);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );
}

.service-card:hover::before {
    opacity: .15;
}

.service-number {
    color: var(--text-muted);

    font-size: 10px;

    letter-spacing: .1em;
}

.service-card h3 {
    margin-top: 10px;

    font-family: var(--font-heading);

    font-size: 23px;
}

.service-card > p {
    max-width: 450px;

    margin-top: 12px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   SERVICE VISUALS
===================================================== */

.service-visual {
    aspect-ratio: 5 / 2;

    margin-bottom: 28px;

    position: relative;

    overflow: hidden;

    border: 1px solid var(--glass-border);
    border-radius: 14px;
}

.service-visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s var(--ease);
}

.service-card:hover .service-visual img {
    transform: scale(1.06);
}

.service-visual::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,.45) 100%
    );

    pointer-events: none;
}


/* =====================================================
   MINI USE CASE
===================================================== */

.mini-use-case {
    margin-top: 28px;
}

.use-case-label {
    display: block;

    margin-bottom: 9px;

    color: var(--text-muted);

    font-size: 8px;

    letter-spacing: .15em;
}

.use-case-ui {
    min-height: 55px;

    display: flex;
    align-items: center;

    padding: 10px;

    border: 1px solid var(--glass-border);
    border-radius: 9px;

    background: rgba(6,8,20,.55);
}


/* WEBSITE USECASE */

.website-usecase {
    gap: 8px;
}

.use-header {
    width: 20%;

    height: 35px;

    border-radius: 4px;

    background: var(--primary);
}

.use-content {
    flex: 1;

    height: 35px;

    border-radius: 4px;

    background: rgba(255,255,255,.06);
}

.use-button {
    width: 18%;

    height: 18px;

    border-radius: 4px;

    background: var(--blue);
}


/* MARKETING USECASE */

.marketing-usecase {
    gap: 30px;
}

.marketing-usecase div {
    display: flex;
    flex-direction: column;
}

.marketing-usecase small {
    color: rgba(255,255,255,.5);
    font-size: 7px;
}

.marketing-usecase strong {
    margin-top: 2px;

    font-size: 16px;

    color: var(--blue);
}


/* BRANDING USECASE */

.branding-usecase {
    gap: 12px;
}

.brand-logo-mini {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--blue)
    );

    color: #ffffff;

    font-family: var(--font-heading);
    font-weight: 800;
}

.branding-usecase div {
    flex: 1;
}

.branding-usecase div span {
    display: block;

    width: 80%;
    height: 5px;

    margin: 5px 0;

    border-radius: 5px;

    background: rgba(255,255,255,.1);
}


/* CONTENT USECASE */

.content-usecase {
    gap: 12px;
}

.content-thumbnail {
    width: 70px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--blue)
        );

    color: #ffffff;

    font-size: 10px;
}

.content-usecase > div:last-child {
    flex: 1;
}

.content-usecase > div:last-child span {
    display: block;

    width: 70%;
    height: 5px;

    margin: 6px 0;

    border-radius: 5px;

    background: rgba(255,255,255,.12);
}


/* SERVICE LINK */

.service-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}


/* COMING SOON SERVICE CARD */

.service-card.is-coming-soon {
    opacity: .6;
}

.service-card.is-coming-soon:hover {
    transform: none;
}

.coming-soon-media {
    position: relative;
}

.coming-soon-media img {
    filter: grayscale(.5) brightness(.5);
}

.coming-soon-badge-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 8px 18px;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px;

    background: rgba(8,12,26,.7);
    backdrop-filter: blur(4px);

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.coming-soon-tag {
    display: inline-block;

    width: fit-content;

    margin-top: auto;

    padding: 8px 16px;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    background: var(--glass);

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.service-link {
    position: relative;
    z-index: 2;

    width: fit-content;

    margin-top: auto;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 20px;

    border-radius: 10px;

    background: linear-gradient(100deg, var(--primary), #00A3FF);

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 10px 24px rgba(0,102,255,.25);

    transition: transform .3s ease, box-shadow .3s ease;
}

.service-link .link-arrow {
    transition: transform .3s ease;
}

.service-link:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 14px 32px rgba(0,102,255,.35);
}

.service-link:hover .link-arrow {
    transform: translate(3px,-3px);
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    width: min(
        calc(100% - 40px),
        900px
    );

    margin: auto;

    padding: 130px 0;

    text-align: center;
}

.about-page-section {
    padding-top: 55px;
}

.about-section p {
    max-width: 620px;

    margin: 25px auto 0;

    color: var(--text);

    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
}


/* MISSION / VISION */

.about-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;

    margin-top: 50px;

    text-align: left;
}

.about-mv-card {
    padding: 26px 28px;

    border: 1px solid var(--glass-border);
    border-radius: 18px;

    background: var(--glass);
}

.about-mv-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--blue);

    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.about-mv-card p {
    margin: 0;

    max-width: none;

    color: var(--text-soft);

    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}


/* WHY CHOOSE US */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;

    margin-top: 20px;

    text-align: left;
}

.why-card {
    position: relative;

    padding: 24px 22px 22px;

    border: 1px solid var(--glass-border);
    border-radius: 16px;

    background: var(--glass);

    transition: transform .3s var(--ease), border-color .3s ease;
}

.why-card:hover {
    transform: translateY(-4px);

    border-color: rgba(0,102,255,.4);
}

.why-number {
    display: block;

    margin-bottom: 14px;

    color: var(--primary);

    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.why-card h4 {
    margin-bottom: 8px;

    font-family: var(--font-heading);
    font-size: 17px;
}

.why-card p {
    margin: 0;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.65;
}


/* ABOUT STATS */

.about-section .hero-stats {
    justify-content: center;

    animation: none;
}


/* OUR STORY */

.about-story {
    max-width: 700px;

    margin: 60px auto 0;

    text-align: left;
}

.about-story-label {
    display: block;

    color: var(--blue);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
}

.about-story h3 {
    margin-top: 12px;

    font-family: var(--font-heading);

    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    letter-spacing: -.02em;
}

.about-story p {
    max-width: none;

    margin: 18px 0 0;

    color: var(--text-soft);

    font-weight: 500;
    font-size: 16px;
    line-height: 1.85;
}

.about-story p strong {
    color: var(--text);
    font-weight: 700;
}


/* CAPABILITIES STRIP */

.about-capabilities {
    margin-top: 60px;
}

.about-capabilities-label {
    display: block;

    color: var(--blue);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
}

.about-capabilities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    margin-top: 20px;
}

.about-capabilities-list a {
    padding: 10px 18px;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    background: var(--glass);

    color: var(--text);

    font-size: 14px;
    font-weight: 600;

    transition: transform .3s var(--ease), border-color .3s ease, color .3s ease;
}

.about-capabilities-list a:hover {
    transform: translateY(-3px);

    border-color: rgba(0,102,255,.4);

    color: var(--blue);
}


/* CLOSING CTA */

.about-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-top: 60px;

    padding: 32px 36px;

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    background: var(--glass);

    text-align: left;
}

.about-cta p {
    margin: 0;

    max-width: none;

    font-family: var(--font-heading);

    font-size: 20px;
    line-height: 1.4;

    color: var(--text);
}

.about-cta .primary-btn {
    flex-shrink: 0;
}

@media (max-width: 650px) {

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-mv {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

    padding: 50px 0 120px;
}

.contact-card {
    position: relative;

    padding: 80px 50px;

    text-align: center;

    overflow: hidden;

    border: 1px solid var(--glass-border);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(0,102,255,.17),
            transparent 50%
        ),
        var(--glass);
}

.contact-card .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 18px;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    background: var(--glass);

    color: var(--primary);

    font-size: 14px;
}

.contact-card .section-label::before {
    content: "✦";

    color: var(--blue);
}

.contact-card h2 {
    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    font-size: clamp(40px, 5vw, 66px);
}

.contact-card p {
    max-width: 520px;

    margin: 20px auto 28px;

    color: var(--text);

    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}


/* CONTACT FORM */

.contact-form {
    width: 100%;
    max-width: 560px;

    margin: 8px auto 32px;

    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--text);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 18px;

    border: 1px solid var(--glass-border);
    border-radius: 12px;

    background: var(--glass);

    color: var(--text);

    font-family: var(--font-body);
    font-size: 15px;

    transition: border-color .3s ease, background .3s ease;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-soft);
    color: var(--text);
}

.form-group textarea {
    min-height: 110px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: rgba(0,209,255,.5);

    background: rgba(0,102,255,.06);
}

.form-honeypot {
    position: absolute;

    left: -9999px;

    opacity: 0;

    pointer-events: none;
}

button.primary-btn.form-submit {
    width: 100%;

    justify-content: center;

    padding: 17px 19px;

    border: none;

    font-size: 15px;

    cursor: pointer;

    margin-top: 4px;
}


.contact-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 26px;

    margin-top: 30px;
}

.contact-details a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--text);

    font-size: 16px;
    font-weight: 600;

    transition: color .3s ease;
}

.contact-details a:hover {
    color: var(--blue);
}

.contact-icon {
    color: var(--primary);

    font-size: 18px;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 14px;

    margin-top: 22px;
}

.contact-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    color: var(--text);

    font-size: 13px;
    font-weight: 600;

    transition: .3s ease;
}

.contact-socials a svg {
    width: 16px;
    height: 16px;

    fill: currentColor;
}

.contact-socials a[aria-label*="Facebook"] svg {
    fill: #1877F2;
}

.contact-socials a[aria-label*="LinkedIn"] svg {
    fill: #0A66C2;
}

.contact-socials a:hover {
    color: var(--text);
    border-color: rgba(0,209,255,.5);
    transform: translateY(-2px);
}

@media (max-width: 650px) {

    .contact-socials {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .contact-socials a {
        justify-content: center;
    }

}


/* =====================================================
   FOOTER
===================================================== */

footer {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

    padding: 48px 0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    border-top: 1px solid var(--glass-border);

    color: var(--text-muted);

    font-size: 14px;
    font-weight: 600;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    display: block;

    height: 82px;
    width: auto;

    object-fit: contain;
}

.footer-brand strong {
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 17px;
    letter-spacing: .08em;
}

.footer-brand span {
    font-size: 9px;
    letter-spacing: .18em;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    font-size: 14px;
    font-weight: 600;
}

.footer-links a {
    color: var(--text-muted);

    transition: color .3s ease;
}

.footer-links a:hover {
    color: var(--blue);
}


/* =====================================================
   SERVICE DETAIL PAGES
===================================================== */

.page-backdrop {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% -10%,
            rgba(0,102,255,.16),
            transparent 45%
        ),
        radial-gradient(
            circle at 90% 0%,
            rgba(0,209,255,.12),
            transparent 40%
        );
}

.page-backdrop .navbar {
    padding-top: 25px;
}


/* BREADCRUMB */

.service-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--text-muted);

    font-size: 12px;

    transition: color .3s ease;
}

.service-breadcrumb:hover {
    color: var(--blue);
}


/* SERVICE HERO */

.service-hero {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 40px), var(--container));

    margin: auto;

    padding: 40px 0 100px;
}

.service-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 55px;

    margin-top: 26px;
}

.service-hero-number {
    display: block;

    margin-bottom: 14px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.service-hero-copy h1 {
    font-family: var(--font-heading);

    font-size: clamp(34px, 4.2vw, 52px);

    line-height: 1.08;
    letter-spacing: -.03em;
}

.service-hero-copy > p {
    max-width: 480px;

    margin-top: 20px;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.75;
}

.service-hero-copy .primary-btn {
    margin-top: 32px;
}

.service-hero-photo {
    position: relative;

    border-radius: 22px;
    overflow: hidden;

    border: 1px solid var(--glass-border);

    box-shadow: 0 40px 100px rgba(0,0,0,.35);
}

.service-hero-photo img {
    display: block;

    width: 100%;
    height: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;
}


/* SERVICE DETAILS (WHAT'S INCLUDED) */

.service-details {
    width: min(calc(100% - 40px), var(--container));

    margin: auto;

    padding: 20px 0 110px;
}

.service-details-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;

    gap: 55px;
}

.service-details-photo {
    border-radius: 20px;
    overflow: hidden;

    border: 1px solid var(--glass-border);
}

.service-details-photo img {
    display: block;

    width: 100%;
    height: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;
}

.service-details-copy h2 {
    margin-top: 12px;

    font-family: var(--font-heading);

    font-size: clamp(26px, 3vw, 36px);

    line-height: 1.15;
    letter-spacing: -.02em;
}

.detail-list {
    margin-top: 26px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    list-style: none;
}

.detail-list li {
    position: relative;

    padding-left: 26px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.6;
}

.detail-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: linear-gradient(100deg, var(--primary), var(--blue));

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
}


/* PLANS */

.plans-section {
    width: min(calc(100% - 40px), var(--container));

    margin: auto;

    padding: 0 0 130px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 45px;
}

.plans-grid-2col {
    grid-template-columns: repeat(2, 1fr);

    max-width: 760px;

    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 34px 26px;

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    background: var(--glass);

    transition: transform .3s var(--ease), border-color .3s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
}

.plan-card.is-popular {
    border-color: rgba(0,102,255,.5);

    background:
        linear-gradient(
            160deg,
            rgba(0,102,255,.12),
            var(--glass)
        );
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 26px;

    padding: 5px 14px;

    border-radius: 50px;

    background: linear-gradient(100deg, var(--primary), var(--blue));

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plan-name {
    display: block;

    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
}

.plan-tagline {
    margin-top: 8px;

    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.6;
}

.plan-features {
    flex: 1;

    margin-top: 24px;

    display: flex;
    flex-direction: column;
    gap: 13px;

    list-style: none;
}

.plan-features li {
    position: relative;

    padding-left: 22px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.55;
}

.plan-features li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: var(--blue);

    font-weight: 700;
}

.plan-features li.plan-group-label {
    margin-top: 14px;

    padding-left: 0;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plan-features li.plan-group-label:first-child {
    margin-top: 0;
}

.plan-features li.plan-group-label::before {
    content: none;
}

.section-heading p.plans-tagline {
    color: var(--blue);

    font-weight: 700;
    letter-spacing: .04em;
}

.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 28px;
    padding: 13px 18px;

    border: 1px solid var(--glass-border);
    border-radius: 10px;

    color: var(--text);

    font-size: 13px;
    font-weight: 600;

    transition: .3s ease;
}

.plan-card.is-popular .plan-cta {
    border-color: transparent;

    background: linear-gradient(100deg, var(--primary), #00A3FF);

    color: #ffffff;
}

.plan-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(0,209,255,.5);
}


@media (max-width: 900px) {

    .service-hero-inner,
    .service-details-inner {
        grid-template-columns: 1fr;
    }

    .service-details-inner {
        display: flex;
        flex-direction: column-reverse;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   COMING SOON
===================================================== */

.coming-soon-section {
    position: relative;
    z-index: 2;

    min-height: 62vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 90px 20px;
}

.coming-soon-inner {
    max-width: 560px;
}

.coming-soon-inner h1 {
    margin-top: 14px;

    font-family: var(--font-heading);

    font-size: clamp(32px, 5vw, 48px);

    line-height: 1.1;
    letter-spacing: -.03em;
}

.coming-soon-inner p {
    margin-top: 16px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.75;
}

.coming-soon-inner .primary-btn {
    margin-top: 30px;
}


/* =====================================================
   TEAM
===================================================== */

.team-section {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

    padding: 20px 0 130px;

    text-align: center;
}

.team-section .section-heading {
    justify-content: center;
    text-align: center;
}

.team-section .section-heading > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 50px;

    text-align: left;
}

.team-card {
    display: block;

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    overflow: hidden;

    background: var(--glass);

    cursor: pointer;

    transition: transform .3s var(--ease), border-color .3s ease;
}

.team-card:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,102,255,.4);
}

.team-photo {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;
}

.team-card-body {
    padding: 20px 22px 24px;
}

.team-name {
    display: block;

    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.team-role {
    display: block;

    margin-top: 5px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
}


@media (max-width: 900px) {

    .team-grid {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   TEAM PROFILE PAGE
===================================================== */

.profile-hero {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 40px), var(--container));

    margin: auto;

    padding: 40px 0 100px;
}

.profile-hero.is-stacked {
    padding-top: 70px;

    border-top: 1px solid var(--glass-border);
}

.profile-hero-inner {
    display: grid;
    grid-template-columns: 280px 1fr;

    gap: 55px;

    margin-top: 26px;
    align-items: start;
}

.profile-photo {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    border-radius: 22px;
    overflow: hidden;
    object-fit: cover;

    border: 1px solid var(--glass-border);

    box-shadow: 0 40px 100px rgba(0,0,0,.35);
}

.profile-copy h1 {
    font-family: var(--font-heading);

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.1;
    letter-spacing: -.02em;
}

.profile-role {
    display: block;

    margin-top: 10px;

    color: var(--blue);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
}

.profile-bio p {
    margin-top: 18px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 700px) {

    .profile-hero-inner {
        grid-template-columns: 1fr;
    }

    .profile-photo {
        max-width: 260px;
        margin: 0 auto;
    }

}


/* =====================================================
   BLOG
===================================================== */

.blog-intro-section {
    width: min(calc(100% - 40px), var(--container));

    margin: auto;

    padding: 150px 0 10px;

    text-align: center;
}

.blog-intro-section .section-heading {
    justify-content: center;
    text-align: center;
}

.blog-intro-section .section-heading > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-intro-section .section-label {
    font-size: 16px;
}

.blog-coverflow-wrap {
    position: relative;

    width: min(calc(100% - 40px), var(--container));

    margin: 60px auto 130px;

    padding: 0 50px;
}

.blog-coverflow-stage {
    position: relative;

    height: 560px;

    overflow: hidden;

    perspective: 1500px;
    perspective-origin: 50% 50%;
}

.blog-coverflow-card {
    position: absolute;
    top: 0;
    left: 50%;

    width: 400px;
    height: 100%;

    border: 1px solid var(--glass-border);
    border-radius: 22px;

    overflow: hidden;

    background: var(--glass);

    box-shadow: 0 30px 70px rgba(0,0,0,.3);

    transition: transform .55s var(--ease), opacity .55s var(--ease);

    will-change: transform, opacity;
}

.blog-coverflow-card:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.blog-coverflow-media {
    position: relative;

    width: 100%;
    height: 100%;
}

.blog-coverflow-media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.blog-coverflow-overlay {
    position: absolute;
    inset: auto 0 0 0;

    padding: 28px 26px 30px;

    background: linear-gradient(0deg, rgba(5,7,15,.94), rgba(5,7,15,.6) 65%, transparent);
}

.blog-coverflow-overlay .blog-card-tag {
    color: #00C8FF;
}

.blog-coverflow-overlay h3 {
    margin-top: 10px;

    font-family: var(--font-heading);

    color: #ffffff;

    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -.01em;
}

.blog-card-tag {
    color: var(--primary);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 14px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.blog-coverflow-card.is-active .blog-card-link {
    color: var(--h3d-cyan, #00C8FF);
}

@media (max-width: 650px) {

    .blog-coverflow-wrap {
        padding: 0;
    }

    .blog-coverflow-stage {
        height: auto;

        display: flex;
        gap: 16px;

        overflow-x: auto;
        scroll-snap-type: x mandatory;

        margin: 0 -20px;
        padding: 0 20px 8px;

        perspective: none;
    }

    .blog-coverflow-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;

        flex: 0 0 260px;
        height: 340px;

        scroll-snap-align: start;
    }

}


/* ARTICLE PAGE */

.article-hero {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 40px), var(--container));

    margin: auto;

    padding: 40px 0 0;
}

.article-tag {
    display: block;

    margin-top: 26px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 840px;

    margin-top: 14px;

    font-family: var(--font-heading);

    font-size: clamp(32px, 4.6vw, 50px);
    line-height: 1.12;
    letter-spacing: -.02em;
}

.article-meta {
    display: flex;
    gap: 16px;

    margin-top: 20px;

    color: var(--text-muted);

    font-size: 13px;
}

.article-media {
    width: min(calc(100% - 40px), var(--container));

    margin: 36px auto 0;

    border-radius: 22px;
    overflow: hidden;

    border: 1px solid var(--glass-border);

    box-shadow: 0 40px 100px rgba(0,0,0,.25);
}

.article-media img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 460px;

    object-fit: cover;
}

.article-body {
    width: min(calc(100% - 40px), 760px);

    margin: 0 auto;

    padding: 50px 0 90px;
}

.article-body h2 {
    margin-top: 44px;

    font-family: var(--font-heading);

    font-size: clamp(22px, 2.6vw, 27px);
    line-height: 1.3;
    letter-spacing: -.01em;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    margin-top: 16px;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.85;
}

.article-body p strong {
    color: var(--text);

    font-weight: 700;
}

.article-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    width: min(calc(100% - 40px), 760px);

    margin: 0 auto 130px;

    padding: 30px 34px;

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    background: var(--glass);
}

.article-cta p {
    font-family: var(--font-heading);

    font-size: 18px;
    line-height: 1.4;
}

.article-cta .primary-btn {
    flex-shrink: 0;
}

@media (max-width: 650px) {

    .article-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: scale(.65);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes lineReveal {
    from {
        width: 0;
    }

    to {
        width: 180px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loader {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes introExit {
    to {
        opacity: 0;
        visibility: hidden;
        transform: scale(1.02);
    }
}

@keyframes orbMoveOne {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(100px,50px);
    }
}

@keyframes orbMoveTwo {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-80px,80px);
    }
}

@keyframes orbMoveThree {
    0%,100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(70px,-50px);
    }
}

@keyframes networkFlow {
    to {
        stroke-dashoffset: -200;
    }
}

@keyframes dotPulse {
    0%,100% {
        opacity: .35;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes gradientShift {
    0%,100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes visualReveal {
    from {
        opacity: 0;
        transform: translateX(50px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes floating {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .navbar nav {
        position: fixed;
        top: 96px;
        right: 20px;
        left: 20px;
        z-index: 15;

        display: flex;
        flex-direction: column;
        gap: 4px;

        padding: 14px;

        border: 1px solid var(--glass-border);
        border-radius: 16px;

        background: var(--mobile-nav-bg);
        backdrop-filter: blur(18px);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition:
            opacity .25s var(--ease),
            transform .25s var(--ease),
            visibility .25s;
    }

    .navbar nav.nav-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar nav a {
        padding: 10px 8px;

        border-radius: 8px;
    }

    .navbar nav a:hover {
        background: var(--mobile-nav-hover);
    }

    .hero-content {
        grid-template-columns: 1fr;

        padding-top: 70px;
        padding-bottom: 80px;
    }

    .hero-copy {
        text-align: center;
    }

    .eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-3d-node {
        width: 106px;

        padding: 8px 9px;
    }

    .hero-3d-node strong {
        font-size: 11px;
    }

    .hero-3d-node small {
        font-size: 8px;
    }

    .hero-3d-ai-label {
        font-size: 34px;
    }

    .hero-3d-card {
        display: none;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 650px) {

    .navbar {
        width: calc(100% - 28px);
    }

    .brand-logo {
        height: 68px;
    }

    .nav-cta {
        padding: 8px 12px;
    }

    .hero-content {
        width: calc(100% - 28px);
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-copy > p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-3d-stage,
    .hero-3d-overlay {
        width: min(100%, 300px);
    }

    .hero-3d-node {
        width: 82px;

        padding: 6px 7px;
        gap: 2px;

        border-radius: 10px;
    }

    .hero-3d-node-icon {
        width: 18px;
        height: 18px;
    }

    .hero-3d-node strong {
        font-size: 9px;
    }

    .hero-3d-node small {
        display: none;
    }

    .node-ads {
        left: -2%;
    }

    .node-seo {
        right: -2%;
    }

    .hero-3d-ai-label {
        font-size: 26px;
    }

    .services-section {
        padding: 90px 0;
    }

    .services-page-section {
        padding-top: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;

        padding: 20px;
    }

    .about-section {
        padding: 90px 0;
    }

    .about-page-section {
        padding-top: 40px;
    }

    .contact-section {
        padding-bottom: 80px;
    }

    .contact-card {
        padding: 55px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
        gap: 14px;
    }

    .about-mv {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 15px;

        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .network-svg {
        opacity: .12;
    }

    .gradient-orb {
        width: 280px;
        height: 280px;

        filter: blur(80px);
    }

}


/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 500;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25D366;

    box-shadow: 0 10px 30px rgba(37,211,102,.45);

    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.whatsapp-float::before {
    content: "";

    position: absolute;
    inset: -6px;

    border-radius: 50%;

    border: 2px solid rgba(37,211,102,.5);

    animation: whatsappPulse 2.2s ease-out infinite;
}

.whatsapp-float svg {
    position: relative;
    z-index: 1;

    width: 30px;
    height: 30px;

    fill: #ffffff;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 14px 36px rgba(37,211,102,.55);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@media (max-width: 650px) {

    .whatsapp-float {
        right: 16px;
        bottom: 78px;

        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }

}


/* =====================================================
   CHATBOT
===================================================== */

.chatbot-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 500;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: linear-gradient(140deg, var(--primary), var(--blue));

    box-shadow: 0 10px 30px rgba(0,102,255,.45);

    cursor: pointer;

    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.chatbot-float:hover {
    transform: translateY(-4px) scale(1.05);

    box-shadow: 0 14px 36px rgba(0,102,255,.55);
}

.chatbot-float svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chatbot-float .icon-close {
    display: none;
}

.chatbot-float.is-open .icon-chat {
    display: none;
}

.chatbot-float.is-open .icon-close {
    display: block;
}


.chatbot-window {
    position: fixed;
    right: 24px;
    bottom: 94px;
    z-index: 499;

    display: flex;
    flex-direction: column;

    width: min(360px, calc(100vw - 48px));
    height: min(520px, calc(100vh - 160px));

    border: 1px solid var(--glass-border);
    border-radius: 20px;

    background: var(--bg-soft);

    box-shadow: 0 30px 70px rgba(0,0,0,.35);

    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(.97);
    transform-origin: bottom right;

    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}

.chatbot-window.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 18px;

    background: linear-gradient(100deg, var(--primary), var(--blue));

    color: #ffffff;
}

.chatbot-header-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: rgba(255,255,255,.2);

    font-size: 16px;
}

.chatbot-header strong {
    display: block;

    font-family: var(--font-heading);
    font-size: 14px;
}

.chatbot-header small {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-top: 2px;

    font-size: 11px;
    opacity: .9;
}

.chatbot-header small::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #3CE080;
}

.chatbot-messages {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 16px;

    overflow-y: auto;
}

.chat-msg {
    max-width: 85%;

    padding: 10px 13px;

    border-radius: 14px;

    font-size: 13px;
    line-height: 1.55;
}

.chat-msg.from-bot {
    align-self: flex-start;
    border-bottom-left-radius: 4px;

    background: var(--glass);
    border: 1px solid var(--glass-border);

    color: var(--text);
}

.chat-msg.from-user {
    align-self: flex-end;
    border-bottom-right-radius: 4px;

    background: linear-gradient(100deg, var(--primary), var(--blue));

    color: #ffffff;
}

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    padding: 0 16px 12px;
}

.chat-quick-btn {
    padding: 7px 13px;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    background: var(--glass);

    color: var(--text);

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.chat-quick-btn:hover {
    border-color: rgba(0,209,255,.5);
    color: var(--blue);
}

.chatbot-input-row {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px;

    border-top: 1px solid var(--glass-border);
}

.chatbot-input-row input {
    flex: 1;

    padding: 10px 14px;

    border: 1px solid var(--glass-border);
    border-radius: 50px;

    background: var(--glass);

    color: var(--text);

    font-family: var(--font-body);
    font-size: 13px;
}

.chatbot-input-row input::placeholder {
    color: var(--text-muted);
}

.chatbot-input-row input:focus {
    outline: none;
    border-color: rgba(0,209,255,.5);
}

.chatbot-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border: none;
    border-radius: 50%;

    background: linear-gradient(140deg, var(--primary), var(--blue));

    cursor: pointer;

    transition: transform .2s ease;
}

.chatbot-send-btn:hover {
    transform: scale(1.08);
}

.chatbot-send-btn svg {
    width: 16px;
    height: 16px;

    fill: #ffffff;
}

@media (max-width: 650px) {

    .chatbot-float {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;
    }

    .chatbot-window {
        right: 16px;
        bottom: 78px;
    }

}


/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .intro-screen {
        animation: none !important;
    }

    .network-lines path,
    .gradient-orb,
    .whatsapp-float::before,
    .hero-icon-badge,
    .hero-tag-badge {
        animation: none !important;
    }

}