/* ============================================
   USOOL RESEARCH — LANDING PAGE DESIGN SYSTEM
   ============================================ */

/* ---- Google Fonts loaded in HTML ---- */

:root {
    /* Palette */
    --ur-green: #274A3A;
    --ur-green-light: #356B4E;
    --ur-green-dark: #1A3428;
    --ur-teal: #0ABAB5;
    --ur-teal-light: #2DD4CF;
    --ur-teal-dark: #089E9A;
    --ur-sand: #CCA470;
    --ur-sand-light: #DDC09A;
    --ur-sand-dark: #B08C56;
    --ur-cream: #F5F5F0;
    --ur-cream-dark: #ECEAE3;
    --ur-text: #1A1A18;
    --ur-text-secondary: #555550;
    --ur-text-muted: #8A8A82;
    --ur-white: #FEFEFE;

    /* Typography */
    --font-en: 'Montserrat', 'Inter', sans-serif;
    --font-ar: 'Noto Kufi Arabic', 'IBM Plex Sans Arabic', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 77, 46, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 77, 46, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 77, 46, 0.12);
    --shadow-glow: 0 0 60px rgba(204, 164, 112, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    font-family: var(--font-en);
    background: var(--ur-cream);
    color: var(--ur-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- RTL / Arabic Mode ---- */
[data-lang="ar"] {
    direction: rtl;
    font-family: var(--font-ar);
}

[data-lang="ar"] .landing-nav,
[data-lang="ar"] .hero-content,
[data-lang="ar"] .value-card,
[data-lang="ar"] .step-content,
[data-lang="ar"] .footer-inner,
[data-lang="ar"] h1,
[data-lang="ar"] h2,
[data-lang="ar"] h3,
[data-lang="ar"] p,
[data-lang="ar"] span,
[data-lang="ar"] a,
[data-lang="ar"] button {
    font-family: var(--font-ar);
}

[data-lang="ar"] .hero-tagline {
    letter-spacing: 0;
}

[data-lang="ar"] .brand-name {
    letter-spacing: 0;
}

/* ---- NAVIGATION ---- */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 245, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 77, 46, 0.06);
    transition: all 0.4s var(--ease-out);
}

.landing-nav.scrolled {
    background: rgba(245, 245, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ur-green);
}

.nav-brand-logo {
    height: 56px;
    width: auto;
}

.nav-brand-text {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--ur-green);
}

.nav-brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ur-teal);
    display: inline-block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: var(--ur-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s var(--ease-out);
}

.nav-link:hover {
    color: var(--ur-teal-dark);
}

.lang-toggle {
    background: none;
    border: 1.5px solid var(--ur-green);
    color: var(--ur-green);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    font-family: var(--font-ar);
    letter-spacing: 0;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-toggle:hover {
    background: var(--ur-green);
    color: var(--ur-cream);
}

.nav-cta {
    background: var(--ur-green);
    color: var(--ur-cream);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    border: 1.5px solid var(--ur-green);
}

.nav-cta:hover {
    background: var(--ur-green-light);
    border-color: var(--ur-green-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ---- HERO SECTION ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
}

/* Animated geometric grid background */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(26, 77, 46, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 77, 46, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 164, 112, 0.08) 0%, transparent 70%);
    animation: orbFloat 15s ease-in-out infinite;
}

@keyframes gridShift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.05);
    }

    66% {
        transform: translate(20px, -20px) scale(0.95);
    }
}

/* Second floating orb */
.hero-orb {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 77, 46, 0.05) 0%, transparent 70%);
    animation: orbFloat2 18s ease-in-out infinite;
    z-index: 0;
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.08);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-logo {
    display: block;
    height: 60px;
    width: auto;
    margin: 0 auto 28px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s forwards;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 77, 46, 0.06);
    border: 1px solid rgba(26, 77, 46, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ur-green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ur-teal);
}

.brand-name {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    color: var(--ur-green);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
}

.brand-name .sand-dot {
    color: var(--ur-teal);
}

.hero-tagline {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    color: var(--ur-text-secondary);
    letter-spacing: 2px;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s forwards;
}




.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.9s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ur-green);
    color: var(--ur-cream);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    border: 2px solid var(--ur-green);
}

