/* ===================================
   KEEP - Stylesheet
   Dark mode with deep green & gold
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-green: #1A5D3A;
    --primary-green-light: #2A7D4F;
    --primary-green-dark: #0F3D24;
    --gold: #D4A521;
    --gold-light: #E5B940;
    --gold-dark: #B08818;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #2D3748;
    --success: #10B981;
    --warning: #DC2626;
    --warning-light: #EF4444;

    /* Dark mode palette */
    --bg-primary: #0E1A14;
    --bg-secondary: #16241D;
    --bg-card: #1C2E25;
    --bg-elevated: #243A2E;
    --text-primary: #F1F5F2;
    --text-secondary: #B8C5BC;
    --text-muted: #8A9A8E;
    --border-color: rgba(212, 165, 33, 0.15);
    --border-light: rgba(255, 255, 255, 0.08);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 8px 30px rgba(212, 165, 33, 0.25);
    --shadow-green: 0 8px 30px rgba(26, 93, 58, 0.4);

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gold-text {
    color: var(--gold);
}

.red-text {
    color: var(--warning-light);
}

.gold-check {
    color: var(--gold) !important;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 93, 58, 0.5);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 165, 33, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-light);
}

.btn-ghost:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.btn-large {
    padding: 1.1rem 2.4rem;
    font-size: 1.1rem;
}

.btn-huge {
    padding: 1.4rem 3rem;
    font-size: 1.25rem;
    border-radius: var(--radius-lg);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: 0 8px 30px rgba(212, 165, 33, 0.55), 0 0 0 8px rgba(212, 165, 33, 0.1); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(14, 26, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(14, 26, 20, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover:not(.nav-cta)::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    padding: 9rem 0 5rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(26, 93, 58, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 33, 0.15) 0%, transparent 50%),
        var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(212, 165, 33, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 165, 33, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 165, 33, 0.1);
    border: 1px solid var(--border-color);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Hero Visual - Split screen mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 520px;
}

.split-before, .split-after {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
}

.split-before {
    transform: rotate(-2deg);
}

.split-after {
    transform: rotate(2deg);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.split-before:hover, .split-after:hover {
    transform: rotate(0);
}

.split-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--warning-light);
    margin-bottom: 1rem;
    text-align: center;
}

.split-label.gold {
    color: var(--gold);
}

.phone-mockup {
    text-align: center;
}

.phone-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.phone-text {
    text-align: left;
}

.text-line {
    background: var(--bg-elevated);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.split-after .text-line {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-left: 3px solid var(--success);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 93, 58, 0.2);
    color: var(--primary-green-light);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(26, 93, 58, 0.3);
}

.section-tag.gold-tag {
    background: rgba(212, 165, 33, 0.15);
    color: var(--gold);
    border-color: var(--border-color);
}

.section-tag.red-tag {
    background: rgba(220, 38, 38, 0.15);
    color: var(--warning-light);
    border-color: rgba(220, 38, 38, 0.3);
}

.section-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* ===== PROBLEM SECTION ===== */
.problem {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: var(--bg-card);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--primary-green));
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-lg);
}

.problem-card:hover::before {
    transform: scaleY(1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.problem-card p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.problem-card em {
    color: var(--text-primary);
    font-style: italic;
}

.problem-emphasis {
    margin-top: 1rem !important;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-primary) !important;
    font-weight: 500;
}

.problem-closing {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text-primary);
    line-height: 1.4;
}

.closing-emphasis {
    font-weight: 800;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem) !important;
    margin-top: 0.5rem;
    color: var(--gold);
}

/* ===== SOLUTION SECTION ===== */
.solution {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 33, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: var(--bg-card);
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 3rem;
    margin: 0.5rem 0 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-arrow {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.6;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(26, 93, 58, 0.4), rgba(212, 165, 33, 0.1));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 1;
}

