/* ==========================================================
   APPLE-STYLE DARK MODE — ELEGANT, MINIMAL, PREMIUM
========================================================== */

:root {
    --bg-main: #0b0b0d;             /* Pure dark slate */
    --bg-surface: #111113;          /* Slightly lighter surface */
    --bg-elevated: #161618;         /* Elevated regions */

    --border-subtle: rgba(255,255,255,0.07);

    --text-main: #f6f6f7;
    --text-secondary: #b5b5b8;
    --text-soft: #8b8b8f;

    --accent-pink: #ee2e5d;         /* still your colour, used sparingly */
    --accent-cyan: #67c9d1;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 6px rgba(0,0,0,0.18);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.22);
    --shadow-lg: 0 8px 26px rgba(0,0,0,0.28);

    --container-width: 1160px;
}


/* ==========================================================
   GLOBAL
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.4;
    scroll-behavior: smooth;
}

/* Containers */
.section {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 24px 0;
    position: relative;
}

/* Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-main);
}

.section-subtitle {
    margin: 0 0 40px;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.92rem;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: var(--accent-pink);
    color: white;
}

.btn-primary:hover {
    background: #ff4d78;
}

.btn-secondary {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(103,201,209,0.12);
}


/* ==========================================================
   PREMIUM SAAS NAVBAR — FROSTED, PINK BRAND, FIXED SPACING
========================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 50;

    /* Bring back the Apple-style glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    background: rgba(15, 15, 17, 0.55);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT CLUSTER -------------------------------------------------- */
.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo */
.nav-logo {
    height: 42px;  /* FIX huge image issue */
    width: auto;
    display: block;
}

/* Brand text (BA LIVE) — PINK again */
.brand-text {
    font-size: 1.28rem;
    font-weight: 700;
    color: #ff2f85;               /* BA LIVE PINK */
    letter-spacing: 0.3px;
}

/* Menu Links */
.nav-links-desktop a {
    margin-left: 24px;
    color: var(--text-secondary);
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s ease;
}

.nav-links-desktop a:hover {
    color: #ffffff;
}

/* RIGHT SIDE CTA -------------------------------------------------- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Login text */
.nav-login {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
}
.nav-dashboard,
.mobile-dashboard {
    display: none;
}
/* Enable dashboard link */
.nav-dashboard,
.mobile-dashboard {
    display: inline-block !important;
}
.nav-login:hover {
    color: #ffffff;
}

/* SIGN UP BUTTON — Pink, rounded-pill */
.nav-signup-btn {
    padding: 10px 22px;
    background: #ff2f85;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;

    transition: background 0.2s ease;
}

.nav-signup-btn:hover {
    background: #ff4c98;
}
.nav-brand {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-text {
    font-size: 1.28rem;
    font-weight: 700;
    color: #ff2f85;
    text-decoration: none !important;
}

/* MOBILE MENU ----------------------------------------------------- */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 20px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(20,20,22,0.95);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 12px;

    position: absolute;
    right: 24px;
    top: 78px;
}

.mobile-menu a {
    padding: 10px 0;
    color: white;
    text-decoration: none;
}

.mobile-signup {
    color: #ff2f85;
    font-weight: 600;
}

/* RESPONSIVE ------------------------------------------------------ */
@media (max-width: 900px) {
    .nav-links-desktop,
    .nav-right {
        display: none;
    }

    .burger {
        display: flex;
    }
}


/* MOBILE */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 20px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0f0f11;
    padding: 20px;
    border-radius: 8px;
    position: absolute;
    right: 24px;
    top: 70px;
}

.mobile-menu a {
    padding: 10px 0;
    color: white;
    text-decoration: none;
}

.mobile-signup {
    color: #ff2f85;
    font-weight: 600;
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 900px) {
    .nav-links-desktop,
    .nav-right {
        display: none;
    }
    .burger {
        display: flex;
    }
}


/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 34px;
    height: 26px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.burger span {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #ffffff;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: var(--bg-elevated);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 24px;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    display: block;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 22px;
}


/* ==========================================================
   HERO — Minimal Apple style
========================================================== */

