/**
 * MoneyCompass Landing Page Styles
 * Brand: Industrial Luxury with Glassmorphism
 */

/* ============================================================================
   CSS Variables - MoneyCompass Brand
   ========================================================================= */
:root {
    /* Brand Colors */
    --brand-gold: #D4AF37;
    --brand-gold-light: #E5C76B;
    --brand-gold-dark: #B8942E;
    --brand-charcoal: #2C3E50;
    --brand-charcoal-light: #34495E;
    --brand-charcoal-dark: #1A252F;
    --brand-teal: #3A7A8C;
    --brand-teal-light: #4A9AAC;
    --brand-ice: #E0F7FA;
    --brand-silver: #B0BEC5;

    /* Text Colors */
    --text-primary: #1A252F;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.3);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* ============================================================================
   Base Styles
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================================
   Typography
   ========================================================================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--brand-charcoal);
    text-align: center;
    margin-bottom: 1rem;
}

.section-title-light {
    font-size: 2.5rem;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ============================================================================
   Navigation
   ========================================================================= */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-base);
}

.landing-nav.scrolled {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.0625rem;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--brand-gold);
}

.btn-nav-cta {
    background: var(--brand-gold);
    color: var(--brand-charcoal);
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: var(--transition-fast);
}

.btn-nav-cta:hover {
    background: var(--brand-gold-light);
    box-shadow: var(--shadow-gold);
}

.nav-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--brand-charcoal);
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
}

.mobile-menu.show {
    display: flex;
}

.mobile-link {
    color: var(--text-white);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-mobile-cta {
    background: var(--brand-gold);
    color: var(--brand-charcoal);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

/* ============================================================================
   Hero Section
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(58, 122, 140, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(58, 122, 140, 0.2) 0%, transparent 40%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    padding: 0 2rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--text-white);
    margin-bottom: 1.75rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 3rem;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    color: var(--brand-charcoal);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.hero-cta-note {
    margin-top: 1.25rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-testimonial {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-quote {
    color: var(--text-white);
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.testimonial-quote i {
    color: var(--brand-gold);
    margin-right: 0.5rem;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.hero-image {
    display: none;
}

.hero-logo-display {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ============================================================================
   Problem Section
   ========================================================================= */
.problem-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

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

.problem-card {
    background: var(--bg-white);
    border: 1px solid #E5E7EB;
    border-left: 4px solid var(--brand-gold);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-base);
}

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

.problem-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

/* 3D Icon Styles */
.icon-3d {
    width: 72px;
    height: 72px;
    object-fit: contain;
    transition: var(--transition-base);
}

.problem-card:hover .icon-3d {
    transform: scale(1.1) rotate(-5deg);
}

.icon-3d-small {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: var(--transition-base);
}

.feature-deep-card:hover .icon-3d-small {
    transform: scale(1.1);
}

.icon-3d-tiny {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}

.problem-title {
    font-size: 1.25rem;
    color: var(--brand-charcoal);
    margin-bottom: 0.75rem;
}

.problem-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.problem-transition {
    text-align: center;
    font-size: 1.5rem;
    color: var(--brand-charcoal);
    font-weight: 600;
}

/* ============================================================================
   Solution Section
   ========================================================================= */
.solution-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon .icon-3d {
    width: 80px;
    height: 80px;
}

.feature-card:hover .icon-3d {
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--brand-charcoal);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================================================
   How It Works Section
   ========================================================================= */
.how-it-works-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-charcoal);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.step-content {
    flex: 1;
    padding-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    color: var(--brand-charcoal);
    margin-bottom: 0.5rem;
}

.step-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brand-gold), var(--brand-teal));
    margin-left: 27px;
}

.how-cta {
    text-align: center;
}

.how-cta-text {
    font-size: 1.25rem;
    color: var(--brand-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ============================================================================
   Features Deep-Dive Section
   ========================================================================= */
.features-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.feature-deep-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid #E5E7EB;
}

.feature-deep-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-gold);
}

.feature-deep-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-deep-icon .icon-3d-small {
    width: 56px;
    height: 56px;
}

.feature-deep-card h3 {
    font-size: 1.125rem;
    color: var(--brand-charcoal);
    margin-bottom: 0.5rem;
}

.feature-deep-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================================================
   Testimonials Section
   ========================================================================= */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--brand-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-charcoal), var(--brand-charcoal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    color: var(--brand-charcoal);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-gold);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================================
   Pricing Section
   ========================================================================= */
.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

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

.pricing-card {
    background: var(--bg-white);
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--brand-teal);
    box-shadow: var(--shadow-lg);
}

.pricing-card-pro {
    border-color: var(--brand-gold);
    position: relative;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    color: var(--brand-charcoal);
    padding: 0.375rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-tier {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-charcoal);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.pricing-features i {
    color: var(--brand-teal);
    margin-top: 0.25rem;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--brand-teal);
    color: var(--text-white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-pricing:hover {
    background: var(--brand-teal-light);
}

.btn-pricing-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    color: var(--brand-charcoal);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.btn-pricing-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.pricing-tip {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pricing-tip i {
    color: var(--brand-gold);
    margin-right: 0.5rem;
}

/* ============================================================================
   FAQ Section
   ========================================================================= */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E5E7EB;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-charcoal);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question i {
    color: var(--brand-gold);
    transition: var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================================================
   Final CTA Section
   ========================================================================= */
.final-cta-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.final-cta-title {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
    color: var(--brand-charcoal);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.trust-badges i {
    color: var(--brand-gold);
}

/* ============================================================================
   Footer
   ========================================================================= */
.landing-footer {
    background: var(--brand-charcoal-dark);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ============================================================================
   Responsive Styles
   ========================================================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-title,
    .section-title-light,
    .final-cta-title {
        font-size: 2rem;
    }

    .stats-bar {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-logo-img {
        width: 44px;
        height: 44px;
    }

    .nav-logo-text {
        font-size: 1.375rem;
    }

    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-content {
        text-align: center;
        padding: 0 1.25rem;
    }

    .section-title,
    .section-title-light,
    .final-cta-title {
        font-size: 1.75rem;
    }

    .problem-grid,
    .features-grid,
    .testimonials-grid,
    .pricing-grid,
    .features-deep-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --section-padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .btn-primary-large,
    .btn-final-cta {
        width: 100%;
        justify-content: center;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }
}
