:root {
    color-scheme: light;
    --bg: #f5f8fc;
    --bg-alt: #eef4fb;
    --surface: #ffffff;
    --surface-strong: #0f172a;
    --text: #122033;
    --muted: #566579;
    --line: rgba(15, 23, 42, 0.12);
    --brand: #0f766e;
    --brand-2: #f97316;
    --brand-3: #0f172a;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Franklin Gothic Medium", "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.28), transparent 85%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--brand);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 9999;
    padding: .75rem 1rem;
    background: #fff;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(245, 248, 252, 0.82);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    min-width: 0;
}

.brand-lockup strong,
.brand-lockup small {
    display: block;
    line-height: 1.1;
}

.brand-lockup strong {
    font-size: 1.03rem;
    letter-spacing: .01em;
}

.brand-lockup small {
    color: var(--muted);
    font-size: .86rem;
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(15, 118, 110, 0.12), rgba(249, 115, 22, 0.12));
    color: var(--brand);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
    flex: 0 0 auto;
}

.brand-mark svg {
    width: 1.75rem;
    height: 1.75rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--muted);
    font-size: .95rem;
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--brand-3);
}

.menu-toggle {
    border: 0;
    background: var(--surface);
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    display: inline-grid;
    place-items: center;
}

.menu-bars {
    width: 1.1rem;
    height: .1rem;
    background: var(--brand-3);
    position: relative;
    border-radius: 99px;
}

.menu-bars::before,
.menu-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 1.1rem;
    height: .1rem;
    background: var(--brand-3);
    border-radius: 99px;
}

.menu-bars::before { top: -.35rem; }
.menu-bars::after { top: .35rem; }

.btn-quote,
.btn-primary-hero,
.btn-plan {
    border: 0;
    border-radius: 999px;
    padding: .9rem 1.35rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.btn-quote,
.btn-primary-hero,
.btn-plan {
    background: linear-gradient(135deg, var(--brand), #128678 55%, var(--brand-2));
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.28);
}

.btn-quote:hover,
.btn-primary-hero:hover,
.btn-plan:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-hero {
    border: 1px solid rgba(15, 23, 42, 0.14);
    color: var(--brand-3);
    background: rgba(255,255,255,0.72);
    border-radius: 999px;
    padding: .9rem 1.35rem;
    font-weight: 800;
}

.btn-outline-hero:hover {
    background: #fff;
}

.hero-section {
    padding-top: 1.4rem;
}

.hero-section h1,
.section-heading h2,
.hero-panel h2,
.info-card h3,
.pricing-card h3,
.snippet-card h3,
.review-card p,
.contact-card h3,
.accordion-button,
.site-footer p,
.lead-copy,
.long-copy p {
    margin-top: 0;
}

.hero-section h1 {
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--brand-3);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .15em;
    font-weight: 800;
    color: var(--brand);
}

.eyebrow::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: currentColor;
}

.lead-copy {
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 66ch;
}

.hero-panel,
.info-card,
.pricing-card,
.snippet-card,
.review-card,
.contact-card,
.custom-accordion .accordion-item {
    border: 1px solid rgba(15, 23, 42, 0.09);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-xl);
}

.hero-panel {
    padding: 1.35rem;
    position: relative;
    overflow: hidden;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -6rem -6rem auto;
    width: 14rem;
    height: 14rem;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 70%);
    pointer-events: none;
}

.hero-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.panel-kicker {
    margin: 0 0 .35rem;
    color: var(--brand);
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.panel-badge {
    white-space: nowrap;
    border-radius: 999px;
    padding: .45rem .8rem;
    font-size: .8rem;
    font-weight: 800;
    color: #0f172a;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.15), rgba(249, 115, 22, 0.16));
}

.hero-panel h2 {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.hero-video-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(15, 118, 110, 0.04));
}

.video-intro,
.video-meta {
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--muted);
    line-height: 1.8;
}

.video-intro {
    margin: 1rem 0 0;
}

.video-meta {
    margin: 0;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #0f172a;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-points {
    list-style: none;
    padding: 0;
    margin: 1.15rem 0 0;
    display: grid;
    gap: .75rem;
}

.video-points li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--muted);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    line-height: 1.7;
}

.video-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65rem;
    width: .65rem;
    height: .65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.video-actions {
    margin-top: 1.15rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: .8rem;
}

.feature-list li {
    position: relative;
    padding: .85rem .95rem .85rem 2.75rem;
    border-radius: 1rem;
    background: rgba(15, 118, 110, 0.05);
    color: var(--muted);
    line-height: 1.6;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: .95rem;
    top: 1rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
}

.hero-stats {
    margin-top: 1.15rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
}

.hero-stats div {
    border-radius: 1rem;
    background: linear-gradient(180deg, #fff, rgba(15, 118, 110, 0.04));
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1rem .75rem;
    text-align: center;
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    font-size: 1.1rem;
    margin-bottom: .15rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: .85rem;
}

.trust-strip,
.social-links,
.footer-links,
.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.trust-strip span,
.keyword-cloud span {
    border-radius: 999px;
    padding: .55rem .85rem;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--muted);
    font-size: .92rem;
}

