:root {
    --hero-layout-max: min(1240px, var(--tc-shell-max));
    --hero-layout-gap: 32px;
    --hero-top-max: 600px;

    --hero-title-size: 64px;
    --hero-title-line: 0.90;
    --hero-title-spacing: -2px;

    --hero-subtitle-size: 17px;
    --hero-subtitle-line: 1.65;
    --hero-subtitle-max: 560px;

    --hero-phone-w: 300px;
    --hero-phone-h: 575px;
    --hero-anchor-w: 350px;
    --hero-anchor-h: 650px;
    --hero-visual-min-h: 560px;

    --hero-btn-py: 14px;
    --hero-btn-px: 30px;
    --hero-btn-radius: 48px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--text-main);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-deep) 100%);
}

.hero-background-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-background-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(125, 83, 235, 0.16), transparent 25%),
        radial-gradient(circle at 82% 26%, rgba(198, 255, 51, 0.12), transparent 25%),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.72) 34%,
            rgba(0, 0, 0, 0.52) 58%,
            rgba(0, 0, 0, 0.35) 100%
        );
}
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.45;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

.hero-bg-glow-violet {
    top: 10%;
    right: 8%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(125, 83, 235, 0.24) 0%, transparent 65%);
}

.hero-bg-glow-lime {
    left: -6%;
    bottom: 8%;
    width: 34vw;
    height: 34vw;
    background: radial-gradient(circle, rgba(198, 255, 51, 0.18) 0%, transparent 68%);
    animation-delay: 1.2s;
}

.doodle-svg {
    position: absolute;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.doodle-1 {
    top: 14%;
    right: 12%;
    width: 150px;
    stroke: var(--violet);
    transform: rotate(-15deg);
}

.doodle-2 {
    bottom: 24%;
    right: 6%;
    width: 200px;
    stroke: var(--lime);
    transform: rotate(10deg);
}

.draw-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: doodleDraw 4s ease-in-out infinite alternate;
}

