/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Fim do 6x1 - Paleta Urgência + Inovação */
    --bg-primary: #0A0E27;
    --bg-secondary: #111738;
    --bg-tertiary: #1A2148;
    --bg-card: #ffffff;
    --bg-light: #F5F7FA;

    /* Text */
    --text-primary: #0A0E27;
    --text-secondary: #4A5168;
    --text-tertiary: #8A91A8;
    --text-white: #FFFFFF;
    --text-light: #B8BDD0;

    /* Brand */
    --brand-primary: #00D084;
    --brand-primary-dark: #00A86A;
    --brand-primary-light: #4FE3A9;

    /* Urgência */
    --urgency-red: #FF3B5C;
    --urgency-orange: #FF7A2A;
    --urgency-yellow: #FFB800;

    /* Accent */
    --accent-blue: #2563EB;
    --accent-purple: #7C3AED;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 14, 39, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 14, 39, 0.10);
    --shadow-lg: 0 12px 40px rgba(10, 14, 39, 0.15);
    --shadow-xl: 0 24px 64px rgba(10, 14, 39, 0.20);
    --shadow-glow: 0 0 60px rgba(0, 208, 132, 0.25);
    --shadow-urgency: 0 0 40px rgba(255, 59, 92, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ALERT BAR (TOPO) ===== */
.alert-bar {
    background: linear-gradient(90deg, var(--urgency-red), var(--urgency-orange));
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    position: relative;
    z-index: 101;
    overflow: hidden;
}

.alert-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.alert-bar-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

.alert-bar strong {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.4);
    }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 18px 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--brand-primary-dark);
}

.nav a:hover::after {
    width: 100%;
}

.btn-header {
    background: var(--brand-primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-header:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--bg-primary);
    padding: 80px 0 100px;
    overflow: hidden;
    color: var(--text-white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(0, 208, 132, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 59, 92, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 59, 92, 0.12);
    border: 1px solid rgba(255, 59, 92, 0.35);
    color: #FF8090;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--urgency-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 12px var(--urgency-red);
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--text-white);
}

.hero-title .highlight {
    color: var(--brand-primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 12px;
    background: var(--brand-primary);
    opacity: 0.18;
    border-radius: 4px;
    z-index: -1;
}

.hero-title .strike {
    position: relative;
    color: var(--text-light);
    display: inline-block;
}

.hero-title .strike::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 52%;
    height: 4px;
    background: var(--urgency-red);
    transform: rotate(-3deg);
    border-radius: 4px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.65;
}

.hero-description strong {
    color: var(--text-white);
    font-weight: 700;
}

.hero-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 208, 132, 0.10);
    border: 1px solid rgba(0, 208, 132, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--brand-primary-light);
    font-weight: 600;
}

.feature-tag svg {
    color: var(--brand-primary);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: var(--brand-primary);
    color: var(--bg-primary);
    border: none;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 208, 132, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 18px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary-light);
    background: rgba(0, 208, 132, 0.05);
}

/* ===== HERO FORM ===== */
.hero-form-wrapper {
    position: relative;
}

.form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-tag {
    display: inline-block;
    background: rgba(0, 208, 132, 0.1);
    color: var(--brand-primary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.form-header h2 {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 14px;
}

.form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

.input-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.input-group input {
    width: 100%;
    background: var(--bg-light);
    border: 2px solid transparent;
    color: var(--text-primary);
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.input-group input::placeholder {
    color: var(--text-tertiary);
}

.input-group input:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.1);
}

.btn-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--brand-primary);
    color: var(--bg-primary);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-form-submit:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 208, 132, 0.3);
    color: #fff;
}

.btn-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-form-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.form-disclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-tertiary);
    text-align: center;
    justify-content: center;
    margin-top: 4px;
}

.form-disclaimer svg {
    flex-shrink: 0;
    color: var(--brand-primary);
}

/* ===== TIMELINE (LINHA DO TEMPO 6x1) ===== */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 208, 132, 0.1);
    color: var(--brand-primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 208, 132, 0.18);
}

.section-badge.urgency {
    background: rgba(255, 59, 92, 0.1);
    color: var(--urgency-red);
    border-color: rgba(255, 59, 92, 0.18);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.15;
}

.section-title .accent {
    color: var(--brand-primary-dark);
}

.section-title .accent-red {
    color: var(--urgency-red);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.timeline {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding-left: 36px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--urgency-red), var(--urgency-orange), var(--brand-primary));
}

