:root {
    --navy: #000b4f;
    --navy-mid: #0a1a6b;
    --navy-dark: #0a0e2a;
    --purple: #4b49ac;
    --purple-dark: #3a3890;
    --green: #7dcea0;
    --green-dark: #62c489;
    --sky: #4da8da;
    --plan-blue: #2f80ed;
    --plan-blue-light: #e8f4fd;
    --plan-orange: #f2994a;
    --plan-orange-hover: #e8872f;
    --plan-teal: #1abc9c;
    --white: #ffffff;
    --text: #1f2d3d;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --surface: #f8fafc;
    --shadow: 0 20px 50px rgba(10, 14, 42, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --header-h: 76px;
    --font: 'Exo', system-ui, sans-serif;
    --container: 1180px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.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;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-sm {
    padding: 9px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 15px 28px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(75, 73, 172, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 14px 30px rgba(75, 73, 172, 0.34);
}

.btn-outline {
    border-color: rgba(75, 73, 172, 0.35);
    color: var(--purple);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(75, 73, 172, 0.06);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Brand */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--green-dark) 0%, var(--green) 100%);
    color: var(--white);
    flex-shrink: 0;
}

.brand-icon {
    width: 28px;
    height: 28px;
}

.brand-paw-main {
    fill: currentColor;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy-dark);
}

.brand-tagline {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    border-color: var(--border);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 20px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a:not(.btn) {
    padding: 10px 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 8px;
}

.site-nav a:not(.btn):hover {
    color: var(--purple);
    background: rgba(75, 73, 172, 0.06);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: var(--surface);
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy-dark);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 56px) 0 80px;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-dark) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(125, 206, 160, 0.18), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(75, 73, 172, 0.24), transparent 32%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.08;
    font-weight: 800;
}

.hero h1 span {
    color: var(--green);
}

.hero-lead {
    margin: 0 0 28px;
    max-width: 560px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.hero-stat strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1.1;
}

.hero-stat span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.68);
}

.hero-visual {
    position: relative;
}

.dashboard-mock {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.mock-topbar {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
}

.mock-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.mock-body {
    display: grid;
    grid-template-columns: 72px 1fr;
    min-height: 320px;
}

.mock-sidebar {
    background: rgba(10, 14, 42, 0.55);
}

.mock-content {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.mock-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mock-kpi {
    height: 58px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.mock-kpi--blue { background: linear-gradient(135deg, rgba(77, 168, 218, 0.45), rgba(77, 168, 218, 0.15)); }
.mock-kpi--green { background: linear-gradient(135deg, rgba(125, 206, 160, 0.45), rgba(125, 206, 160, 0.15)); }
.mock-kpi--purple { background: linear-gradient(135deg, rgba(75, 73, 172, 0.55), rgba(75, 73, 172, 0.18)); }

.mock-chart {
    height: 120px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.mock-list {
    display: grid;
    gap: 8px;
}

.mock-list div {
    height: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy-dark);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite;
}

.hero-float i {
    color: var(--purple);
}

.hero-float--1 { top: 8%; right: -4%; animation-delay: 0s; }
.hero-float--2 { bottom: 18%; left: -6%; animation-delay: 1.2s; }
.hero-float--3 { top: 42%; right: -10%; animation-delay: 2.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections */
.section {
    padding: 88px 0;
}

.section-alt {
    background: var(--surface);
}

.section-head {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple);
}

.section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: var(--navy-dark);
}

.section-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.section-trust {
    padding: 28px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    background: var(--surface);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}

.trust-item i {
    color: var(--purple);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    padding: 26px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(75, 73, 172, 0.18);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(75, 73, 172, 0.1);
    color: var(--purple);
    font-size: 1.15rem;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    color: var(--navy-dark);
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
}

/* Modules */
.modules-wrap {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
}

.module-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.module-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.module-tab.is-active,
.module-tab:hover {
    background: var(--white);
    color: var(--purple);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.module-panels {
    position: relative;
    min-height: 320px;
}

.module-panel {
    display: none;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    padding: 36px;
    align-items: center;
}

.module-panel.is-active {
    display: grid;
}

.module-panel h3 {
    margin: 0 0 14px;
    font-size: 1.6rem;
    color: var(--navy-dark);
}

.module-panel p {
    margin: 0 0 18px;
    color: var(--text-muted);
}

.module-panel ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 600;
}

.module-panel ul i {
    color: var(--green-dark);
    margin-top: 4px;
}

.module-panel-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(75, 73, 172, 0.12), rgba(125, 206, 160, 0.12));
}

.module-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
    font-size: 2.8rem;
    box-shadow: 0 18px 40px rgba(75, 73, 172, 0.28);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    padding: 28px 22px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
}

.step-num {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--purple);
    letter-spacing: 0.06em;
}

.step-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: var(--navy-dark);
}

.step-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 320px));
    gap: 24px;
    justify-content: center;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 32px 28px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid #dce3ea;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.plan-card--highlight {
    border-color: #dce3ea;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--plan-blue);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plan-header-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.plan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.plan-icon--light {
    background: var(--plan-blue-light);
    color: var(--plan-blue);
}

.plan-icon--light i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    color: var(--plan-blue);
    font-size: 1.1rem;
}

.plan-icon--solid {
    background: var(--plan-blue);
    color: var(--white);
}

.plan-icon--basic {
    background: var(--plan-teal);
    color: var(--white);
}

.plan-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-dark);
}

