/* --- GLOBAL DESIGN SYSTEM & VARIABLES --- */
:root {
    /* Premium Dark Theme */
    --bg-base: #0a0a0b;
    --bg-surface: #121214;
    --bg-surface-hover: #1c1c1f;
    --bg-elevated: rgba(255, 255, 255, 0.03);

    /* Brand Colors */
    --brand-orange: #FD5D07;
    --brand-orange-glow: rgba(253, 93, 7, 0.5);
    --brand-orange-light: #FF8A5C;
    --brand-orange-dark: #b54103;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Accents */
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-danger: #ef4444;

    /* Borders & Glass */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);
    --glass-bg: rgba(18, 18, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px -10px var(--brand-orange-glow);
    --shadow-glow-strong: 0 0 60px -10px var(--brand-orange-glow);

    /* Text Gradients */
    --gradient-text-start: #ffffff;
    --gradient-text-end: #a1a1aa;

    /* Animation Timing */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- LIGHT THEME VARIABLES --- */
[data-theme="light"] {
    /* Bright Theme */
    --bg-base: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-hover: #f1f5f9;
    --bg-elevated: rgba(0, 0, 0, 0.02);

    /* Brand Colors (Keep Orange) */
    --brand-orange: #FD5D07;
    --brand-orange-glow: rgba(253, 93, 7, 0.25);
    --brand-orange-light: #FF8A5C;
    --brand-orange-dark: #b54103;

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;

    /* Accents */
    --accent-success: #059669;
    --accent-warning: #d97706;
    --accent-danger: #dc2626;

    /* Borders & Glass */
    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.18);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(15, 23, 42, 0.08);

    /* Shadows */
    --shadow-sm: 0 2px 10px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 15px 40px -10px rgba(253, 93, 7, 0.15);
    --shadow-glow-strong: 0 20px 50px -10px rgba(253, 93, 7, 0.25);

    /* Text Gradients */
    --gradient-text-start: #0f172a;
    --gradient-text-end: #475569;
}

/* --- LIGHT THEME OVERRIDES FOR DEPTH --- */
[data-theme="light"] .glow-1 {
    background: radial-gradient(circle, rgba(253, 93, 7, 0.12) 0%, transparent 60%);
}

[data-theme="light"] .glow-2 {
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 60%);
}

[data-theme="light"] .bg-grid {
    opacity: 0.5;
}

/* --- RESET & TYPOGRAPHY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--brand-orange-glow);
    color: var(--text-primary);
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange);
}

/* --- FOUC PREVENTION --- */
html {
    visibility: hidden;
}

html.theme-loaded {
    visibility: visible;
}

/* --- BACKGROUND GLOWS & GRIDS (Stripe / Vercel vibe) --- */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, var(--border-subtle) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border-subtle) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    opacity: 0.3;
}

.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: pulseGlow 15s infinite alternate ease-in-out;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-orange) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(120, 30, 255, 0.3) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation-duration: 25s;
    animation-delay: 2s;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2) translate(-50px, 50px);
        opacity: 0.5;
    }

    100% {
        transform: scale(1) translate(50px, -50px);
        opacity: 0.3;
    }
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-text-start) 0%, var(--gradient-text-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-gradient-brand {
    background: linear-gradient(135deg, var(--brand-orange-light) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-base) !important;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--brand-orange);
    color: var(--text-primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-orange-light) 0%, var(--brand-orange) 100%);
    color: var(--text-primary) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(253, 93, 7, 0.4);
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-strong);
}

.btn-outline:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange) !important;
    background: rgba(253, 93, 7, 0.05);
}

/* --- GLASSMORPHISM & CARDS --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--border-strong), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    background: var(--bg-surface-hover);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    background: linear-gradient(135deg, var(--brand-orange), transparent);
    opacity: 1;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-normal);
}

nav.scrolled {
    height: 70px;
    background: var(--glass-bg);
    box-shadow: var(--shadow-md);
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    z-index: 1001;
}

.logo-icon {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 8px rgba(253, 93, 7, 0.6));
    transition: var(--transition-normal);
}

.site-logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--brand-orange);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.btn {
    padding: 0.5rem 1.5rem;
}

#theme-toggle {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    margin-left: 1rem;
}

#theme-toggle:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    background: var(--bg-surface-hover);
    transform: rotate(15deg);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

/* --- LAYOUT UTILS --- */
.container {
    padding: 0 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-padding {
    padding-top: 160px;
    padding-bottom: 160px;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* Badge / Pill */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(253, 93, 7, 0.1);
    color: var(--brand-orange);
    border: 1px solid rgba(253, 93, 7, 0.2);
    backdrop-filter: blur(4px);
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* --- BACK TO TOP BUTTON --- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--brand-orange-light);
    transform: translateY(-5px);
}

/* --- RESPONSIVE DEFAULT --- */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-base);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }
}

/* --- PRICING PLAN FEATURES --- */
.plan-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    text-align: left;
}

.plan-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.plan-features li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(253, 93, 7, 0.1);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(253, 93, 7, 0.2);
    transition: var(--transition-normal);
}

.plan-features li:hover i {
    background: var(--brand-orange);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

/* --- PRICING TABLES GLOBALLY --- */
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 3rem;
    background: var(--bg-surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}

.compare-table th,
.compare-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td {
    background: var(--bg-elevated);
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.compare-table th {
    background: var(--bg-elevated);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--border-strong);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    position: sticky;
    top: 80px;
    /* offset by nav height */
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Turbo Highlight Column */
.compare-table th:nth-child(4),
.compare-table td:nth-child(4) {
    background: rgba(253, 93, 7, 0.03);
    border-left: 1px solid var(--brand-orange-glow);
    border-right: 1px solid var(--brand-orange-glow);
}

.compare-table th:nth-child(4) {
    color: var(--brand-orange);
    background: rgba(253, 93, 7, 0.1);
}

.compare-table .check {
    color: var(--accent-success);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
}

/* --- PRICING GRID --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--bg-surface);
    padding: 0.25rem;
    border-radius: 9999px;
    border: 1px solid var(--border-subtle);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    color: var(--text-secondary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--text-primary) 0%, #d4d4d8 100%);
    color: var(--bg-base);
    box-shadow: var(--shadow-sm);
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin: 1rem 0;
    letter-spacing: -1px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0;
}

/* --- ZIG-ZAG FEATURE ROWS --- */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-visual {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.feature-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 93, 7, 0.1) 0%, transparent 60%);
    animation: rotateSlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateSlow {
    100% {
        transform: rotate(360deg);
    }
}

.feature-visual i {
    font-size: 6rem;
    color: var(--brand-orange);
    filter: drop-shadow(0 0 20px rgba(253, 93, 7, 0.4));
}

@media (max-width: 900px) {

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }
}

/* --- BENTO BOX GRID (PREMIUM) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.bento-box:hover {
    border-color: var(--brand-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.bento-box.large {
    grid-column: span 2;
}

.bento-box.accent {
    background: linear-gradient(135deg, rgba(253, 93, 7, 0.1), rgba(0, 0, 0, 0));
    border-color: var(--brand-orange-glow);
}

.bento-icon {
    font-size: 3.5rem;
    color: var(--brand-orange);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(253, 93, 7, 0.3));
}

.bento-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.bento-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-box.large {
        grid-column: span 1;
    }
}

.strike-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
}

/* --- FAQ SECTION --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-strong);
    background: var(--bg-surface-hover);
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--brand-orange);
    transition: var(--transition-normal);
}

.faq-item[open] summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    margin-top: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* --- TESTIMONIALS --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(253, 93, 7, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange-light), var(--brand-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}