.timeline-item {
    position: relative;
    padding: 0 0 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--urgency-red);
    box-shadow: 0 0 0 6px rgba(255, 59, 92, 0.15);
}

.timeline-item.done .timeline-dot {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    box-shadow: 0 0 0 6px rgba(0, 208, 132, 0.18);
}

.timeline-item.active .timeline-dot {
    border-color: var(--urgency-orange);
    background: var(--urgency-orange);
    box-shadow: 0 0 0 6px rgba(255, 122, 42, 0.18);
    animation: pulse 1.8s infinite;
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--urgency-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.timeline-item.done .timeline-date {
    color: var(--brand-primary-dark);
}

.timeline-item.active .timeline-date {
    color: var(--urgency-orange);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.timeline-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.98rem;
}

/* ===== IMPACT SECTION (CUSTOS / IMPACTO) ===== */
.impact-section {
    padding: 100px 0;
    background: #ffffff;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.impact-visual {
    position: relative;
}

.impact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.impact-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--urgency-red);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.impact-card.green {
    border-left-color: var(--brand-primary);
}

.impact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 59, 92, 0.12);
    color: var(--urgency-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.impact-card.green .impact-card-icon {
    background: rgba(0, 208, 132, 0.12);
    color: var(--brand-primary-dark);
}

.impact-card-value {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.impact-card-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.impact-content h2 {
    margin-bottom: 24px;
}

.impact-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.impact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.impact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.55;
}

.impact-list li svg {
    flex-shrink: 0;
    color: var(--urgency-red);
    margin-top: 3px;
}

.impact-list li strong {
    color: var(--text-primary);
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: 100px 0;
    background: var(--bg-primary);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.solution-section .section-title {
    color: var(--text-white);
}

.solution-section .section-description {
    color: var(--text-light);
}

.solution-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(0, 208, 132, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.10) 0%, transparent 50%);
    pointer-events: none;
}

.solution-section .container {
    position: relative;
    z-index: 2;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 208, 132, 0.3);
    box-shadow: var(--shadow-glow);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 208, 132, 0.12);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-white);
}

.solution-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.solution-tag {
    display: inline-block;
    background: rgba(0, 208, 132, 0.12);
    color: var(--brand-primary-light);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== INVESTMENT SECTION ===== */
.investment-section {
    padding: 100px 0;
    background: #ffffff;
}

.investment-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.investment-list {
    list-style: none;
    padding: 16px 0;
    margin: 0;
}

.investment-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 22px 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease;
}

.investment-item:last-child {
    border-bottom: none;
}

.investment-item:hover {
    background: var(--bg-light);
}

.investment-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 208, 132, 0.10);
    color: var(--brand-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.investment-info h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.investment-info p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.investment-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 2px;
    min-width: 130px;
}

.investment-qty {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.investment-each {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.investment-total {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 2px;
}

.investment-total-bar {
    background: var(--bg-primary);
    color: var(--text-white);
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.investment-total-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.20), transparent 60%);
    pointer-events: none;
}

.investment-total-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.investment-total-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--brand-primary-light);
}

.investment-total-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.investment-total-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.investment-currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-primary-light);
}

.investment-amount {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.investment-disclaimers {
    padding: 24px 36px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.investment-disclaimers p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

.investment-disclaimers svg {
    flex-shrink: 0;
    color: var(--brand-primary-dark);
    margin-top: 2px;
}

.investment-disclaimers strong {
    color: var(--text-primary);
}

.investment-cta {
    padding: 16px 36px 36px;
    text-align: center;
}

.investment-cta .btn-primary {
    width: 100%;
    justify-content: center;
    max-width: 380px;
}

/* ===== CALCULATOR ===== */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.calculator {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.calc-inputs h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.calc-inputs > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.calc-field {
    margin-bottom: 22px;
}

.calc-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.calc-input-wrap {
    position: relative;
}

.calc-input-prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.95rem;
    pointer-events: none;
}

.calc-field input {
    width: 100%;
    background: var(--bg-light);
    border: 2px solid transparent;
    color: var(--text-primary);
    padding: 14px 16px 14px 44px;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.2s ease;
}

.calc-field input.no-prefix {
    padding-left: 16px;
}

.calc-field input:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 208, 132, 0.1);
}

.calc-results {
    background: var(--bg-primary);
    color: var(--text-white);
    padding: 36px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.calc-results::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.18), transparent 60%);
    pointer-events: none;
}