.app-container {
    position: relative;
    z-index: 70;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding:clamp(74.9px, 4.062vw, 104px) 32px clamp(122.4px, 6.641vw, 170px);
    pointer-events: none;
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.hero-layout {
    width: 100%;
    max-width: var(--hero-layout-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--hero-phone-w);
    align-items: center;
    gap: var(--hero-layout-gap);
}

.hero-top {
    position: relative;
    z-index: 3;
    max-width: var(--hero-top-max);
    pointer-events: auto;
}

.hero-title {
    font-size: var(--hero-title-size);
    font-weight: 900;
    line-height: var(--hero-title-line);
    letter-spacing: var(--hero-title-spacing);
    margin-bottom: 18px;
    text-transform: uppercase;
    color: var(--white);
}

.hero-outline {
    display: block;
    color: #ffffff;
    filter: url(#hero-true-outline);
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: var(--hero-title-spacing);
    transform: translateZ(0);
}

.hero-accent {
    color: var(--lime);
    display: inline-block;
}

.subtitle {
    color: #ffffff;
    font-size: var(--hero-subtitle-size);
    max-width: var(--hero-subtitle-max);
    line-height: var(--hero-subtitle-line);
    margin-bottom: 28px;
    font-weight: 400;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--lime);
    color: var(--dark-deep);
    padding: var(--hero-btn-py) var(--hero-btn-px);
    border-radius: var(--hero-btn-radius);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(198, 255, 51, 0.2);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.hero-cta-arrow {
    display: inline-block;
    margin-left: 6px;
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    line-height: 1;
    transform: translateY(-0.02em);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.32) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(198, 255, 51, 0.28);
    background: #d7ff5b;
}

.btn-primary:hover::before {
    left: 110%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    opacity: 0.85;
    transition: 0.3s;
    background: transparent;
    border: none;
    padding: 0;
}

.btn-secondary:hover {
    opacity: 1;
    color: var(--lime);
}

.hero-visual {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: var(--hero-visual-min-h);
}

.hero-phone-anchor {
    position: relative;
    width: var(--hero-anchor-w);
    height: var(--hero-anchor-h);
    z-index: 90;
}

.floating-label {
    position: absolute;
    padding: 12px 18px;
    background: rgba(15, 18, 25, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(198, 255, 51, 0.4);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    z-index: 120;
    white-space: nowrap;
    animation: floatTag 4.2s ease-in-out infinite;
}

.floating-label.one {
    top: 70px;
    left: -110px;
    --rot: -5deg;
    border-radius: 16px 16px 4px 16px;
}

.floating-label.two {
    right: -120px;
    top: 210px;
    --rot: 4deg;
    border-radius: 16px 16px 16px 4px;
    border-color: rgba(125, 83, 235, 0.5);
}

.floating-label.two i {
    color: #7D53EB;
}

.floating-label.three {
    left: -100px;
    bottom: 140px;
    --rot: -3deg;
    border-radius: 16px 16px 4px 16px;
}

.floating-label i {
    color: var(--lime);
    margin-right: 8px;
    font-size: 14px;
}

.global-phone-layer {
    position: fixed;
    inset: 0;
    z-index: 60;
    pointer-events: none;
}

.global-phone-wrap {
    position: absolute;
    width: var(--hero-phone-w);
    height: var(--hero-phone-h);
    will-change: transform, left, top, opacity;
    pointer-events: auto;
    opacity: 0;
}

.phone-shell {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 38px;
    padding: 11px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
        linear-gradient(180deg, #0b0c10 0%, #050507 100%);
    box-shadow:
        0 36px 80px rgba(0,0,0,0.42),
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transform: perspective(1200px) rotateY(-10deg) rotateX(4deg);
    overflow: visible;
}

.phone-shell::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 108px;
    height: 26px;
    background: #050507;
    border-radius: 0 0 16px 16px;
    z-index: 5;
}

.phone-side-buttons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 20;
}

.phone-btn {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: linear-gradient(180deg, #1a1b20 0%, #050507 100%);
    box-shadow:
        inset 1px 0 0 rgba(255,255,255,0.06),
        inset -1px 0 0 rgba(0,0,0,0.55),
        0 2px 6px rgba(0,0,0,0.35);
}

.phone-btn-volume-up {
    left: -3px;
    top: 138px;
    width: 6px;
    height: 62px;
}

.phone-btn-volume-down {
    left: -3px;
    top: 214px;
    width: 6px;
    height: 62px;
}

.phone-btn-power {
    right: -3px;
    top: 168px;
    width: 6px;
    height: 84px;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(198,255,51,0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(125,83,235,0.14), transparent 30%),
        linear-gradient(180deg, #0f131a 0%, #121823 100%);
    border: 1px solid rgba(255,255,255,0.06);
}

.phone-topbar {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.phone-status {
    display: flex;
    gap: 6px;
}

.phone-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.75);
}

.phone-carousel {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 28px;
}

.phone-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.phone-card {
    position: relative;
    height: 100%;
    min-height: 100%;
    flex: 0 0 100%;
    overflow: hidden;
    padding: 20px;
    display: flex;
    align-items: flex-end;
}

.phone-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.phone-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.20) 40%, rgba(0,0,0,0.68) 100%);
    z-index: 1;
}

.mobile-phone-service-card {
    display: none;
}

.phone-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    padding-bottom: 76px;
}

.phone-card-copy h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 7px;
}

.phone-card-copy p {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
    max-width: 190px;
}

.play-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.18);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.08);
    background: rgba(198,255,51,0.24);
}

.hero-phone-placeholder {
    width: var(--hero-phone-w);
    height: var(--hero-phone-h);
    border-radius: 38px;
    opacity: 0;
    pointer-events: none;
}

.liquid-divider {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 180px;
    z-index: 4;
    pointer-events: none;
}

.liquid-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.liquid-divider svg path {
    fill: var(--white);
}

.cards-section {
    position: relative;
    background: #fff;
    padding: 72px 32px 0;
}