.social-strip {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,0.48);
}

.social-links,
.footer-links {
    justify-content: center;
}

.social-links a,
.footer-links a {
    padding: .7rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    font-weight: 700;
    color: var(--brand-3);
}

.social-links a:hover,
.footer-links a:hover {
    color: var(--brand);
}

.content-section {
    padding: .25rem 0;
}

.alt-section {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.04), rgba(249, 115, 22, 0.04));
}

.section-heading {
    margin-bottom: 1.4rem;
    max-width: 60rem;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 0;
}

.info-card,
.snippet-card,
.review-card,
.contact-card,
.pricing-card {
    padding: 1.3rem;
    height: 100%;
}

.info-card h3,
.snippet-card h3,
.pricing-card h3,
.contact-card h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: .8rem;
    color: var(--brand-3);
}

.info-card p,
.snippet-card p,
.pricing-card p,
.review-card p,
.contact-card p,
.long-copy p,
.accordion-body,
.form-note {
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

.icon-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-grid;
    place-items: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--brand);
}

.icon-badge svg {
    width: 1.45rem;
    height: 1.45rem;
}

.long-copy {
    columns: 2 20rem;
    column-gap: 2rem;
}

.long-copy p {
    break-inside: avoid;
    margin-bottom: 1rem;
}

.keyword-cloud {
    gap: .75rem;
}

.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.pricing-label {
    margin-bottom: 0;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .8rem;
    font-weight: 800;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: .25rem 0 0;
    display: grid;
    gap: .65rem;
}

.pricing-card li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--muted);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55rem;
    width: .8rem;
    height: .8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.pricing-card-highlight {
    background: linear-gradient(180deg, #ffffff, rgba(15, 118, 110, 0.06));
    border: 1px solid rgba(15, 118, 110, 0.2);
    transform: translateY(-4px);
}

.pricing-card-soft {
    background: rgba(255,255,255,0.88);
}

.snippet-card {
    position: relative;
    overflow: hidden;
}

.snippet-card::after {
    content: "";
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.14), transparent 70%);
    pointer-events: none;
}

.review-card {
    border-top: 4px solid var(--brand);
}

.review-stars {
    color: #ea9a14;
    letter-spacing: .15em;
    margin-bottom: .9rem;
    font-size: 1rem;
}

.review-card span {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--brand);
    font-weight: 800;
}

.custom-accordion {
    display: grid;
    gap: .9rem;
}

.faq-item {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.09);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-xl);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 1.2rem 3.4rem 1.2rem 1.25rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-3);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--brand-3);
    font-size: 1.1rem;
    font-weight: 800;
}

.faq-item[open] summary {
    color: var(--brand);
    background: rgba(15, 118, 110, 0.03);
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item .accordion-body {
    padding: 0 1.25rem 1.2rem;
    margin: 0;
}

.contact-card a {
    display: block;
    color: var(--brand-3);
    margin-bottom: .5rem;
    word-break: break-word;
}

.contact-socials {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-socials a {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--brand-3);
}

.contact-socials svg {
    width: 1.1rem;
    height: 1.1rem;
}

.contact-form {
    padding: 1.3rem;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(15, 23, 42, 0.09);
    box-shadow: var(--shadow-soft);
}

.form-label {
    font-weight: 800;
    color: var(--brand-3);
}

.form-control,
.form-select {
    min-height: 3.1rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.14);
    padding: .85rem 1rem;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(15, 118, 110, 0.42);
    box-shadow: 0 0 0 .18rem rgba(15, 118, 110, 0.12);
}

.custom-alert {
    border-radius: var(--radius-lg);
    border: 0;
    box-shadow: var(--shadow-soft);
}

.form-note {
    margin: 0;
}

.footer-links-section {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.site-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.96);
    color: rgba(255,255,255,0.9);
}

.site-footer p,
.site-footer a,
.footer-meta {
    color: rgba(255,255,255,0.86);
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: var(--shadow);
    z-index: 999;
}

.floating-whatsapp svg {
    width: 1.45rem;
    height: 1.45rem;
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + .5rem);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: .35rem;
        padding: 1rem;
        border-radius: 1.25rem;
        background: rgba(255,255,255,0.98);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: .65rem .2rem;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .hero-section h1 {
        max-width: 12ch;
    }

    .hero-panel-header {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .long-copy {
        columns: 1;
    }
}

@media (max-width: 767.98px) {
    .site-header .container-fluid {
        position: relative;
    }

    .hero-actions .btn,
    .video-actions .btn,
    .trust-strip span,
    .social-links a,
    .footer-links a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .btn-outline-hero,
    .btn-primary-hero,
    .btn-plan {
        display: inline-flex;
        justify-content: center;
    }

    .section-heading h2 {
        max-width: 15ch;
    }

    .floating-whatsapp {
        right: .8rem;
        bottom: .8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}