.calc-results-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--brand-primary-light);
    margin-bottom: 10px;
}

.calc-results-value {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-white);
}

.calc-results-period {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.calc-breakdown {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.calc-breakdown-row .label {
    color: var(--text-light);
}

.calc-breakdown-row .value {
    color: #fff;
    font-weight: 700;
}

.calc-disclaimer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--brand-primary-dark);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial {
    max-width: 880px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -22px;
    left: 48px;
    width: 56px;
    height: 56px;
    background: var(--brand-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: 24px;
    margin-top: 12px;
    font-weight: 500;
}

.testimonial-text strong {
    color: var(--brand-primary-dark);
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 208, 132, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 26px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--brand-primary-dark);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 26px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 26px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.98rem;
}

.faq-answer strong {
    color: var(--brand-primary-dark);
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 100px 0;
    background: var(--bg-primary);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(0, 208, 132, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-white);
}

.cta-content h2 .accent {
    color: var(--brand-primary);
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.65;
}

.btn-cta-large {
    background: var(--brand-primary);
    color: var(--bg-primary);
    border: none;
    padding: 22px 48px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 12px 36px rgba(0, 208, 132, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(0, 208, 132, 0.5);
}

.cta-note {
    display: block;
    margin-top: 22px;
    font-size: 0.92rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background: #060914;
    color: var(--text-light);
    padding: 60px 0 28px;
}

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

.footer-brand .logo {
    margin-bottom: 18px;
    color: var(--text-white);
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-brand .logo-text {
    color: var(--text-white);
}

.footer-brand p {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column a {
    display: block;
    color: var(--text-tertiary);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--brand-primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.88rem;
}

/* ===== MODAL ===== */
.modal-modern {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
}

.modal-modern.active,
.modal-modern[style*="block"],
.modal-modern[style*="flex"] {
    display: block;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: calc(100% - 40px);
    max-width: 460px;
}

.modal-content-modern {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.modal-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.modal-content-modern p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-modal {
    background: var(--brand-primary);
    color: var(--bg-primary);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal:hover {
    background: var(--brand-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== MODO ADMIN (?from=admin) ===== */
.is-admin-mode .hero-form-wrapper {
    display: none !important;
}

.is-admin-mode .hero-grid {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.is-admin-mode .hero-content {
    max-width: 100%;
}

.is-admin-mode .hero-features,
.is-admin-mode .hero-ctas {
    justify-content: center;
}

.is-admin-mode #leadFormSubmit,
.is-admin-mode #successModal,
.is-admin-mode #errorModal {
    display: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .impact-grid,
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .nav {
        display: none;
    }
}

@media (max-width: 720px) {
    .alert-bar {
        font-size: 0.82rem;
        padding: 10px 0;
    }

    .alert-bar-content {
        padding: 0 16px;
    }

    .container {
        padding: 0 18px;
    }

    .header {
        padding: 14px 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 32px;
    }

    .btn-header {
        padding: 10px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hero {
        padding: 40px 0 72px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 7px 14px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .strike {
        margin-right: 8px;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .form-card {
        padding: 28px 24px;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

    .timeline-section,
    .impact-section,
    .solution-section,
    .calculator-section,
    .testimonial-section,
    .faq-section,
    .cta-final {
        padding: 64px 0;
    }

    .impact-cards {
        grid-template-columns: 1fr;
    }

    .investment-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 20px 22px;
    }

    .investment-icon {
        width: 44px;
        height: 44px;
    }

    .investment-icon svg {
        width: 22px;
        height: 22px;
    }

    .investment-price {
        grid-column: 2 / -1;
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 14px;
        min-width: 0;
        margin-top: 6px;
        padding-top: 10px;
        border-top: 1px dashed rgba(0, 0, 0, 0.08);
        width: 100%;
    }

    .investment-total {
        margin-left: auto;
        margin-top: 0;
    }

    .investment-total-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 22px 24px;
    }

    .investment-amount {
        font-size: 2.1rem;
    }

    .investment-disclaimers {
        padding: 20px 22px 4px;
    }

    .investment-cta {
        padding: 14px 22px 28px;
    }

    .calculator,
    .testimonial {
        padding: 28px 24px;
    }

    .calc-results {
        padding: 28px 24px;
    }

    .calc-results-value {
        font-size: 2.1rem;
    }

    .testimonial-quote {
        left: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -30px;
    }

    .impact-card-value {
        font-size: 1.55rem;
    }

    .stats-grid {
        gap: 24px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}