.services-scroll-section {
    position: relative;
    background:
        radial-gradient(circle at 20% 20%, rgba(198,255,51,0.10), transparent 24%),
        radial-gradient(circle at 80% 30%, rgba(125,83,235,0.10), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
    overflow: hidden;
}

.services-stage {
    position: relative;
    z-index: 2;
    min-height: auto;
    padding-bottom:clamp(108px, 5.859vw, 150px);
    max-width: min(1240px, var(--tc-shell-max));
    margin: 0 auto;
}

.services-intro {
    max-width: 760px;
    margin: 0 auto;
    padding: 10px 20px 16px;
    text-align: center;
}

.services-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 15px;
    border-radius: 999px;
    background: #111218;
    color: #C6FF33;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.services-intro h2 {
    font-family: var(--font-heading);
    font-size:clamp(39px, 2.031vw, 52px);
    line-height: 0.95;
    letter-spacing: -1.7px;
    font-weight: 900;
    color: #101114;
    margin-bottom: 14px;
}

.services-intro p {
    max-width: 620px;
    margin: 0 auto;
    color: #5f6470;
    font-size: 16px;
    line-height: 1.7;
}

.services-cards-layer {
    position: sticky;
    top: 0;
    height: 560px;
    pointer-events: none;
}

.service-card {
    position: absolute;
    top: 42%;
    z-index: 10;
    width: 300px;
    opacity: 0;
    will-change: transform, opacity;
    transition:
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.6s ease;
}

.service-card-inner {
    position: relative;
    border-radius: 28px;
    padding: 30px 24px;
    min-height: 200px;
    overflow: visible;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(198, 255, 51, 0.3);

    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);

    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.service-card:hover .service-card-inner {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(198, 255, 51, 0.8);
    box-shadow:
        0 35px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 20px rgba(198, 255, 51, 0.2);
}

.service-icon {
    position: absolute;
    top: -24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;

    background: linear-gradient(135deg, #C6FF33 0%, #a2e600 100%);
    color: #0b0c0f;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(198, 255, 51, 0.3);
    z-index: 2;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-10deg) scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    color: #111218;
    font-size: 24px;
    font-weight: 800;
    margin-top: 24px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.service-card p {
    color: #000000;
    line-height: 1.65;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
}

.service-card-left-top {
    left: 6%;
    transform: translate3d(90px, -200px, 0) scale(0.88);
}

.service-card-left-bottom {
    left: 8%;
    transform: translate3d(90px, 180px, 0) scale(0.88);
}

.service-card-right-top {
    right: 6%;
    transform: translate3d(-90px, -200px, 0) scale(0.88);
}

.service-card-right-bottom {
    right: 8%;
    transform: translate3d(-90px, 180px, 0) scale(0.88);
}

.service-card.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.service-card-left-top.is-visible {
    transform: translate3d(0, -200px, 0) scale(1);
}

.service-card-left-bottom.is-visible {
    transform: translate3d(0, 180px, 0) scale(1);
}

.service-card-right-top.is-visible {
    transform: translate3d(0, -200px, 0) scale(1);
}

.service-card-right-bottom.is-visible {
    transform: translate3d(0, 180px, 0) scale(1);
}

.services-bottom-space {
    height: 0;
}

.marker-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.marker-doodle {
    position: absolute;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.marker-doodle path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawMarkerFade 7s ease-in-out infinite;
}

.marker-doodle.green {
    stroke: var(--lime);
    stroke-width: 8;
}

.marker-1 {
    top: 5%;
    left: -10%;
    width: 500px;
    transform: rotate(-12deg);
    opacity: 0.5;
}

.marker-1 path { animation-delay: 0s; }

.marker-2 {
    top: 40%;
    right: -5%;
    width: 200px;
    transform: rotate(20deg);
    opacity: 0.3;
}

.marker-2 path { animation-delay: 1.5s; }

.marker-3 {
    bottom: 2%;
    left: 15%;
    width: 350px;
    transform: rotate(10deg);
    opacity: 0.45;
}

.marker-3 path { animation-delay: 3s; }

.marker-4 {
    top: 25%;
    left: 40%;
    width: 150px;
    transform: rotate(-15deg);
    opacity: 0.25;
}

.marker-4 path { animation-delay: 4.5s; }

.marker-5 {
    bottom: 30%;
    right: 35%;
    width: 180px;
    transform: rotate(25deg);
    opacity: 0.35;
}

.marker-5 path { animation-delay: 6s; }

.brands-wave-divider {
    position: relative;
    width: 100vw;
    height: 120px;
    line-height: 0;
    z-index: 2;
    margin-top: -1px;
    margin-bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.brands-wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.brands-wave-divider svg path {
    fill: #0b0c10;
}

@keyframes drawMarkerFade {
    0% { stroke-dashoffset: 1500; opacity: 0; }
    15% { opacity: 1; }
    40% { stroke-dashoffset: 0; opacity: 1; }
    70% { stroke-dashoffset: 0; opacity: 1; }
    90% { stroke-dashoffset: 0; opacity: 0; }
    100% { stroke-dashoffset: 1500; opacity: 0; }
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.08); opacity: 0.5; }
}