.btn-primary:hover {
    background: var(--ur-green-light);
    border-color: var(--ur-green-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary .arrow {
    transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ur-green);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    border: 2px solid rgba(26, 77, 46, 0.2);
}

.btn-secondary:hover {
    border-color: var(--ur-green);
    background: rgba(26, 77, 46, 0.04);
    transform: translateY(-1px);
}


/* ---- SECTION COMMON ---- */
.section {
    padding: 120px 48px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ur-teal);
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--ur-teal);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--ur-green);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--ur-text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ---- VALUE PROPOSITION CARDS ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid .value-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 584px;
    margin: 0 auto;
    width: 100%;
}

/* Clickable card link */
.value-card-link {
    cursor: pointer;
    color: inherit;
}

.value-card {
    background: var(--ur-white);
    border: 1px solid rgba(26, 77, 46, 0.06);
    border-radius: 20px;
    padding: 44px 36px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ur-green), var(--ur-teal));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    background: rgba(26, 77, 46, 0.06);
    color: var(--ur-green);
}

.value-card:nth-child(2) .value-icon {
    background: rgba(10, 186, 181, 0.08);
    color: var(--ur-teal-dark);
}

.value-card:nth-child(3) .value-icon {
    background: rgba(26, 77, 46, 0.06);
    color: var(--ur-green);
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ur-green);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.value-desc {
    font-size: 15px;
    color: var(--ur-text-secondary);
    line-height: 1.7;
}

/* ---- HOW IT WORKS (TIMELINE) ---- */
.section-alt {
    background: var(--ur-green);
    color: var(--ur-cream);
}

.section-alt .section-label {
    color: var(--ur-teal-light);
}

.section-alt .section-label::before,
.section-alt .section-label::after {
    background: var(--ur-teal);
}

.section-alt .section-title {
    color: var(--ur-cream);
}

.section-alt .section-subtitle {
    color: rgba(245, 245, 240, 0.7);
}

.timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--ur-teal), rgba(10, 186, 181, 0.3), var(--ur-teal));
    transform: translateY(-50%);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ur-teal);
    color: var(--ur-green-dark);
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all 0.3s var(--ease-out);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(204, 164, 112, 0.4);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ur-cream);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: rgba(245, 245, 240, 0.6);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--ur-white);
    border-top: 1px solid rgba(26, 77, 46, 0.06);
    border-bottom: 1px solid rgba(26, 77, 46, 0.06);
    padding: 60px 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--ur-green);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-en);
}

.stat-label {
    font-size: 13px;
    color: var(--ur-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- CTA SECTION ---- */
.cta-section {
    padding: 120px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 164, 112, 0.08) 0%, transparent 70%);
}

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--ur-green);
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
}

.cta-subtitle {
    font-size: 17px;
    color: var(--ur-text-secondary);
    margin-bottom: 40px;
    position: relative;
}

/* ---- FOOTER ---- */
.landing-footer {
    background: var(--ur-green-dark);
    color: rgba(245, 245, 240, 0.6);
    padding: 48px 48px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

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

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 18px;
    color: var(--ur-cream);
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(245, 245, 240, 0.5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--ur-teal-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 245, 240, 0.08);
    text-align: center;
    font-size: 12px;
    color: rgba(245, 245, 240, 0.3);
}

/* ---- EDITORIAL TEXT BLOCKS ---- */
.editorial-block {
    max-width: 780px;
    margin: -32px auto 0;
    text-align: center;
}

.editorial-text {
    font-size: 17px;
    color: var(--ur-text-secondary);
    line-height: 1.85;
    margin-bottom: 24px;
}

.editorial-text:last-child {
    margin-bottom: 0;
}

.editorial-lead {
    font-size: 22px;
    font-weight: 600;
    color: var(--ur-green);
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.editorial-accent {
    font-size: 18px;
    font-weight: 700;
    color: var(--ur-teal);
    margin-top: 8px;
    letter-spacing: -0.2px;
}

/* ---- DARK SECTION (Professional) ---- */
.section-dark {
    background: var(--ur-green-dark);
    color: var(--ur-cream);
}

.section-dark .section-label {
    color: var(--ur-teal-light);
}

.section-dark .section-label::before,
.section-dark .section-label::after {
    background: var(--ur-teal);
}

.section-dark .section-title {
    color: var(--ur-cream);
}

.section-dark .editorial-text {
    color: rgba(245, 245, 240, 0.7);
}

/* ---- PROMISE GRID ---- */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.promise-card {
    text-align: center;
    padding: 48px 32px;
    border: 1px solid rgba(26, 77, 46, 0.08);
    border-radius: 20px;
    background: var(--ur-white);
    transition: all 0.4s var(--ease-out);
}

.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(10, 186, 181, 0.25);
}

