/**
 * Quarter Results - Homepage Styles
 *
 * Styles specific to the index.php homepage
 *
 * @version 1.0.0
 * @since 2025-01-01
 */

/* ==========================================
   LOGOUT SUCCESS MESSAGE
   ========================================== */

.logout-success {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #3b82f6;
    color: #1e3a8a;
    padding: 15px 20px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
    transition: opacity 0.5s ease-out;
}

.logout-success.fade-out {
    opacity: 0;
}

/* ==========================================
   HERO SECTION - Professional Financial Platform
   ========================================== */

.hero {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.9) 100%),
        url('/images/background.webp') center center/cover no-repeat;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle overlay for depth */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.4);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* H1 line breaks using CSS instead of <br> for SEO */
.h1-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    flex-direction: column;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #1e3a8a;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-main {
    display: block;
}

.cta-sub {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    display: block;
    margin-top: 0.5rem;
}

/* ==========================================
   MOBILE NAVIGATION TABS
   ========================================== */

.mobile-nav {
    display: none;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    /* Removed position: sticky - only top menu should be sticky */
    z-index: 10; /* Low z-index, below header */
}

@media (max-width: 991px) {
    .mobile-nav {
        display: block;
    }
}

.mobile-nav-tabs {
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-nav-tab {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-nav-tab:hover {
    color: #495057;
    background: rgba(0, 0, 0, 0.02);
}

.mobile-nav-tab.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    background: white;
}

/* ==========================================
   TAB CONTENT VISIBILITY
   ========================================== */

@media (max-width: 991px) {
    .mobile-tab-content {
        display: none;
    }

    .mobile-tab-content.active {
        display: block;
    }
}

@media (min-width: 992px) {
    .mobile-tab-content {
        display: block !important;
    }
}

/* ==========================================
   FEATURED RESULTS SECTION - Professional Enhancement
   ========================================== */

.featured-results {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

/* Subtle underline accent */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.0625rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ==========================================
   SCROLLING CARDS
   ========================================== */

.scrolling-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .scrolling-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .scrolling-cards::-webkit-scrollbar {
        height: 8px;
    }

    .scrolling-cards::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .scrolling-cards::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

    .scrolling-cards::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

/* ==========================================
   RESULT CARDS - Professional Financial Design
   ========================================== */

.result-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    min-width: 300px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Subtle top accent */
.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-card:hover::before {
    opacity: 1;
}

@media (max-width: 767px) {
    .result-card {
        flex: 0 0 85%;
    }
}

.result-card:hover {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: #93c5fd;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.company-info h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    margin: 0 0 0.375rem 0;
    color: #0f172a;
    letter-spacing: -0.015em;
}

.company-info .ticker {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quarter-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    letter-spacing: 0.01em;
}

/* ==========================================
   RESULT METRICS - Financial Data Display
   ========================================== */

.result-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

@media (max-width: 480px) {
    .result-metrics {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.metric-label {
    font-size: 0.6875rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.metric-change {
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.1875rem 0.5rem;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
    letter-spacing: 0.01em;
}

.metric-change.positive {
    color: #059669;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.metric-change.negative {
    color: #dc2626;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(220, 38, 38, 0.08) 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.metric-change.neutral {
    color: #64748b;
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.12) 0%, rgba(100, 116, 139, 0.08) 100%);
    border: 1px solid rgba(100, 116, 139, 0.2);
}

/* ==========================================
   VIEW DETAILS BUTTON - Professional CTA
   ========================================== */

.view-details {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.2);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.view-details:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.view-all-container {
    text-align: center;
    margin-top: 3.5rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #3b82f6;
    text-decoration: none;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.view-all-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ==========================================
   SECTORS SECTION - Professional Industry Browse
   ========================================== */

.sectors {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 767px) {
    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .sector-grid {
        grid-template-columns: 1fr;
    }
}

.sector-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Top accent bar */
.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sector-card:hover::before {
    transform: scaleX(1);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #93c5fd;
}

.sector-icon {
    font-size: 2.75rem;
    margin-bottom: 1.125rem;
    display: block;
    line-height: 1;
}

.sector-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
}

.sector-card p {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
    font-weight: 600;
}

/* ==========================================
   ACCOUNT CTA SECTION - Professional Sign-Up
   ========================================== */

.account-cta {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.account-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.account-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .account-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.account-cta-text h2 {
    font-size: 2.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.account-cta-text p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.account-benefits {
    display: grid;
    gap: 1.125rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .benefit-item {
        justify-content: center;
    }
}

.benefit-icon {
    font-size: 1.375rem;
    line-height: 1;
}

.benefit-text {
    font-size: 0.9375rem;
    opacity: 0.95;
}

/* Account CTA Actions */
.account-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.cta-primary-btn {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #0f172a;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-btn-text {
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cta-btn-subtext {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.375rem;
}

.cta-secondary-btn {
    padding: 1.125rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.cta-trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.trust-icon {
    font-size: 1.125rem;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */

.newsletter {
    padding: 60px 0;
    background: #f8f9fa;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .newsletter-form {
        flex-direction: column;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    background: #2563eb;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* ==========================================
   BRAND STATEMENT SECTION
   ========================================== */

.brand-statement {
    padding: 80px 0;
    background: white;
}

.brand-content {
    max-width: 1100px;
    margin: 0 auto;
}

.brand-main {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.brand-main h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brand-intro {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.brand-promise {
    font-size: 1.375rem;
    color: #2c3e50;
    line-height: 1.6;
}

.brand-promise strong {
    color: #1e3a8a;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.brand-pillar {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.brand-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-left-color: #1e3a8a;
}

.pillar-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 1rem;
}

.brand-pillar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.brand-pillar p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pillar-metric {
    font-size: 0.875rem;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 6px;
    display: inline-block;
}

.brand-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 3rem;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .brand-proof {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
}

.proof-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid white;
}

.proof-quote p {
    font-size: 1.125rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.proof-quote cite {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 767px) {
    /* Adjust hero background for mobile */
    .hero {
        background-position: center center;
        background-size: cover;
        padding: 60px 0 50px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .brand-main h2 {
        font-size: 1.75rem;
    }

    .brand-intro {
        font-size: 1.125rem;
    }

    .brand-promise {
        font-size: 1.125rem;
    }
}