/* =====================================================
   SCDPCT — Website Stylesheet
   Brand: Sickle Cell Disease Patients Community of Tanzania
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --brand-red:       #9B1C1C;
    --brand-red-dark:  #7B1414;
    --brand-red-light: #BE2626;
    --brand-red-bg:    #FEF2F2;
    --brand-gray:      #6B7280;
    --brand-dark:      #111827;
    --brand-white:     #FFFFFF;
    --brand-light-bg:  #F9FAFB;
    --brand-border:    #E5E7EB;
    --transition:      0.3s ease;
    --radius:          12px;
    --shadow-sm:       0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow-md:       0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
    --shadow-lg:       0 10px 25px rgba(0,0,0,.10), 0 4px 10px rgba(0,0,0,.06);
    --shadow-xl:       0 20px 50px rgba(0,0,0,.12);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--brand-dark);
    background: var(--brand-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-red); }
img { max-width: 100%; }

/* ---------- Utility Classes ---------- */
.text-brand     { color: var(--brand-red) !important; }
.bg-brand       { background-color: var(--brand-red) !important; }
.bg-brand-dark  { background-color: var(--brand-red-dark) !important; }
.bg-brand-light { background-color: var(--brand-red-bg) !important; }
.border-brand   { border-color: var(--brand-red) !important; }
.section-py     { padding: 96px 0; }
.section-py-sm  { padding: 64px 0; }

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-red);
    background: var(--brand-red-bg);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--brand-gray);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ---------- Buttons ---------- */
.btn-brand {
    background: var(--brand-red);
    color: #fff;
    border: 2px solid var(--brand-red);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9375rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-brand:hover {
    background: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155,28,28,.35);
}

.btn-brand-outline {
    background: transparent;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9375rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-brand-outline:hover {
    background: var(--brand-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155,28,28,.25);
}

.btn-white {
    background: #fff;
    color: var(--brand-red);
    border: 2px solid #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9375rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-white:hover {
    background: var(--brand-red-bg);
    border-color: var(--brand-red-bg);
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.7);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9375rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-white-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.site-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    padding: 16px 0;
    transition: all var(--transition);
}

.site-navbar.scrolled {
    background: rgba(255,255,255,.97);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-navbar .nav-logo img {
    height: 44px;
    width: auto;
    transition: height var(--transition);
}

.site-navbar.scrolled .nav-logo img { height: 38px; }

.site-navbar .nav-link {
    font-weight: 500;
    font-size: .9375rem;
    padding: 6px 14px !important;
    border-radius: 8px;
    transition: all var(--transition);
}

.navbar-light-mode .nav-link { color: #fff !important; }
.navbar-light-mode.scrolled .nav-link { color: var(--brand-dark) !important; }
.navbar-light-mode .nav-link:hover,
.navbar-light-mode.scrolled .nav-link:hover,
.site-navbar .nav-link:hover { color: var(--brand-red) !important; background: var(--brand-red-bg); }
.site-navbar .nav-link.active { color: var(--brand-red) !important; }

.navbar-light-mode .navbar-toggler { border-color: rgba(255,255,255,.6); }
.navbar-light-mode.scrolled .navbar-toggler { border-color: var(--brand-border); }
.navbar-light-mode .navbar-toggler-icon { filter: invert(1); }
.navbar-light-mode.scrolled .navbar-toggler-icon { filter: none; }

/* ---------- Breadcrumb Hero (Inner Pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--brand-red-dark) 0%, var(--brand-red) 60%, var(--brand-red-light) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}

.page-hero .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.85);
    max-width: 560px;
}

/* ---------- Hero (Home) ---------- */
.home-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--brand-red-dark) 0%, var(--brand-red) 55%, #C0392B 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: rgba(0,0,0,.08);
    border-radius: 50%;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.06) 1px, transparent 0);
    background-size: 40px 40px;
}

.home-hero .hero-content { position: relative; z-index: 2; }

.home-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: .8125rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
}

.home-hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 24px;
}

.home-hero h1 .highlight {
    position: relative;
    display: inline-block;
}

.home-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0; right: 0;
    height: 6px;
    background: rgba(255,255,255,.3);
    border-radius: 3px;
}

.home-hero p.lead {
    font-size: 1.125rem;
    color: rgba(255,255,255,.88);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 44px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.75);
    font-size: .875rem;
}

.hero-trust .trust-avatars {
    display: flex;
}

.hero-trust .trust-avatars span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.6);
    background: var(--brand-red-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6875rem;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
}

.hero-trust .trust-avatars span:first-child { margin-left: 0; }

/* Phone mockup */
.hero-phone-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
}