@keyframes doodleDraw {
    0% { stroke-dashoffset: 600; opacity: 0.3; }
    100% { stroke-dashoffset: 0; opacity: 0.8; }
}

@keyframes floatTag {
    0% { transform: translateY(0px) rotate(var(--rot)); }
    50% { transform: translateY(-10px) rotate(var(--rot)); }
    100% { transform: translateY(0px) rotate(var(--rot)); }
}

@media (min-width: 2200px) {
    .hero-section {
        --hero-layout-max: 1380px;
        --hero-layout-gap: 40px;
        --hero-top-max: 720px;
        --hero-title-size: 82px;
        --hero-subtitle-size: 18px;
        --hero-subtitle-max: 620px;
        --hero-phone-w: 360px;
        --hero-phone-h: 690px;
        --hero-anchor-w: 420px;
        --hero-anchor-h: 780px;
        --hero-visual-min-h: 660px;
    }

    .app-container {
        padding: 120px 40px 190px;
    }

    .hero-main {
        margin-top: 28px;
    }
}

@media (max-width: 1599px) {
    .hero-section {
        --hero-layout-max: min(1080px, var(--tc-shell-max));
        --hero-top-max: 480px;
        --hero-title-size: 52px;
        --hero-subtitle-size: 16px;
        --hero-subtitle-max: 520px;
        --hero-phone-w: 280px;
        --hero-phone-h: 536px;
        --hero-anchor-w: 322px;
        --hero-anchor-h: 610px;
        --hero-visual-min-h: 420px;
    }

    .app-container {
        padding: 96px 28px 150px;
    }

    .floating-label.one {
        left: -80px;
    }

    .floating-label.two {
        right: -90px;
    }

    .floating-label.three {
        left: -70px;
    }

    .services-intro h2 {
        font-size: 44px;
        font-weight: 900;
    }

    .services-cards-layer {
        height: 520px;
    }

    .service-card {
        width: 270px;
    }
}