.bonus-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.bonus-content h3 {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.bonus-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.bonus-emphasis {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 1.05rem;
}

.trust-statement {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-icon {
    font-size: 3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-statement p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.trust-statement strong {
    color: var(--text-primary);
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.review-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.review-business {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.review-location {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.review-location i {
    margin-right: 0.3rem;
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.review-card-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.review-cta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.review-cta-content h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.review-cta-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ===== PRICING ===== */
.pricing {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    box-shadow: var(--shadow-gold);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-tier {
    display: inline-block;
    background: rgba(26, 93, 58, 0.3);
    color: var(--primary-green-light);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}

.pricing-tier.gold {
    background: rgba(212, 165, 33, 0.2);
    color: var(--gold);
}

.pricing-card h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
}

.pricing-includes {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    line-height: 1.5;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.critical-needs {
    background: rgba(220, 38, 38, 0.08);
    border-left: 3px solid var(--warning-light);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.critical-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.critical-item:last-child {
    margin-bottom: 0;
}

.critical-item strong {
    color: var(--gold);
}

.pricing-best-for {
    background: var(--bg-elevated);
    padding: 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.pricing-best-for strong {
    color: var(--text-primary);
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.pricing-note i {
    color: var(--gold);
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pricing-note p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-note strong {
    color: var(--text-primary);
}

.pricing-note em {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

/* ===== COST OF INACTION ===== */
.cost-of-inaction {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
        var(--bg-secondary);
    position: relative;
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.consequence-card {
    background: rgba(220, 38, 38, 0.05);
    border: 2px solid var(--warning);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: var(--transition);
    position: relative;
}

.consequence-card:hover {
    transform: translateY(-6px);
    background: rgba(220, 38, 38, 0.1);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
}

.consequence-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.consequence-card h3 {
    color: var(--warning-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.consequence-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.cost-closing {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.cost-closing-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cost-closing > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cost-closing strong {
    color: var(--text-primary);
}

/* ===== FAQ ===== */
.faq {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-color);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 1.6rem 1.4rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(212, 165, 33, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, var(--primary-green-dark), var(--bg-primary));
    text-align: center;
    position: relative;
}

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

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.final-cta-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #050B07;
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold);
    width: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== STICKY WHATSAPP ===== */
.sticky-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 998;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
}

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

.sticky-tooltip {
    position: absolute;
    right: 75px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.sticky-whatsapp:hover .sticky-tooltip {
    opacity: 1;
    right: 80px;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.8rem;
    color: var(--text-muted);
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.modal-header p {
    color: var(--text-secondary);
}

.consent-checkbox {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.consent-checkbox:hover {
    border-color: var(--gold);
}

.consent-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.consent-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.consent-text a {
    color: var(--gold);
    text-decoration: underline;
}

.consent-text a:hover {
    color: var(--gold-light);
}

#proceedToWhatsApp:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.modal-footer-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.modal-footer-text em {
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    z-index: 997;
    box-shadow: var(--shadow-lg);
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    background: var(--bg-primary);
}

.legal-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.legal-container h1 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.legal-meta {
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.legal-container h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
}

.legal-container p,
.legal-container li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-container ul, .legal-container ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-container strong {
    color: var(--text-primary);
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 600;
}

.legal-back:hover {
    color: var(--gold-light);
    transform: translateX(-4px);
}

/* ===== 404 PAGE ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(212, 165, 33, 0.1) 0%, transparent 70%),
        var(--bg-primary);
}

.error-page h1 {
    font-size: clamp(5rem, 15vw, 10rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero {
        padding: 7rem 0 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .step-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .trust-statement {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1.5rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        display: inline-block;
        margin-top: 0.5rem;
    }

    section {
        padding: 4rem 0 !important;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

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

    .footer-tagline {
        max-width: 100%;
    }

    .footer-social, .footer-contact li {
        justify-content: center;
    }

    .pricing-card,
    .problem-card,
    .review-card,
    .consequence-card,
    .step-card {
        padding: 1.8rem;
    }

    .modal-content {
        padding: 1.8rem;
    }

    .sticky-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1.6rem;
    }

    .sticky-tooltip {
        display: none;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .btn-large {
        padding: 1rem 1.8rem;
        font-size: 1rem;
        width: 100%;
    }

    .btn-huge {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .review-avatar {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .split-screen {
        gap: 0.5rem;
    }

    .split-before, .split-after {
        padding: 1rem;
    }

    .phone-emoji {
        font-size: 2.5rem;
    }

    .text-line {
        font-size: 0.75rem;
    }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

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