.promise-icon {
    font-size: 28px;
    color: var(--ur-teal);
    margin-bottom: 20px;
    line-height: 1;
}

.promise-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ur-green);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.promise-card-desc {
    font-size: 15px;
    color: var(--ur-text-secondary);
    line-height: 1.6;
}

/* ---- UPDATED CTA SECTION ---- */
.cta-logo {
    height: 60px;
    width: auto;
    margin-bottom: 28px;
}

.cta-pretext {
    font-size: 17px;
    color: var(--ur-text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-brand {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--ur-green);
    letter-spacing: -1.5px;
    margin-bottom: 8px;
    position: relative;
}

.cta-tagline {
    font-size: 20px;
    font-weight: 300;
    color: var(--ur-text-secondary);
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    position: relative;
}

/* ---- FEATURE CARDS IN ALT SECTION ---- */
.section-alt .value-card {
    background: rgba(245, 245, 240, 0.08);
    border-color: rgba(245, 245, 240, 0.1);
}

.section-alt .value-card:hover {
    background: rgba(245, 245, 240, 0.12);
    border-color: rgba(245, 245, 240, 0.15);
}

.section-alt .value-card::before {
    background: linear-gradient(90deg, var(--ur-teal), var(--ur-teal-light));
}

.section-alt .value-title {
    color: var(--ur-cream);
}

.section-alt .value-desc {
    color: rgba(245, 245, 240, 0.65);
}

.section-alt .value-icon {
    background: rgba(10, 186, 181, 0.12);
    color: var(--ur-teal-light);
}

.section-alt .value-card:nth-child(2) .value-icon,
.section-alt .value-card:nth-child(3) .value-icon {
    background: rgba(10, 186, 181, 0.12);
    color: var(--ur-teal-light);
}

/* ---- HERO SUBHEADLINE STYLING ---- */
.hero-tagline {
    font-size: clamp(16px, 2vw, 20px);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal class - applied via JS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .timeline::before {
        display: none;
    }

    .timeline {
        flex-direction: column;
        gap: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* ---- NAV: compact for mobile ---- */
    .landing-nav {
        padding: 0 16px;
        height: 64px;
    }

    .nav-brand-logo {
        height: 48px;
    }

    .nav-actions {
        gap: 10px;
    }

    /* Hide Research link on mobile — it's in the footer */
    .nav-link {
        display: none;
    }

    .lang-toggle {
        padding: 6px 14px;
        font-size: 12px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* ---- HERO: eliminate whitespace ---- */
    .hero {
        min-height: auto;
        padding: 120px 24px 56px;
    }

    .hero-label {
        margin-bottom: 20px;
        font-size: 11px;
        padding: 6px 16px;
        letter-spacing: 1px;
    }

    .brand-name {
        margin-bottom: 16px;
    }

    .hero-tagline {
        margin-bottom: 12px;
    }

    /* ---- SECTIONS ---- */
    .section,
    .cta-section {
        padding: 56px 24px;
    }

    .values-grid,
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .editorial-block {
        padding: 0 8px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stats-bar {
        padding: 48px 24px;
    }

    .landing-footer {
        padding: 36px 24px calc(48px + env(safe-area-inset-bottom, 0px));
    }

    .value-card {
        padding: 32px 24px;
    }

    .promise-card {
        padding: 36px 24px;
    }

    .section-header {
        margin: 0 auto 32px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        letter-spacing: -1px;
    }

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

    .stat-value {
        font-size: 36px;
    }

    .section,
    .cta-section {
        padding: 48px 16px;
    }

    .hero {
        padding: 112px 16px 48px;
    }

    .stats-bar {
        padding: 40px 16px;
    }

    .landing-footer {
        padding: 28px 16px calc(40px + env(safe-area-inset-bottom, 0px));
    }
}

/* ---- ACCESSIBILITY UTILITIES ---- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- SOCIAL MEDIA STYLES ---- */
.footer-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-socials a {
    color: rgba(245, 245, 240, 0.5);
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: #0ABAB5;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-socials {
        justify-content: center;
        margin-top: 8px;
    }
}

.static-footer-socials {
    display: flex;
    gap: 16px;
    margin: 8px 0;
    align-items: center;
}

.static-footer-socials a {
    color: rgba(245, 245, 240, 0.6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
}

.static-footer-socials a:hover {
    color: #0ABAB5;
    transform: translateY(-2px);
}