:root {
    --color-primary: #1A2B3E;
    --color-accent: #78EAFF;
    --color-muted: #AEB8C5;
    --color-white: #ffffff;
    --color-soft: #F5F8FB;
    --color-ink: #162231;
    --color-text: #4B5B6D;
    --shadow-soft: 0 24px 60px rgba(26, 43, 62, 0.14);
    --shadow-card: 0 18px 40px rgba(26, 43, 62, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--color-ink);
    background: var(--color-white);
    line-height: 1.6;
}

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

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

p {
    color: var(--color-text);
    margin: 0 0 1rem;
}

h1, h2, h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(2.7rem, 6vw, 5.7rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: 1.25rem;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.narrow {
    max-width: 840px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 999;
}

.skip-link:focus {
    left: 12px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(174, 184, 197, 0.35);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(26, 43, 62, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-logo {
    height: 90px;
    width: auto;
    max-width: 110px;
}

.brand-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-accent), #ffffff);
    box-shadow: 0 12px 26px rgba(120, 234, 255, 0.24);
    font-size: 0.95rem;
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    color: var(--color-primary);
    letter-spacing: 0.08em;
}

.brand-text small {
    color: var(--color-text);
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
    background: rgba(120, 234, 255, 0.16);
}

.main-nav .nav-cta {
    background: var(--color-primary);
    color: var(--color-white);
    margin-left: 8px;
}

.main-nav .nav-cta:hover {
    background: #0F1D2B;
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: var(--color-primary);
    border-radius: 14px;
    padding: 11px;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--color-white);
    margin: 5px 0;
    border-radius: 999px;
}

.section {
    padding: 96px 0;
}

.section-light {
    background: var(--color-soft);
}

.section-dark {
    color: var(--color-white);
    background:
        radial-gradient(circle at top right, rgba(120, 234, 255, 0.35), transparent 36%),
        linear-gradient(135deg, var(--color-primary), #0E1824 70%);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.78);
}

.hero {
    padding: 112px 0 96px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 56px;
    align-items: center;
}

.hero-lead {
    max-width: 720px;
    font-size: 1.18rem;
    margin-top: 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.eyebrow.dark {
    color: var(--color-primary);
}

.hero-actions,
.centered {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 14px 36px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

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

.btn-accent {
    background: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 16px 30px rgba(120, 234, 255, 0.22);

    white-space: nowrap;
    min-width: 220px;
}

.btn-outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.btn-small {
    padding: 11px 16px;
    font-size: 0.92rem;
    background: var(--color-primary);
    color: var(--color-white);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof span {
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-card {
    position: relative;
    padding: 34px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.hero-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    background: rgba(120, 234, 255, 0.20);
    border-radius: 999px;
    filter: blur(8px);
}

.status-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    margin-bottom: 30px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--color-accent);
    box-shadow: 0 0 0 8px rgba(120, 234, 255, 0.12);
}

.hero-card h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 22px;
}

.hero-card li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.83);
    margin: 12px 0;
}

.hero-card li::before,
.package-card li::before,
.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 900;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

.text-block p,
.feature-list p {
    font-size: 1.08rem;
}

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

.section-heading.center {
    text-align: center;
    margin-inline: auto;
}

.section-heading p {
    margin-top: 16px;
    font-size: 1.05rem;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.package-card,
.contact-card {
    border: 1px solid rgba(174, 184, 197, 0.30);
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.service-card,
.package-card {
    padding: 26px;
}

.service-card h3,
.package-card h3 {
    margin: 18px 0 12px;
}

.service-card a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--color-primary);
    font-weight: 800;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(120, 234, 255, 0.18);
    font-size: 1.5rem;
}

.service-icon.large {
    width: 68px;
    height: 68px;
    font-size: 1.8rem;
}

.process-section .section-heading {
    margin-bottom: 36px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step {
    padding: 26px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.step span {
    display: inline-flex;
    color: var(--color-accent);
    font-weight: 900;
    margin-bottom: 38px;
}

.step h3 {
    margin-bottom: 10px;
}

.package-card {
    display: flex;
    flex-direction: column;
}

.package-card p {
    min-height: 78px;
}

.package-card ul {
    margin: 10px 0 24px;
}

.package-card li,
.service-includes li {
    position: relative;
    padding-left: 26px;
    margin: 10px 0;
    color: var(--color-text);
}

.package-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.cta-section {
    padding-top: 64px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 44px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(120, 234, 255, 0.24), transparent 36%),
        var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 650px;
    margin-top: 12px;
}

.cta-box .btn {
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 220px;
}

.page-hero {
    padding: 96px 0;
}

.page-hero p {
    font-size: 1.15rem;
    margin-top: 18px;
}

.service-detail-list {
    display: grid;
    gap: 26px;
}

.service-detail {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 30px;
    align-items: start;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(174, 184, 197, 0.28);
    box-shadow: var(--shadow-card);
}

.service-detail-number {
    color: var(--color-muted);
    font-size: 1.8rem;
    font-weight: 900;
}

.service-detail h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin: 18px 0 12px;
}

.service-includes {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--color-soft);
}

.service-includes h3 {
    margin-bottom: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 52px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-card {
    display: grid;
    gap: 4px;
    padding: 20px;
}

.contact-card strong {
    color: var(--color-primary);
}

.contact-card span {
    color: var(--color-text);
}

.contact-form {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(174, 184, 197, 0.28);
    box-shadow: var(--shadow-soft);
}

.contact-form label {
    display: block;
    margin: 14px 0 8px;
    font-weight: 800;
    color: var(--color-primary);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid rgba(174, 184, 197, 0.65);
    border-radius: 14px;
    padding: 14px 15px;
    font: inherit;
    color: var(--color-ink);
    background: var(--color-white);
    outline: none;
    transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(120, 234, 255, 0.18);
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
    border: 0;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-note {
    font-size: 0.9rem;
    text-align: center;
    margin: 14px 0 0;
}

.thank-you {
    min-height: 58vh;
    display: grid;
    align-items: center;
}

.site-footer {
    background: #0E1824;
    color: var(--color-white);
    padding: 64px 0 26px;
}

.site-footer p,
.site-footer a,
.site-footer li,
.footer-muted {
    color: rgba(255, 255, 255, 0.70);
}

.footer-logo {
    max-height: 110px;
    width: auto;
    display: block;
    
}

.site-footer .brand-text strong,
.site-footer .brand-text small {
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
}

.footer-grid h3 {
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 0;
}


.footer-list li {
    margin: 10px 0;
}

.footer-list a:hover,
.footer-bottom a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    margin-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(26, 43, 62, 0.22);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    h1 {
        font-size: clamp(2.4rem, 8vw, 4.2rem);
    }

    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: grid;
        gap: 8px;
        padding: 18px;
        background: var(--color-white);
        border: 1px solid rgba(174, 184, 197, 0.30);
        border-radius: 20px;
        box-shadow: var(--shadow-card);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.2s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .hero-grid,
    .split-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.four,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid.three,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail-number {
        font-size: 1rem;
    }

    .cta-box,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .section,
    .hero,
    .page-hero {
        padding: 68px 0;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 14px;
    }
    
    .brand-logo {
        width: 52px;
        height: 52px;
        object-fit: contain;
    }
    
    .hero-actions,
    .centered {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .card-grid.four,
    .card-grid.three,
    .steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .service-card,
    .package-card,
    .contact-form,
    .service-detail,
    .cta-box {
        padding: 24px;
    }

    .floating-whatsapp {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .site-footer {
        padding-bottom: 86px;
    }
}
.cta-box > .btn.btn-accent {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    min-width: 220px !important;
    width: 220px !important;
}