:root {
    --bg: #080b12;
    --panel: #101622;
    --panel-strong: #151d2b;
    --text: #f7fbff;
    --muted: #9ba8ba;
    --line: rgba(255, 255, 255, 0.12);
    --cyan: #53d6ff;
    --green: #67f0b1;
    --coral: #ff8f70;
    --white-soft: rgba(255, 255, 255, 0.78);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(83, 214, 255, 0.18), transparent 28rem),
        radial-gradient(circle at 82% 12%, rgba(103, 240, 177, 0.13), transparent 24rem),
        linear-gradient(180deg, #080b12 0%, #0a111b 48%, #071019 100%);
    letter-spacing: 0;
    overflow-x: clip;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0;
    backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.nav-cta {
    border: 1px solid var(--line);
    background: rgba(8, 11, 18, 0.62);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 44px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #061018;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    font-size: 0.78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 44px;
    padding: 0.25rem;
    border-radius: 999px;
}

.main-nav a {
    padding: 0.6rem 0.9rem;
    color: var(--muted);
    border-radius: 999px;
    transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1rem;
    border-radius: 999px;
    color: #071018;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    font-weight: 800;
}

.section-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: 3rem 0 5rem;
}

.eyebrow {
    width: fit-content;
    margin: 0 0 1rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(83, 214, 255, 0.28);
    border-radius: 999px;
    color: var(--green);
    background: rgba(83, 214, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-section h2 {
    margin: 0;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 690px;
    font-size: clamp(3rem, 5.1vw, 4.7rem);
    line-height: 1.02;
    text-wrap: balance;
}

.hero-text {
    max-width: 600px;
    margin: 1.3rem 0 0;
    color: var(--white-soft);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 52px;
    padding: 0 1.1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #061018;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 16px 36px rgba(83, 214, 255, 0.18);
}

.button-secondary {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.07);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.hero-proof div,
.service-card,
.price-card,
.timeline-item,
.cta-section {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
}

.hero-proof div {
    padding: 1rem;
    border-radius: 18px;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    font-size: 1.08rem;
}

.hero-proof span {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

.hero-visual {
    position: relative;
    isolation: isolate;
    animation: floatIn 900ms ease both;
}

.hero-visual img {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    box-shadow: 0 34px 120px rgba(0, 0, 0, 0.5);
    animation: imageFloat 6s ease-in-out infinite;
}

.glow-orbit {
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    filter: blur(0.5px);
    opacity: 0.82;
}

.orbit-one {
    inset: -20px auto auto -10px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(103, 240, 177, 0.42);
    animation: rotateDrift 13s linear infinite;
}

.orbit-two {
    right: -18px;
    bottom: 12%;
    width: 86px;
    height: 86px;
    border: 1px solid rgba(255, 143, 112, 0.5);
    animation: rotateDrift 10s linear infinite reverse;
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 140px;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(7, 12, 20, 0.76);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    animation: cardPulse 5s ease-in-out infinite;
}

.floating-card span,
.floating-card strong {
    display: block;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.78rem;
}

.floating-card strong {
    margin-top: 0.35rem;
    font-size: 1.35rem;
}

.card-top {
    top: 9%;
    left: -7%;
}

.card-bottom {
    right: -5%;
    bottom: 8%;
    animation-delay: 900ms;
}

.service-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    align-items: center;
    margin-top: -1.1rem;
    padding: 1rem 1.1rem 1.1rem;
    border: 1px solid rgba(83, 214, 255, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(circle at 0% 0%, rgba(83, 214, 255, 0.16), transparent 20rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow);
}

.service-strip-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: center;
    width: min(520px, 100%);
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 11, 18, 0.58);
    text-align: center;
}

.service-strip-heading span {
    color: var(--green);
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
}

.service-strip-heading strong {
    max-width: 390px;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1.1;
}

.service-pill-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.service-pill-grid a {
    display: grid;
    place-items: center;
    min-height: 86px;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-pill-grid a:hover {
    transform: translateY(-4px);
    border-color: rgba(103, 240, 177, 0.36);
    background: rgba(83, 214, 255, 0.09);
}

.service-pill-grid strong {
    color: var(--text);
    max-width: 9rem;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.08;
}

.section-block {
    padding: 6rem 0;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2,
.cta-section h2 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.section-heading p:not(.eyebrow),
.cta-section p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.service-grid,
.pricing-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.service-grid {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.price-card {
    min-height: 260px;
    padding: 1.2rem;
    border-radius: 24px;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(83, 214, 255, 0.32);
    background: linear-gradient(180deg, rgba(83, 214, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.service-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #061018;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    font-weight: 900;
}

.service-card h3,
.price-card h3,
.timeline-item h3 {
    margin: 1rem 0 0.6rem;
    font-size: 1.25rem;
}

.service-card p,
.price-card p,
.timeline-item p,
.price-card li {
    color: var(--muted);
    line-height: 1.6;
}

.process-band {
    padding: 6rem 0;
    background:
        linear-gradient(90deg, rgba(83, 214, 255, 0.1), rgba(103, 240, 177, 0.04)),
        rgba(255, 255, 255, 0.025);
    border-block: 1px solid var(--line);
}

.process-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    align-items: start;
}

.timeline {
    display: grid;
    gap: 0.85rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border-radius: 22px;
}

.timeline-item span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #061018;
    background: var(--coral);
    font-weight: 900;
}

.timeline-item h3,
.timeline-item p {
    margin-top: 0;
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.price-card {
    position: relative;
}

.price-card strong {
    display: block;
    margin: 1.2rem 0;
    font-size: 2rem;
}

.price-card ul {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding-left: 1.1rem;
}

.featured {
    border-color: rgba(103, 240, 177, 0.34);
    background: linear-gradient(180deg, rgba(103, 240, 177, 0.13), rgba(255, 255, 255, 0.05));
}

.badge {
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    color: #061018;
    background: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
}

.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
    padding: clamp(1.4rem, 4vw, 3rem);
    border-radius: 30px;
    background:
        radial-gradient(circle at 20% 0%, rgba(83, 214, 255, 0.2), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 3rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer div,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
}

.site-footer div {
    flex-direction: column;
    gap: 0.35rem;
}

.site-footer span:first-child {
    color: var(--text);
    font-weight: 850;
}

.footer-links a {
    color: var(--muted);
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--text);
}

.legal-hero {
    padding: 5rem 0 2rem;
}

.legal-hero h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 5.4rem);
    line-height: 1;
    letter-spacing: 0;
}

.legal-hero p:last-child {
    color: var(--muted);
}

.legal-content {
    max-width: 860px;
    margin-bottom: 5rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
}

.legal-content h2 {
    margin: 2rem 0 0.65rem;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin: 0 0 1rem;
    color: var(--white-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 30;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(103, 240, 177, 0.42);
    border-radius: 50%;
    color: #061018;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 18px 44px rgba(83, 214, 255, 0.22);
    font-weight: 950;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 24px 54px rgba(83, 214, 255, 0.28);
}

.reveal {
    animation: revealUp 740ms ease both;
}

.delay-1 {
    animation-delay: 120ms;
}

.delay-2 {
    animation-delay: 240ms;
}

.delay-3 {
    animation-delay: 360ms;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(0.7deg);
    }
}

@keyframes cardPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateDrift {
    from {
        transform: rotate(0deg) translateX(10px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(10px) rotate(-360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 980px) {
    .site-header {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        overflow-x: auto;
    }

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

    .hero {
        min-height: auto;
        padding-top: 3rem;
    }

    .hero h1 {
        max-width: 860px;
        font-size: clamp(3.2rem, 10vw, 5.6rem);
    }

    .hero-visual {
        max-width: 680px;
        margin: 0 auto;
    }

    .service-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-strip {
        grid-template-columns: 1fr;
    }

    .service-pill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .brand span:last-child {
        display: none;
    }

    .nav-cta {
        min-width: 96px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13.5vw, 4rem);
    }

    .hero-proof,
    .service-pill-grid,
    .service-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-strip {
        margin-top: 1rem;
        padding: 0.75rem;
        border-radius: 22px;
    }

    .service-strip-heading,
    .service-pill-grid a {
        border-radius: 18px;
    }

    .service-pill-grid a {
        min-height: 72px;
        padding: 0.85rem;
    }

    .floating-card {
        position: static;
        display: inline-block;
        margin: 0.8rem 0.4rem 0 0;
    }

    .glow-orbit {
        display: none;
    }

    .cta-section,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
    }

    .whatsapp-float {
        display: none;
    }
}