.hero {
    position: relative;
    padding: 140px 24px 120px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-content {
    max-width: 720px;
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 700;
}

.hero h1 span {
    color: var(--accent-pink);
}

.hero-subtext {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 26px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* ==========================================================
   SERVICES — Flat, balanced cards
========================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
    margin-top: 36px;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
    border-color: rgba(255,255,255,0.14);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 32px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.service-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.service-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-soft);
}


/* ==========================================================
   WHY — Minimal, simple depth
========================================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
    margin-top: 36px;
}

.why-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.why-icon {
    width: 34px;
    margin-bottom: 12px;
}

.why-card h3 {
    margin: 0 0 8px;
    font-size: 1.03rem;
}

.why-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}


/* ==========================================================
   FEATURES — Accordion + Image
========================================================== */

.features {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
    gap: 40px;
    margin-bottom: 40px;
}

.accordion {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 10px 18px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.accordion-item:last-of-type {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    text-align: left;
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-item.active .accordion-header {
    color: var(--accent-pink);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease;
}

.accordion-item.active .accordion-content {
    max-height: 140px;
    opacity: 1;
}

.accordion-content p {
    margin: 0 0 14px;
    color: var(--text-soft);
}

.arrow {
    border: solid var(--text-secondary);
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.accordion-item.active .arrow {
    transform: rotate(-135deg);
    border-color: var(--accent-pink);
}

.feature-image {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}


/* ==========================================================
   HOW — Simple cards
========================================================== */

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
    margin-top: 30px;
}

.how-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 20px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.how-card h3 {
    margin: 0 0 6px;
}

.how-card p {
    margin: 0;
    color: var(--text-soft);
}


/* ==========================================================
   TESTIMONIALS — Simple
========================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
    margin-top: 26px;
}

.testimonial-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    margin: 0 0 8px;
}

.testimonial-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}


/* ==========================================================
   CTA SPLIT
========================================================== */

.cta-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
    margin-top: 60px;
}

.cta-box {
    background: var(--bg-surface);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.cta-box h3 {
    margin: 0 0 6px;
}

.cta-box p {
    margin: 0 0 14px;
    color: var(--text-soft);
}


/* ==========================================================
   FAQ
========================================================== */

.faq-list {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
}

.faq-list details {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-list details:last-of-type {
    border-bottom: none;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 500;
}

.faq-list p {
    margin: 6px 0 0;
    color: var(--text-soft);
}


/* ==========================================================
   FOOTER
========================================================== */

.footer {
    margin-top: 80px;
    padding: 24px;
    text-align: center;
    background: var(--bg-main);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.footer-links {
    margin: 10px 0 14px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.15s ease;
}

.footer-links a:hover {
    opacity: 1;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1024px) {
    .services-grid,
    .why-grid,
    .how-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav-links-desktop {
        display: none;
    }
    .burger {
        display: flex;
    }
    .cta-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .services-grid,
    .why-grid,
    .how-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   DASHBOARD LAYOUT
========================================================== */

.dashboard-main {
    padding-bottom: 60px;
}

/* Creator header */
.dashboard-header {
    padding-top: 60px;
}

.creator-summary-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.creator-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.creator-avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    object-fit: cover;
}

.creator-name {
    margin: 0;
    font-size: 1.2rem;
}

.creator-meta {
    margin: 2px 0 0;
    font-size: 0.87rem;
    color: var(--text-soft);
}

.creator-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #3ddc84; /* soft green */
}

/* Overview grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
    gap: 32px;
    align-items: flex-start;
}

.overview-left,
.overview-right {
    margin-top: 40px;
}

/* Overview card */
.overview-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 20px 20px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 22px;
}

/* Ring */
.overview-ring {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ring {
    --progress-angle: 0deg;

    width: 120px;
    height: 120px;
    border-radius: 999px;
    background:
        conic-gradient(var(--accent-pink) var(--progress-angle),
                       #252528 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-inner {
    width: 82%;
    height: 82%;
    border-radius: inherit;
    background: var(--bg-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ring-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.ring-label {
    font-size: 0.78rem;
    color: var(--text-soft);
}

.overview-text p {
    margin: 2px 0;
    font-size: 0.9rem;
}

.change-text {
    color: var(--text-soft);
}

/* Progress bars */
.overview-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.metric-row {
    font-size: 0.88rem;
}

.metric-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.metric-target {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: var(--text-soft);
}

.progress-bar {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: #161618;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: var(--accent-cyan);
    border-radius: inherit;
    transition: width 0.3s ease;
}

/* KPI grid (right side) */
.kpi-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.kpi-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    padding: 14px 14px;
    box-shadow: var(--shadow-sm);
    font-size: 0.86rem;
}

.kpi-label {
    margin: 0 0 4px;
    color: var(--text-soft);
}

.kpi-value {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 600;
}

.kpi-meta {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.78rem;
}

.kpi-meta-change.negative {
    color: #ff5b5b;
}

.kpi-meta-change.positive {
    color: #34c759;
}

/* Training hub */
.training-section {
    padding-top: 60px;
}

.training-header {
    margin-bottom: 18px;
}

.training-stats-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.training-pill {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    font-size: 0.83rem;
    color: var(--text-secondary);
}

.training-pill span {
    font-weight: 600;
    color: var(--text-main);
}

.training-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.training-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.88rem;
}

.training-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.training-title {
    font-weight: 600;
}

.training-tag {
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.training-desc {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.84rem;
}

/* simple progress bar for training */
.training-progress {
    margin-top: 4px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Responsive tweaks */
@media (max-width: 960px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .creator-summary-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   AUTH SPLIT SCREEN LAYOUT
========================================================== */

.auth-wrapper {
    display: flex;
    height: calc(100vh - 80px);
    background: #0b0b0d;
}

/* LEFT SIDE — gradient brand panel */
.auth-left {
    flex: 1.2;
    background: radial-gradient(
        circle at top left,
        rgba(176, 71, 255, 0.35) 0%,
        rgba(115, 0, 255, 0.30) 25%,
        rgba(10, 10, 12, 1) 75%
    );
    padding: 60px;
    display: flex;
    align-items: center;
}

.auth-left-inner {
    max-width: 420px;
}

.auth-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* RIGHT SIDE — form card */
.auth-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.auth-card {
    width: 380px;
    background: #111113;
    padding: 40px 32px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.form-title {
    font-size: 1.7rem;
    margin-bottom: 6px;
    font-weight: 700;
    color: #fff;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 26px;
}

/* Input styling */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-form input {
    width: 100%;
    padding: 14px 16px;
    background: #0f0f11;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

/* Login Button */
.auth-btn {
    margin-top: 6px;
    padding: 14px;
    width: 100%;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
}

/* Switch link */
.auth-switch {
    margin-top: 20px;
    text-align: center;
    color: var(--text-secondary);
}

.auth-switch a {
    color: var(--accent-cyan);
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
    .auth-wrapper {
        flex-direction: column;
        height: auto;
    }
    .auth-left,
    .auth-right {
        flex: unset;
        width: 100%;
    }
    .auth-left {
        padding: 50px 28px;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .auth-left-inner {
        max-width: 90%;
    }
    .auth-card {
        margin-top: 24px;
    }
}











/* ============================================
   ABOUT PAGE — FIXED HERO + CLEAN DARK LAYOUT
============================================ */

/* Remove weird spacing caused by default section padding */
.about-page .about-hero {
    padding: 0;
    margin-top: -80px; /* Pull hero up UNDER navbar */
}

/* Make hero full-height and flush */
.about-hero {
    position: relative;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600&auto=format&fit=crop");

    background-size: cover;
    background-position: center;
}

/* Fix hero text readability */
.about-hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.about-hero-eyebrow {
    color: #eee;
    opacity: 0.85;
    letter-spacing: 2px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.about-hero-sub {
    color: #ddd;
    font-size: 1.1rem;
}

/* Smooth fade from hero → dark content */
.about-section {
    background: linear-gradient(
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.6) 40%,
        #0b0b0d 100%
    );
    padding-top: 60px;
    padding-bottom: 80px;
}

/* WHAT WE STAND FOR text fix */
.about-standfor h2 {
    color: #f6f6f7;
    text-align: center;
}

.about-kicker {
    color: #ff2f85;
    text-align: center;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Card fixes */
.why-grid {
    margin-top: 40px;
}

.why-card {
    border: 1px solid rgba(255,255,255,0.1);
    background: #161618;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
/* GRID — MOBILE RESPONSIVE */
.about-cards-row,
.why-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: #161618;
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    padding: 24px;
    border-radius: 14px;
    text-align: left;
    transition: 0.25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}