.plan-desc {
    margin: 0 0 22px;
    max-width: 100%;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.plan-pricing {
    width: 100%;
    margin-bottom: 22px;
    text-align: center;
}

.plan-price-old {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 0.95rem;
    text-decoration: line-through;
}

.plan-price-main {
    margin: 0 0 6px;
    color: var(--navy-dark);
    font-size: 1.05rem;
    font-weight: 500;
}

.plan-price-main strong {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.plan-price-cash {
    display: block;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.btn-plan-trial {
    margin-top: auto;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--plan-orange);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(242, 153, 74, 0.35);
}

.btn-plan-trial:hover {
    background: var(--plan-orange-hover);
    box-shadow: 0 10px 24px rgba(242, 153, 74, 0.42);
}

.btn-plan-basic {
    margin-top: auto;
    padding: 14px 22px;
    border-radius: 999px;
    background: transparent;
    color: var(--plan-teal);
    border: 2px solid var(--plan-teal);
    font-weight: 700;
}

.btn-plan-basic:hover {
    background: rgba(26, 188, 156, 0.08);
}

.plan-more-link {
    display: inline-block;
    margin-top: 16px;
    text-align: center;
    color: var(--plan-teal);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.plan-more-link:hover {
    color: #15967d;
}

/* CTA */
.cta-banner {
    padding: 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--purple-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-banner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.cta-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--navy-dark);
}

.contact-copy p {
    margin: 0 0 24px;
    color: var(--text-muted);
}

.contact-channels {
    display: grid;
    gap: 12px;
}

.contact-channel {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    font-weight: 600;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-channel:hover {
    border-color: rgba(75, 73, 172, 0.28);
    transform: translateX(4px);
}

.contact-channel i {
    color: var(--purple);
    font-size: 1.1rem;
}

.contact-form-wrap {
    padding: 28px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(75, 73, 172, 0.45);
    box-shadow: 0 0 0 4px rgba(75, 73, 172, 0.1);
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.alert-success {
    background: rgba(39, 174, 96, 0.12);
    color: #1e8449;
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
}

.alert ul {
    padding-left: 18px;
    list-style: disc;
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.82);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 40px;
}

.brand--footer .brand-title {
    color: var(--white);
}

.brand--footer .brand-tagline {
    color: rgba(255, 255, 255, 0.55);
}

.footer-brand p {
    margin: 16px 0 0;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.footer-col h3 {
    margin: 0 0 14px;
    font-size: 0.95rem;
    color: var(--white);
}

.footer-col a {
    display: block;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.48);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .contact-grid,
    .module-panel {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-float--3 {
        right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 68px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        transform: translateX(100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav a {
        width: 100%;
        justify-content: center;
    }

    .site-nav .btn-sm {
        width: 100%;
        margin-top: 4px;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .nav-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    body.nav-open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        padding-bottom: 56px;
    }

    .hero-stats {
        gap: 18px;
    }

    .trust-grid,
    .features-grid,
    .steps-grid,
    .plans-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
    }

    .cta-banner-actions {
        width: 100%;
    }

    .cta-banner-actions .btn {
        flex: 1;
        min-width: 140px;
    }

    .module-panel {
        padding: 24px 20px;
    }

    .module-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .module-tab {
        flex-shrink: 0;
    }

    .hero-float {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .section {
        padding: 64px 0;
    }
}

/* Comparativo de Planos */
.comparativo-container {
    animation: fadeIn 0.4s ease;
}
.comparativo-table-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    overflow-x: auto;
}
.comparativo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 750px;
}
.comparativo-table th,
.comparativo-table td {
    padding: 24px 24px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    text-align: center;
    vertical-align: middle;
}
.comparativo-table tbody tr {
    transition: background-color 0.2s ease;
}
.comparativo-table tbody tr:hover {
    background-color: rgba(26, 188, 156, 0.02);
}
.comparativo-table th:first-child,
.comparativo-table td:first-child {
    text-align: left;
    width: 35%;
}
.comparativo-table tr:last-child td {
    border-bottom: none;
}
.comparativo-table th {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-dark);
    padding-top: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(15, 23, 42, 0.04);
}
.comparativo-table td.feat-name {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 0.95rem;
    white-space: nowrap;
}
.comparativo-table .feat-more {
    display: flex;
    width: max-content;
    align-items: center;
    margin-top: 8px;
    font-size: 0.72rem;
    color: var(--plan-teal);
    background: rgba(26, 188, 156, 0.1);
    border: none;
    padding: 6px 14px 6px 26px;
    border-radius: 999px;
    font-weight: 700;
    position: relative;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.comparativo-table .feat-more:hover {
    background: var(--plan-teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
}
.comparativo-table .feat-more::before {
    content: "▼";
    font-size: 0.6rem;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: inherit;
}
.comparativo-table .col-pro {
    background: rgba(26, 188, 156, 0.04);
}
.comparativo-table th.col-pro {
    border-radius: 0 20px 0 0;
}
.comparativo-table tr:last-child td.col-pro {
    border-radius: 0 0 20px 0;
}

/* Icons styling inside table */
.comparativo-table td i.fa-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(26, 188, 156, 0.12);
    color: var(--plan-teal);
    border-radius: 50%;
    font-size: 0.9rem;
}
.comparativo-table td i.fa-xmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(203, 213, 225, 0.2);
    color: #94a3b8;
    border-radius: 50%;
    font-size: 0.9rem;
}

.text-green {
    color: var(--plan-teal);
    font-size: 1.1rem;
}
.text-muted {
    color: #cbd5e1;
    font-size: 1.1rem;
}
.comparativo-table td span {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Botão Voltar ao Topo */
.btn-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--plan-teal);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.btn-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-scroll-top:hover {
    background: #16a085;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(26, 188, 156, 0.4);
}