.phone-mockup {
    width: 280px;
    max-width: 100%;
    background: #1C1C1E;
    border-radius: 44px;
    padding: 16px;
    box-shadow: 0 40px 80px rgba(0,0,0,.35), 0 0 0 2px rgba(255,255,255,.1);
    margin: 0 auto;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #1C1C1E;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-screen {
    background: linear-gradient(180deg, var(--brand-red-bg) 0%, #fff 60%);
    border-radius: 32px;
    overflow: hidden;
    height: 500px;
    position: relative;
}

.phone-screen-inner {
    padding: 40px 16px 16px;
}

.phone-app-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

.phone-app-bar h5 {
    font-size: .875rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

.phone-greeting {
    font-size: .6875rem;
    color: var(--brand-gray);
    margin-bottom: 2px;
}

.phone-name {
    font-size: .875rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.phone-stat-card {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    border-radius: 16px;
    padding: 16px;
    color: #fff;
    margin-bottom: 12px;
}

.phone-stat-card .stat-label {
    font-size: .65rem;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.phone-stat-card .stat-value {
    font-size: 1.375rem;
    font-weight: 800;
}

.phone-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.phone-pill {
    background: var(--brand-red-bg);
    color: var(--brand-red);
    font-size: .6rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.phone-mini-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
}

.phone-mini-card .mini-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--brand-red-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-size: .8rem;
    flex-shrink: 0;
}

.phone-mini-card .mini-text { font-size: .65rem; }
.phone-mini-card .mini-text strong { display: block; font-weight: 700; color: var(--brand-dark); }
.phone-mini-card .mini-text span  { color: var(--brand-gray); }

/* ---------- Feature Cards ---------- */
.feature-card {
    background: var(--brand-white);
    border: 1.5px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
    height: 100%;
}

.feature-card:hover {
    border-color: var(--brand-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--brand-red-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-red);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--brand-red);
    color: #fff;
}

.feature-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.feature-card p {
    color: var(--brand-gray);
    font-size: .9375rem;
    line-height: 1.65;
    margin: 0;
}

/* ---------- Stats Section ---------- */
.stats-section {
    background: linear-gradient(135deg, var(--brand-red-dark) 0%, var(--brand-red) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

.stat-box { text-align: center; padding: 20px; }

.stat-box .stat-num {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    color: rgba(255,255,255,.75);
    font-size: .9375rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.2);
    align-self: center;
}

/* ---------- How It Works ---------- */
.step-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    font-size: 1.375rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(155,28,28,.3);
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 72px;
    left: 60%;
    right: -40%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--brand-red) 0, var(--brand-red) 6px, transparent 6px, transparent 12px);
}

.step-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--brand-gray);
    font-size: .9375rem;
    margin: 0;
}

/* ---------- Waitlist Section ---------- */
.waitlist-section {
    background: linear-gradient(135deg, var(--brand-red-dark) 0%, var(--brand-red) 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.06) 1px, transparent 0);
    background-size: 40px 40px;
}

.waitlist-card {
    background: #fff;
    border-radius: 20px;
    padding: 56px 48px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.waitlist-form .form-control {
    border: 1.5px solid var(--brand-border);
    border-radius: 50px;
    padding: 14px 24px;
    font-size: .9375rem;
    transition: all var(--transition);
}

.waitlist-form .form-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(155,28,28,.1);
}

/* ---------- Contact Cards ---------- */
.contact-info-card {
    background: var(--brand-white);
    border: 1.5px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--brand-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-info-card .ci-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-red-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--brand-red);
    margin: 0 auto 16px;
}

.contact-info-card h5 {
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--brand-gray);
    margin-bottom: 8px;
}

.contact-info-card p { margin: 0; font-size: .9375rem; color: var(--brand-dark); font-weight: 500; }

/* ---------- Contact Form ---------- */
.contact-form-wrap {
    background: #fff;
    border: 1.5px solid var(--brand-border);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrap .form-label {
    font-weight: 600;
    font-size: .875rem;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border: 1.5px solid var(--brand-border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .9375rem;
    transition: all var(--transition);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(155,28,28,.08);
}

textarea.form-control { resize: vertical; min-height: 140px; }

/* ---------- About Page ---------- */
.mission-card {
    border-radius: var(--radius);
    padding: 40px 32px;
    height: 100%;
}

.mission-card.mission { background: var(--brand-red-bg); border: 1.5px solid rgba(155,28,28,.15); }
.mission-card.vision  { background: var(--brand-light-bg); border: 1.5px solid var(--brand-border); }

.mission-card .mc-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.mission-card p { color: var(--brand-gray); margin: 0; line-height: 1.7; }

.value-item {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--brand-border);
}
.value-item:last-child { border-bottom: none; }

.value-item .vi-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--brand-red-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-item h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.value-item p  { color: var(--brand-gray); font-size: .9rem; margin: 0; }

.scd-info-card {
    border-radius: var(--radius);
    padding: 36px 32px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f87171' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") var(--brand-red-bg);
    border: 1.5px solid rgba(155,28,28,.15);
}

/* ---------- Team / Story ---------- */
.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-red-bg);
    color: var(--brand-red);
    font-size: .8125rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.timeline-item {
    position: relative;
    padding-left: 56px;
    padding-bottom: 36px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background: var(--brand-border);
}

.timeline-item:last-child::before { display: none; }

.timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .875rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(155,28,28,.3);
}

