/* ========================================
   ZahnSchutzPlus – Lead Generation Page
   Premium Insurance Landing Page Styles
   ======================================== */

:root {
    --primary: #0B4F6C;
    --primary-dark: #083D54;
    --primary-light: #E8F4F8;
    --accent: #FF6B35;
    --accent-hover: #E55A2B;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-warm: #FFF8F3;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s, transform .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.logo strong { font-weight: 800; }

.nav-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text-muted);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 100px;
}
.badge-icon {
    background: var(--success);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 18px;
    border: 2px solid var(--primary);
    border-radius: 100px;
    transition: all .2s;
    font-size: .9rem;
}
.nav-phone:hover { background: var(--primary); color: white; }

@media (max-width: 768px) {
    .nav-badge { display: none; }
    .nav-phone span { display: none; }
    .nav-phone { padding: 8px; border-radius: 50%; }
}

/* ---- Hero ---- */
.hero {
    padding-top: 100px;
    background: linear-gradient(165deg, #ffffff 0%, var(--primary-light) 40%, #dbeef5 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: .12;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -200px; right: -150px;
}
.shape-2 {
    width: 300px; height: 300px;
    background: var(--accent);
    bottom: 100px; left: -100px;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--primary);
    top: 50%; left: 40%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding-bottom: 40px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    animation: fadeInUp .6s ease-out;
}
.tag-dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.5); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp .6s ease-out .1s both;
}
.hero-highlight {
    color: var(--accent);
    position: relative;
}
.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0;
    width: 100%; height: 8px;
    background: rgba(255, 107, 53, .2);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
    animation: fadeInUp .6s ease-out .2s both;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp .6s ease-out .3s both;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: .95rem;
}
.benefit-icon {
    width: 32px; height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(255, 107, 53, .35);
    animation: fadeInUp .6s ease-out .4s both;
}
.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, .45);
}
.hero-cta svg { transition: transform .2s; }
.hero-cta:hover svg { transform: translateX(4px); }

.cta-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(255,255,255,.3);
}
.cta-white:hover {
    background: #f0f4f8;
    box-shadow: 0 8px 30px rgba(255,255,255,.4);
}

.hero-micro {
    font-size: .8rem;
    color: var(--text-light);
    margin-top: 12px;
    animation: fadeInUp .6s ease-out .5s both;
}

/* ---- Hero Card / Form ---- */
.hero-visual {
    animation: fadeInUp .8s ease-out .3s both;
}

.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.04);
}

.card-header {
    background: var(--primary);
    color: white;
    padding: 28px 32px 24px;
    position: relative;
}
.card-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 4px;
}
.card-header p {
    opacity: .8;
    font-size: .9rem;
}
.card-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 0 0 10px 10px;
    font-size: .8rem;
    font-weight: 700;
}

.lead-form {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-soft);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    transition: all .2s;
}
.input-wrap:focus-within {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(11,79,108,.1);
}
.input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text);
    font-family: inherit;
    outline: none;
}
.input-wrap input::placeholder { color: var(--text-light); }

.submit-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(255, 107, 53, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, .4);
}
.submit-btn:active { transform: translateY(0); }

.form-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--text-light);
    justify-content: center;
}

.form-success {
    padding: 48px 32px;
    text-align: center;
}
.success-icon { margin-bottom: 16px; }
.form-success h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--success);
}
.form-success p { color: var(--text-muted); }

/* ---- Social Proof Bar ---- */
.social-proof-bar {
    background: white;
    border-top: 1px solid var(--border);
    padding: 18px 0;
}
.proof-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-muted);
}
.proof-avatars {
    display: flex;
}
.avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: white;
    margin-right: -8px;
    border: 2px solid white;
}
.stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 1px;
}
.proof-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

@media (max-width: 768px) {
    .proof-divider { display: none; }
    .proof-scroll { gap: 16px; }
}

/* ---- Pain Section ---- */
.pain-section {
    padding: 100px 0;
    background: var(--bg);
}

.pain-header, .solution-header, .process-header, .testimonials-header, .faq-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.tag-light {
    background: rgba(255,255,255,.15);
    color: white;
}

.pain-header h2, .solution-header h2, .process-header h2, .testimonials-header h2, .faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
    line-height: 1.2;
}
.text-accent { color: var(--danger); }
.price-highlight { color: var(--accent); }