@media (max-width: 1399px) {
    .hero-section {
        --hero-layout-max: min(900px, var(--tc-shell-max));
        --hero-layout-gap: 24px;
        --hero-top-max: 540px;
        --hero-title-size: 44px;
        --hero-subtitle-size: 15px;
        --hero-subtitle-max: 500px;
        --hero-phone-w: 250px;
        --hero-phone-h: 480px;
        --hero-anchor-w: 290px;
        --hero-anchor-h: 545px;
        --hero-visual-min-h: 450px;
        --hero-btn-py: 13px;
        --hero-btn-px: 24px;
    }

    .phone-card-copy h4 {
        font-size: 20px;
    }

    .phone-card-copy p {
        font-size: 11px;
        max-width: 165px;
    }

    .play-btn {
        width: 46px;
        height: 46px;
    }

    .floating-label {
        font-size: 10px;
        padding: 8px 11px;
    }

    .floating-label.one {
        left: -60px;
    }

    .floating-label.two {
        right: -70px;
    }

    .floating-label.three {
        left: -50px;
    }

    .services-intro h2 {
        font-size: 38px;
        font-weight: 900;
    }

    .services-intro p {
        font-size: 15px;
    }

    .service-card {
        width: 250px;
    }

    .service-card-left-top {
        transform: translate3d(70px, -180px, 0) scale(0.9);
    }

    .service-card-left-bottom {
        transform: translate3d(70px, 160px, 0) scale(0.9);
    }

    .service-card-right-top {
        transform: translate3d(-70px, -180px, 0) scale(0.9);
    }

    .service-card-right-bottom {
        transform: translate3d(-70px, 160px, 0) scale(0.9);
    }

    .service-card-left-top.is-visible {
        transform: translate3d(0, -180px, 0) scale(1);
    }

    .service-card-left-bottom.is-visible {
        transform: translate3d(0, 160px, 0) scale(1);
    }

    .service-card-right-top.is-visible {
        transform: translate3d(0, -180px, 0) scale(1);
    }

    .service-card-right-bottom.is-visible {
        transform: translate3d(0, 160px, 0) scale(1);
    }
}