.timeline-item h5 { font-weight: 700; margin-bottom: 6px; }
.timeline-item p  { color: var(--brand-gray); margin: 0; font-size: .9375rem; }

/* ---------- Footer ---------- */
.site-footer {
    background: #0F0F0F;
    color: rgba(255,255,255,.75);
    padding: 72px 0 0;
}

.site-footer .footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }

.site-footer .footer-desc {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    max-width: 280px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.site-footer .footer-social { display: flex; gap: 10px; }

.site-footer .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: all var(--transition);
}

.site-footer .social-btn:hover {
    background: var(--brand-red);
    color: #fff;
    transform: translateY(-2px);
}

.site-footer .footer-heading {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 20px;
}

.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }

.site-footer .footer-links li { margin-bottom: 10px; }

.site-footer .footer-links a {
    color: rgba(255,255,255,.65);
    font-size: .9375rem;
    transition: all var(--transition);
}

.site-footer .footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer .footer-bottom p { margin: 0; font-size: .875rem; color: rgba(255,255,255,.4); }

.footer-badge {
    background: rgba(155,28,28,.3);
    border: 1px solid rgba(155,28,28,.5);
    color: rgba(255,255,255,.7);
    font-size: .75rem;
    padding: 4px 14px;
    border-radius: 50px;
}

/* ---------- Alert / Flash ---------- */
.flash-success {
    background: #ECFDF5;
    border: 1px solid #6EE7B7;
    color: #065F46;
    border-radius: 10px;
    padding: 14px 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash-error {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #7F1D1D;
    border-radius: 10px;
    padding: 14px 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---------- Download Badge ---------- */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 10px 22px;
    border-radius: 12px;
    transition: all var(--transition);
    font-size: .875rem;
}

.store-badge:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

.store-badge .store-icon { font-size: 1.5rem; }
.store-badge .store-text { display: flex; flex-direction: column; }
.store-badge .store-text small { font-size: .65rem; opacity: .8; }
.store-badge .store-text strong { font-size: .9375rem; font-weight: 700; }

/* ---------- App Screenshots Showcase ---------- */
.app-showcase {
    background: var(--brand-light-bg);
    padding: 96px 0;
}

.showcase-phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding: 20px 0;
}

.showcase-phone {
    width: 200px;
    background: #1C1C1E;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,.25), 0 0 0 1.5px rgba(255,255,255,.1);
}

.showcase-phone.center-phone {
    width: 230px;
    transform: scale(1.05);
    z-index: 2;
}

.showcase-phone .sp-screen {
    background: var(--brand-white);
    border-radius: 28px;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.showcase-phone.center-phone .sp-screen { height: 440px; }

.sp-screen-top {
    background: var(--brand-red);
    padding: 14px 16px 20px;
}

.sp-screen-top .sp-title {
    color: rgba(255,255,255,.8);
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sp-screen-top .sp-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
}

.sp-screen-body { padding: 14px 12px; }

.sp-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.sp-card {
    flex: 1;
    background: var(--brand-red-bg);
    border-radius: 10px;
    padding: 12px 10px;
    font-size: .6rem;
}

.sp-card .sp-card-label { color: var(--brand-gray); margin-bottom: 4px; }
.sp-card .sp-card-value { font-weight: 800; font-size: .875rem; color: var(--brand-dark); }

.sp-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--brand-light-bg);
    border-radius: 8px;
    margin-bottom: 6px;
}

.sp-list-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-red); flex-shrink: 0; }
.sp-list-text { font-size: .6rem; color: var(--brand-dark); }

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--brand-white);
    border: 1.5px solid var(--brand-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--brand-red);
    box-shadow: var(--shadow-md);
}

.testimonial-card .stars { color: #F59E0B; margin-bottom: 14px; font-size: .9rem; }

.testimonial-card p {
    color: #374151;
    font-size: .9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card .t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: .9375rem;
    flex-shrink: 0;
}

.testimonial-card .t-name {
    font-weight: 700;
    font-size: .9375rem;
    color: var(--brand-dark);
    margin-bottom: 2px;
}

.testimonial-card .t-role { color: var(--brand-gray); font-size: .8125rem; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero-phone-wrap { margin-top: 48px; }
    .step-connector  { display: none; }
    .waitlist-card   { padding: 40px 28px; }
    .contact-form-wrap { padding: 32px 24px; }
    .showcase-phones { flex-direction: row; overflow-x: auto; }
}

@media (max-width: 768px) {
    .section-py    { padding: 64px 0; }
    .home-hero h1  { font-size: 2.25rem; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .stat-divider  { display: none; }
    .showcase-phone { width: 160px; }
    .showcase-phone.center-phone { width: 185px; }
    .showcase-phone .sp-screen { height: 310px; }
    .showcase-phone.center-phone .sp-screen { height: 360px; }
    #navBrandName  { display: none !important; }
}

@media (max-width: 576px) {
    .waitlist-card { padding: 28px 20px; }
    .home-hero     { padding-top: 100px; padding-bottom: 60px; }
    .phone-mockup  { width: 240px; }
    .phone-screen  { height: 420px; }
}
