/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 19 2025 | 23:48:57 */
/* ============================================
   ZERO TO ₦10M - 10/10 LANDING PAGE
   Clean, Direct, Conversion-Focused
   ============================================ */

/* Mobile-First Foundation */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

button, a, input, select, textarea {
    min-height: 44px;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* CSS Variables */
:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #0f0f0f;
    --color-bg-card: #151515;
    --color-text: #ffffff;
    --color-text-muted: #999999;
    --color-text-dim: #666666;
    --color-gold: #f5a623;
    --color-gold-dark: #c4851a;
    --color-green: #22c55e;
    --color-green-dark: #16a34a;
    --color-red: #ef4444;
    --color-border: #222222;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --max-width: 800px;
    --section-padding: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    font-size: 18px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
    text-align: center;
}

.section-title-alt {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 32px;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #000;
    padding: 16px 32px;
    font-size: 18px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-xlarge {
    padding: 20px 40px;
    font-size: 20px;
    width: 100%;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    background: var(--color-gold);
    color: #000;
    min-height: 40px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.floating-cta span {
    color: var(--color-text-muted);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(36px, 7vw, 56px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-style: italic;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto 32px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 24px;
}

.hero-punch {
    font-size: 20px;
    margin-bottom: 40px;
}

.hero-punch strong {
    color: var(--color-gold);
}

.hero-guarantee {
    margin-top: 16px;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Truth Section */
.truth-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.truth-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.truth-list {
    list-style: none;
    margin: 24px 0;
    font-size: 20px;
}

.truth-list li {
    margin-bottom: 8px;
}

.truth-reveal {
    font-size: 20px;
    margin: 24px 0;
}

.truth-why {
    font-size: 24px;
    margin: 32px 0 16px;
}

.truth-equation {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    padding: 24px;
    background: var(--color-bg-card);
    border-radius: 12px;
    border-left: 3px solid var(--color-red);
}

.truth-equation span {
    font-size: 17px;
    color: var(--color-text-muted);
}

/* Story Sections */
.story-section, .contrast-section {
    padding: var(--section-padding) 0;
}

.story-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--color-border);
}

.story-card.bad {
    border-left: 4px solid var(--color-red);
}

.story-card.good {
    border-left: 4px solid var(--color-green);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.story-header h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.story-header span {
    font-size: 14px;
    color: var(--color-text-muted);
}

.story-stats {
    list-style: none;
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.story-stats li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.story-stats li:last-child {
    border-bottom: none;
}

.story-stats.success li {
    color: var(--color-green);
}

.story-question {
    font-size: 18px;
    margin: 20px 0 8px;
}

.story-answer {
    font-size: 24px;
    color: var(--color-red);
    margin-bottom: 20px;
}

.story-result {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
}

.story-result.bad {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.story-result.good {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.story-result span {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.story-result strong {
    font-size: 32px;
    font-family: var(--font-heading);
}

.story-result.bad strong {
    color: var(--color-red);
}

.story-result.good strong {
    color: var(--color-green);
}

.result-note {
    display: block;
    margin-top: 8px;
    font-size: 14px !important;
    font-style: italic;
}

.story-timeline {
    margin: 24px 0;
}

.timeline-point {
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--color-red);
    margin-bottom: 8px;
    font-size: 15px;
}

.story-verdict {
    font-size: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.contrast-summary {
    font-size: 20px;
    text-align: center;
    margin: 24px 0;
}

.contrast-punch {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.contrast-answer {
    text-align: center;
    font-size: 24px;
    color: var(--color-gold);
}

/* Math Section */
.math-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.math-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.math-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    width: 240px;
    text-align: center;
}

.math-box.good {
    border-color: rgba(34, 197, 94, 0.3);
}

.math-box.bad {
    border-color: rgba(239, 68, 68, 0.3);
}

.math-label {
    display: inline-block;
    background: var(--color-green);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.math-label.bad {
    background: var(--color-red);
    color: #fff;
}

.math-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.math-detail {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.math-result {
    padding: 12px;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.1);
}

.math-result.bad {
    background: rgba(239, 68, 68, 0.1);
}

.math-result span {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.math-result strong {
    font-size: 24px;
    color: var(--color-green);
}

.math-result.bad strong {
    color: var(--color-red);
}

.math-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.math-vs span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.math-multiplier {
    background: var(--color-gold);
    color: #000;
    font-weight: 700;
    font-size: 18px;
    padding: 16px;
    border-radius: 50%;
    text-align: center;
    line-height: 1.2;
}

.math-insight {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.math-insight p {
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--color-text-muted);
}

.insight-punch {
    font-size: 20px !important;
    color: var(--color-text) !important;
}

/* Solution Section */
.solution-section {
    padding: var(--section-padding) 0;
    text-align: center;
}

.solution-statement {
    font-size: 22px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.solution-not {
    margin: 24px 0;
}

.solution-not p {
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.solution-with {
    font-size: 22px;
    color: var(--color-gold);
}

/* Different Section */
.different-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.different-box {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 24px;
}

.different-box.not {
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.different-box.is {
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.different-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.different-box.not h3 {
    color: var(--color-red);
}

.different-box.is h3 {
    color: var(--color-green);
}

.different-box ul {
    list-style: none;
}

.different-box li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
}

.different-box li:last-child {
    border-bottom: none;
}

.different-closer {
    text-align: center;
    font-size: 18px;
}

/* Audience Section */
.audience-section {
    padding: var(--section-padding) 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.audience-box {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--color-border);
}

.audience-box.for {
    border-color: rgba(34, 197, 94, 0.3);
}

.audience-box.not-for {
    border-color: rgba(239, 68, 68, 0.3);
}

.audience-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.audience-box.for h3 {
    color: var(--color-green);
}

.audience-box.not-for h3 {
    color: var(--color-red);
}

.audience-box ul {
    list-style: none;
}

.audience-box li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--color-text-muted);
}

.audience-closer {
    text-align: center;
    font-size: 20px;
    color: var(--color-gold);
}

/* Curriculum Section */
.curriculum-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.curriculum-list {
    margin-top: 40px;
}

.curriculum-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.curriculum-item:last-child {
    border-bottom: none;
}

.curriculum-number {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.curriculum-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.curriculum-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
}

.testimonial-card h4 {
    font-size: 17px;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 600;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* About Section */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.about-content strong {
    color: var(--color-text);
}

.about-closer {
    margin-top: 24px;
    padding: 20px;
    background: var(--color-bg-card);
    border-radius: 8px;
    border-left: 3px solid var(--color-gold);
}

.about-closer p {
    margin-bottom: 8px;
    font-size: 16px;
}

.about-closer p:last-child {
    margin-bottom: 0;
    color: var(--color-gold);
}

.about-image img {
    border-radius: 12px;
}

/* Guarantee Section */
.guarantee-section {
    padding: var(--section-padding) 0;
}

.guarantee-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.guarantee-box > p {
    font-size: 18px;
    margin-bottom: 16px;
}

.guarantee-steps {
    background: var(--color-bg-card);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    border-left: 3px solid var(--color-green);
    text-align: left;
}

.guarantee-steps p {
    font-size: 17px;
    margin-bottom: 8px;
}

.guarantee-promise {
    font-size: 18px;
    margin: 24px 0 16px;
}

.guarantee-terms {
    margin: 16px 0;
}

.guarantee-terms p {
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.guarantee-truth {
    background: var(--color-bg-card);
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.guarantee-truth p {
    margin-bottom: 8px;
}

.real-risk {
    margin-top: 32px;
    padding: 24px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 12px;
}

.real-risk p {
    margin-bottom: 8px;
}

.real-risk p:last-child {
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 0;
}

/* Price Section */
.price-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.price-context {
    margin: 32px 0;
}

.price-context p {
    margin-bottom: 8px;
    font-size: 18px;
}

.price-comparison {
    max-width: 400px;
    margin: 32px auto;
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span {
    color: var(--color-text-muted);
}

.price-item strong {
    color: var(--color-text);
}

.price-same {
    font-size: 18px;
    margin: 24px 0;
}

.price-reason {
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.price-goals {
    max-width: 400px;
    margin: 0 auto 24px;
    text-align: left;
}

.price-goals p {
    margin-bottom: 12px;
}

.price-goals ol {
    padding-left: 24px;
}

.price-goals li {
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.price-closer {
    font-size: 20px;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 600px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    -webkit-tap-highlight-color: transparent;
    min-height: 60px;
}

.faq-icon {
    font-size: 20px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--color-text-muted);
    font-size: 15px;
}

.faq-answer p:first-child {
    padding-top: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

/* Final Section */
.final-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.final-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 32px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.option-box {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--color-border);
}

.option-box.bad {
    border-color: rgba(239, 68, 68, 0.3);
}

.option-box.good {
    border-color: rgba(34, 197, 94, 0.3);
}

.option-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.option-box.bad h3 {
    color: var(--color-red);
}

.option-box.good h3 {
    color: var(--color-green);
}

.option-box p {
    font-size: 15px;
    margin-bottom: 16px;
}

.option-box ul {
    list-style: none;
}

.option-box li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.final-truth {
    text-align: center;
    margin-bottom: 48px;
}

.final-truth p {
    font-size: 18px;
    margin-bottom: 12px;
}

.final-truth ul {
    list-style: none;
    margin: 16px 0;
}

.final-truth li {
    font-size: 17px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.final-cta {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.final-cta h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.final-price {
    font-size: 56px;
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 8px;
}

.final-note {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.final-assurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.final-assurance span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.final-ps {
    max-width: 600px;
    margin: 48px auto 0;
    font-size: 15px;
    color: var(--color-text-muted);
    padding: 24px;
    background: var(--color-bg-card);
    border-radius: 8px;
    border-left: 3px solid var(--color-gold);
}

/* Footer */
.footer {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.footer p {
    color: var(--color-text-muted);
    font-size: 13px;
    margin-bottom: 4px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 900px) {
    .about-section .container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-closer {
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    body {
        font-size: 16px;
    }
    
    .floating-cta {
        flex-direction: column;
        gap: 8px;
        padding: 10px 16px;
    }
    
    .floating-cta .btn-small {
        width: 100%;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-tagline {
        font-size: 17px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-punch {
        font-size: 18px;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-title-alt {
        font-size: 22px;
    }
    
    .story-card {
        padding: 24px;
    }
    
    .story-header h3 {
        font-size: 18px;
    }
    
    .story-result strong {
        font-size: 28px;
    }
    
    .math-comparison {
        flex-direction: column;
    }
    
    .math-box {
        width: 100%;
    }
    
    .math-vs {
        flex-direction: row;
        padding: 16px 0;
    }
    
    .curriculum-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .final-price {
        font-size: 44px;
    }
    
    .final-assurance {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 90px 0 48px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-tagline {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-xlarge {
        padding: 16px 24px;
        font-size: 17px;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
    }
    
    .different-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
        box-shadow: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}