@media (max-width: 1199px) {
    .hero-section {
        --hero-layout-max: min(720px, var(--tc-shell-max));
        --hero-layout-gap: 28px;
        --hero-top-max: 100%;
        --hero-title-size: 40px;
        --hero-subtitle-size: 15px;
        --hero-subtitle-max: 100%;
        --hero-phone-w: 235px;
        --hero-phone-h: 452px;
        --hero-anchor-w: 274px;
        --hero-anchor-h: 520px;
        --hero-visual-min-h: 500px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-top {
        max-width: 100%;
    }

    .hero-visual {
        justify-content: center;
    }

    .floating-label.one { left: -40px; }
    .floating-label.two { right: -50px; }
    .floating-label.three { left: -30px; }

    .services-stage {
        padding-bottom: 120px;
    }

    .service-card {
        width: 240px;
    }
}

@media (max-width: 1024px) {
    .liquid-divider {
        height: 140px;
    }

    .services-intro h2 {
        font-size: 34px;
        font-weight: 900;
    }
}

@media (max-width: 980px) {
    .global-phone-layer {
        display: none;
    }

    .hero-phone-placeholder,
    .hero-visual {
        display: none;
    }

    .services-stage {
        min-height: auto;
        padding-bottom: 76px;
    }

    .global-phone-wrap.is-mobile-mounted {
        position: relative;
        inset: auto;
        display: block;
        width: min(78vw, 310px);
        height: min(149vw, 592px);
        margin: 34px auto 0;
        opacity: 1 !important;
        pointer-events: auto;
        will-change: auto;
        z-index: 4;
    }

    .global-phone-wrap.is-mobile-mounted .phone-shell {
        transform: none !important;
        background: transparent;
        box-shadow:
            inset 0 0 0 11px #050507,
            0 36px 80px rgba(0,0,0,0.30),
            0 0 0 1px rgba(255,255,255,0.08);
    }

    .global-phone-wrap.is-mobile-mounted .phone-screen {
        background: transparent !important;
        border-color: transparent;
        box-shadow: none;
    }

    .global-phone-wrap.is-mobile-mounted .phone-carousel,
    .global-phone-wrap.is-mobile-mounted .phone-track,
    .global-phone-wrap.is-mobile-mounted .phone-card {
        background: transparent !important;
    }

    .global-phone-wrap.is-mobile-mounted .phone-card-video,
    .global-phone-wrap.is-mobile-mounted .phone-card-content {
        display: none;
    }

    .global-phone-wrap.is-mobile-mounted .phone-card {
        align-items: center;
        justify-content: center;
        padding: 24px;
    }

    .global-phone-wrap.is-mobile-mounted .mobile-phone-service-card {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 260px;
        padding: 30px 24px 26px;
        border-radius: 28px;
        background: rgba(255,255,255,0.96);
        border: 1px solid rgba(198,255,51,0.35);
        box-shadow:
            0 24px 50px rgba(0,0,0,0.14),
            inset 0 0 0 1px rgba(255,255,255,0.7);
    }

    .global-phone-wrap.is-mobile-mounted .mobile-phone-service-card .service-icon {
        position: relative;
        top: auto;
        left: auto;
        width: 56px;
        height: 56px;
        margin: 0 0 24px;
        border-radius: 18px;
        display: inline-flex;
        flex: 0 0 auto;
    }

    .global-phone-wrap.is-mobile-mounted .mobile-phone-service-card h4 {
        min-height: 50px;
        margin: 0 0 12px;
        display: flex;
        align-items: flex-end;
        color: #111218;
        font-family: var(--font-heading);
        font-size: 22px;
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: -0.5px;
    }

    .global-phone-wrap.is-mobile-mounted .mobile-phone-service-card p {
        min-height: 84px;
        margin: 0;
        color: #000000;
        font-size: 13px;
        line-height: 1.6;
    }

    .global-phone-wrap.is-mobile-mounted .phone-screen {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }

    .global-phone-wrap.is-mobile-mounted .phone-carousel,
    .global-phone-wrap.is-mobile-mounted .phone-track,
    .global-phone-wrap.is-mobile-mounted .phone-card {
        background: transparent;
    }

    .global-phone-wrap.is-mobile-mounted .phone-card::before {
        display: none;
    }

    .global-phone-wrap.is-mobile-mounted .phone-status span {
        background: rgba(17,18,24,0.55);
    }

    .services-cards-layer,
    .services-bottom-space {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        --hero-title-size: 40px;
        --hero-title-line: 0.96;
        --hero-title-spacing: -1px;
        --hero-subtitle-size: 15px;
        --hero-btn-py: 13px;
        --hero-btn-px: 20px;
    }

    .app-container {
        padding: 150px 18px 72px;
    }

    .hero-main {
        margin-top: 0;
        align-items: flex-start;
    }

    .hero-layout {
        gap: 22px;
    }

    .cta-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .floating-label {
        display: none;
    }

    .cards-section {
        padding: 50px 18px 0;
    }

    .liquid-divider {
        height: 120px;
    }

    .doodle-1,
    .doodle-2 {
        opacity: 0.35;
    }

    .services-intro {
        padding: 0 0 14px;
    }

    .services-intro h2 {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        font-size: 36px;
        line-height: 1.02;
        letter-spacing: -1.3px;
        font-weight: 900;
        text-wrap: balance;
    }

    .services-intro p {
        font-size: 14px;
    }

}

@media (max-width: 480px) {
    .hero-section {
        --hero-title-size: 34px;
        --hero-subtitle-size: 14px;
    }

    .app-container {
        padding: 132px 16px 58px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 13px;
    }

    .services-intro h2 {
        font-size: 33px;
        line-height: 1.03;
        letter-spacing: -1.15px;
        font-weight: 900;
    }

    .global-phone-wrap.is-mobile-mounted {
        width: min(82vw, 292px);
        height: min(157vw, 558px);
    }

    .global-phone-wrap.is-mobile-mounted .mobile-phone-service-card {
        min-height: 238px;
        padding: 26px 20px 22px;
    }

    .global-phone-wrap.is-mobile-mounted .mobile-phone-service-card h4 {
        min-height: 46px;
        font-size: 19px;
    }

    .global-phone-wrap.is-mobile-mounted .mobile-phone-service-card p {
        min-height: 80px;
        font-size: 12px;
    }

}

.tc-inline-d9c63df2476c {
    width:0;height:0;position:absolute;
}
.tc-inline-9d63deea1320 {
    margin-left: 10px;
}