.pain-header p, .solution-header p, .faq-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cost-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cost-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all .3s;
    position: relative;
}
.cost-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.cost-card.featured {
    border-color: var(--danger);
    box-shadow: 0 0 0 1px var(--danger), var(--shadow-md);
}
.cost-card.featured::before {
    content: 'Häufigster Fall';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--danger);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
}

.cost-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.cost-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.cost-range {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    font-size: .9rem;
}
.cost-kasse { color: var(--text-light); }
.cost-real { color: var(--text); }

.cost-bar {
    height: 8px;
    background: #fee2e2;
    border-radius: 100px;
    margin-bottom: 12px;
    overflow: hidden;
}
.cost-bar-fill {
    height: 100%;
    width: var(--fill);
    background: var(--danger);
    border-radius: 100px;
    animation: fillBar 1.5s ease-out;
}
@keyframes fillBar {
    from { width: 0; }
}

.cost-gap {
    color: var(--danger);
    font-weight: 700;
    font-size: .9rem;
}

/* ---- Solution / Benefits ---- */
.solution-section {
    padding: 100px 0;
    background: var(--primary);
    color: white;
    position: relative;
}
.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.solution-header p { color: rgba(255,255,255,.7); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: all .3s;
}
.benefit-card:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-4px);
}
.bc-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}
.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.benefit-card p {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    line-height: 1.6;
}

.solution-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ---- Process Section ---- */
.process-section {
    padding: 100px 0;
    background: var(--bg-soft);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}
.step-number {
    width: 64px; height: 64px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(11,79,108,.25);
}
.step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.step p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: var(--border);
    margin-top: 32px;
    flex-shrink: 0;
    position: relative;
}
.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -4px;
    width: 10px; height: 10px;
    border-top: 2px solid var(--border);
    border-right: 2px solid var(--border);
    transform: rotate(45deg);
}

/* ---- Testimonials ---- */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
}
.tc-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-card p {
    color: rgba(255,255,255,.9);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tc-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: .9rem;
}
.tc-author strong {
    display: block;
    font-size: .9rem;
}
.tc-author span {
    font-size: .8rem;
    opacity: .6;
}

/* ---- FAQ ---- */
.faq-section {
    padding: 100px 0;
    background: var(--bg);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}
.faq-question svg {
    flex-shrink: 0;
    transition: transform .3s;
    color: var(--text-light);
}
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
}
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

/* ---- Final CTA ---- */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0a3d54 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.final-cta-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,.15), transparent);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}
.final-cta-content > p {
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.final-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}
.price-label {
    font-size: 1rem;
    opacity: .7;
}
.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}
.price-period {
    font-size: 1.1rem;
    opacity: .7;
}

.final-micro {
    font-size: .85rem;
    opacity: .6;
    margin-top: 16px;
}

/* ---- Footer ---- */
.footer {
    background: #0a1628;
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4 {
    color: white;
    font-size: .9rem;
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-links a {
    display: block;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .9rem;
    padding: 4px 0;
    transition: color .2s;
}
.footer-links a:hover { color: white; }

.footer-bottom {
    padding: 24px 0;
}
.footer-bottom p {
    font-size: .8rem;
    opacity: .4;
}

/* ---- Floating CTA ---- */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 90;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    display: none;
}
.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
    box-shadow: 0 8px 32px rgba(255,107,53,.4);
    white-space: nowrap;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .cost-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .hero { padding-top: 80px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { width: 100%; justify-content: center; padding: 14px 28px; font-size: .95rem; }
    .card-header { padding: 24px; }
    .lead-form { padding: 24px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; align-items: center; gap: 16px; }
    .step-connector {
        width: 2px; height: 40px;
        margin: 0;
    }
    .step-connector::after {
        right: -4px;
        top: auto;
        bottom: -4px;
        transform: rotate(135deg);
    }
    .floating-cta { display: block; }
    .final-price .price-value { font-size: 3rem; }
    .pain-section, .solution-section, .process-section, .testimonials-section, .faq-section, .final-cta-section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.9rem; }
    .nav-container { height: 56px; }
    .logo { font-size: 1rem; }
    .logo svg { width: 26px; height: 26px; }
}

/* ---- Opt-in Checkbox Styles ---- */
.opt-in-group {
    margin-top: 4px;
}

.opt-in-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.opt-in-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.opt-in-text {
    flex: 1;
}

.opt-in-text a {
    color: var(--primary);
    text-decoration: underline;
}

.opt-in-text a:hover {
    color: var(--primary-dark);
}
