/* ================================================
   PhotoValid - Landing Page v2
   Emotion-driven, benefit-focused, trust-building
   ================================================ */

:root {
    --primary: #0A84FF;
    --primary-dark: #0066D6;
    --green: #30D158;
    --red: #FF453A;
    --yellow: #FFD60A;
    --orange: #FF9F0A;

    --bg: #0A1628;
    --bg-card: #12223A;
    --bg-elevated: #1A2D45;
    --bg-surface: #162234;

    --text: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Scroll animation base */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.95rem;
}

.logo-text { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.3px; }

.nav-links {
    display: flex; list-style: none; gap: 2rem;
}
.nav-links a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.menu-toggle {
    display: none; flex-direction: column;
    background: none; border: none; cursor: pointer; gap: 5px; padding: 4px;
}
.menu-toggle span {
    width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: absolute; top: 56px; left: 0; right: 0;
        background: var(--bg-card);
        flex-direction: column; gap: 0;
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-links.active { max-height: 300px; }
    .nav-links a { display: block; padding: 0.9rem 24px; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
}

/* ================================================
   STORE BUTTONS (proper App Store / Google Play)
   ================================================ */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.12);
    min-width: 170px;
}
.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.apple-btn {
    background: #000;
    color: #fff;
}
.google-btn {
    background: var(--bg-elevated);
    color: #fff;
}

.store-icon {
    width: 22px; height: 22px; flex-shrink: 0;
}
.store-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-label { font-size: 0.65rem; opacity: 0.8; font-weight: 400; }
.store-name { font-size: 1rem; font-weight: 600; letter-spacing: -0.2px; }

/* ================================================
   HERO
   ================================================ */
.hero {
    padding: 80px 24px 60px;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(10,132,255,0.06), transparent),
        radial-gradient(ellipse 40% 40% at 80% 30%, rgba(255,69,58,0.04), transparent);
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 69, 58, 0.1);
    border: 1px solid rgba(255, 69, 58, 0.2);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 0.5rem;
}

.hero-sub-headline {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}
.hero-description strong { color: var(--red); font-weight: 600; }
.hero-description em { color: var(--green); font-style: normal; font-weight: 600; }

.hero-cta {
    display: flex; gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Phone Mockup */
.hero-visual { display: flex; justify-content: center; }

.phone-mockup {
    width: 280px;
    background: #000;
    border-radius: 36px;
    padding: 8px;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.08);
    position: relative;
}

.phone-notch {
    width: 100px; height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: var(--bg);
    border-radius: 28px;
    overflow: hidden;
    margin-top: -12px;
    padding: 28px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 480px;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}
.screen-country {
    font-size: 0.75rem; font-weight: 600;
}
.screen-status {
    font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 6px;
}
.pass-status {
    background: rgba(48,209,88,0.15);
    color: var(--green);
}

.screen-photo-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}
.photo-silhouette {
    width: 140px; height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.passport-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.face-oval {
    position: absolute;
    top: 8%; left: 14%; right: 14%; bottom: 28%;
    border: 2px dashed rgba(10,132,255,0.5);
    border-radius: 50%;
    animation: pulse-guide 3s ease-in-out infinite;
}
@keyframes pulse-guide {
    0%, 100% { border-color: rgba(10,132,255,0.5); }
    50% { border-color: rgba(10,132,255,0.2); }
}

.guide-label {
    position: absolute;
    bottom: 6px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    color: rgba(10,132,255,0.6);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.screen-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.screen-check {
    font-size: 0.6rem;
    padding: 5px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.screen-check.pass {
    background: rgba(48,209,88,0.08);
    color: var(--green);
}
.screen-check.pass span { font-weight: 700; }

.screen-download-btn {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.4rem; }
    .hero-sub-headline { font-size: 1.3rem; }
    .hero-description { margin: 0 auto 2rem; }
    .hero-cta { justify-content: center; }
    .hero-badge { margin: 0 auto 1.5rem; }
    .hero-note { text-align: center; }
    .hero-visual { order: -1; }
    .phone-mockup { width: 240px; }
    .phone-screen { min-height: 400px; }
}

/* ================================================
   SOCIAL PROOF STATS
   ================================================ */
.social-proof {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem 24px;
    background: rgba(10,132,255,0.02);
}

.proof-items {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.proof-item { text-align: center; flex: 1; }
.proof-number {
    font-size: 2.2rem; font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.proof-number.static {
    background: linear-gradient(135deg, var(--green), #00C853);
    -webkit-background-clip: text;
    background-clip: text;
}
.proof-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.2rem;
}

.proof-divider {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .proof-items { flex-wrap: wrap; gap: 1.5rem; }
    .proof-divider { display: none; }
    .proof-item { min-width: 40%; }
    .proof-number { font-size: 1.8rem; }
}

/* ================================================
   REJECTION DATA + CHART
   ================================================ */
.rejection-data {
    padding: 80px 24px;
    background:
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(255,69,58,0.04), transparent);
}

.data-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.data-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 1rem;
}

.data-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Horizontal bar reasons */
.rejection-reasons { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }

.reason { display: flex; flex-direction: column; gap: 0.3rem; }
.reason-bar {
    height: 8px;
    border-radius: 4px;
    background: var(--red);
    width: 0%;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.8;
}
.reason-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.reason-label { font-size: 0.85rem; color: var(--text-secondary); }
.reason-pct { font-size: 0.85rem; font-weight: 700; color: var(--red); }

.data-source {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Chart card */
.chart-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.chart-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.chart-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.bar-chart { display: flex; flex-direction: column; gap: 1.2rem; }
.chart-row { display: flex; align-items: center; gap: 1rem; }
.chart-label {
    font-size: 0.78rem; font-weight: 500;
    color: var(--text-secondary);
    min-width: 120px;
    text-align: right;
}
.chart-bar-container { flex: 1; height: 28px; background: rgba(255,255,255,0.04); border-radius: 6px; overflow: hidden; }
.chart-bar {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.chart-bar.danger { background: linear-gradient(90deg, var(--red), #CC3630); }
.chart-bar.warning { background: linear-gradient(90deg, var(--orange), #CC7F08); }
.chart-bar.neutral { background: linear-gradient(90deg, var(--text-muted), #4A5568); }
.chart-bar.success { background: linear-gradient(90deg, var(--green), #28B84C); min-width: 60px; }

.chart-footer {
    display: flex; gap: 1.5rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.chart-legend {
    font-size: 0.72rem; color: var(--text-muted); font-weight: 500;
    display: flex; align-items: center; gap: 0.4rem;
}
.chart-legend::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
}
.danger-dot::before { background: var(--red); }
.success-dot::before { background: var(--green); }

@media (max-width: 900px) {
    .data-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .data-text h2 { font-size: 1.8rem; }
    .chart-label { min-width: 90px; font-size: 0.7rem; }
}

/* ================================================
   COMPARISON (Us vs Them)
   ================================================ */
.comparison {
    padding: 80px 24px;
    background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(10,132,255,0.04), transparent);
}

.comparison h2 {
    font-size: 2.2rem; font-weight: 800;
    letter-spacing: -0.8px; line-height: 1.2;
    margin-bottom: 3rem;
    max-width: 700px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.comparison-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid;
}

.comparison-card.bad {
    background: rgba(255,69,58,0.04);
    border-color: rgba(255,69,58,0.15);
}
.comparison-card.good {
    background: rgba(48,209,88,0.04);
    border-color: rgba(48,209,88,0.2);
}

.comparison-header {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.comparison-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 800;
}
.bad-header .comparison-icon { background: rgba(255,69,58,0.2); color: var(--red); }
.good-header .comparison-icon { background: rgba(48,209,88,0.2); color: var(--green); }

.comparison-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.comparison-list li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}
.bad .comparison-list li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--red); opacity: 0.6;
}
.good .comparison-list li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); opacity: 0.6;
}

.comparison-result {
    font-size: 0.88rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    line-height: 1.5;
}
.bad-result { background: rgba(255,69,58,0.08); color: var(--red); }
.good-result { background: rgba(48,209,88,0.08); color: var(--green); }

@media (max-width: 700px) {
    .comparison-grid { grid-template-columns: 1fr; }
    .comparison h2 { font-size: 1.7rem; }
}

/* ================================================
   PERSONALIZATION CARDS
   ================================================ */
.personalize {
    padding: 80px 24px;
}

.personalize h2 {
    font-size: 2.2rem; font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem; color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.persona-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.25s;
}
.persona-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-card), rgba(10,132,255,0.06));
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.persona-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.persona-card h3 {
    font-size: 1rem; font-weight: 700;
    margin-bottom: 0.4rem;
}
.persona-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .persona-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .persona-grid { grid-template-columns: 1fr; }
}

/* ================================================
   COUNTRIES
   ================================================ */
.countries {
    padding: 80px 24px;
    background: radial-gradient(ellipse 40% 30% at 50% 50%, rgba(10,132,255,0.03), transparent);
}

.countries h2 {
    font-size: 2.2rem; font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 2rem;
}

.countries-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.country-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.country-pill:hover {
    border-color: var(--primary);
    color: var(--text);
    background: var(--bg-elevated);
}
.country-pill span { font-size: 1.1rem; }

.more-pill {
    background: rgba(10,132,255,0.1);
    border-color: rgba(10,132,255,0.2);
    color: var(--primary);
    font-weight: 600;
}

/* ================================================
   PRICING
   ================================================ */
.pricing {
    padding: 80px 24px;
}

.pricing h2 {
    font-size: 2.2rem; font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 0.5rem;
}

.price-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.price-option {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.25s;
}

.price-option.crossed { opacity: 0.6; }
.price-option.highlight {
    opacity: 1;
    border-color: var(--green);
    background: rgba(48,209,88,0.06);
    transform: scale(1.02);
}

.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #000;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-where {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}
.crossed-price {
    text-decoration: line-through;
    color: var(--red);
    opacity: 0.7;
}
.highlight .price-amount { color: var(--green); }

.price-detail {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Pro upgrade card */
.pro-card {
    background: var(--bg-card);
    border: 1px solid rgba(10,132,255,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.pro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}
.pro-header h3 {
    font-size: 1.2rem; font-weight: 700;
    margin-bottom: 0.2rem;
}
.pro-header p {
    font-size: 0.85rem; color: var(--text-muted);
}
.pro-price {
    font-size: 2rem; font-weight: 800;
    color: var(--primary);
}

.pro-features {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.pro-feature {
    background: rgba(10,132,255,0.08);
    border: 1px solid rgba(10,132,255,0.12);
    color: var(--primary);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 700px) {
    .price-comparison { grid-template-columns: 1fr; }
    .price-option.highlight { transform: scale(1); }
    .pro-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

/* ================================================
   TRUST SECTION
   ================================================ */
.trust-section {
    padding: 80px 24px;
    background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(48,209,88,0.03), transparent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.25s;
}
.trust-card:hover {
    border-color: rgba(48,209,88,0.2);
    transform: translateY(-4px);
}

.trust-icon { font-size: 2rem; margin-bottom: 1rem; }
.trust-card h3 {
    font-size: 1rem; font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.trust-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
    padding: 80px 24px;
    background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255,69,58,0.03), transparent);
}

.testimonials h2 {
    font-size: 2.2rem; font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 2.5rem;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.25s;
}
.testimonial-card:hover {
    border-color: rgba(255,69,58,0.2);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.testimonial-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-stat {
    font-size: 0.8rem;
    background: rgba(48,209,88,0.1);
    color: var(--green);
    border-left: 2px solid var(--green);
    padding-left: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

/* ================================================
   FAQ
   ================================================ */
.faq {
    padding: 80px 24px;
}

.faq h2 {
    font-size: 2.2rem; font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 750px;
    display: flex; flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none; border: none;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
    font-family: inherit;
}
.faq-question:hover { color: var(--primary); }

.faq-icon {
    font-size: 1.3rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
    padding: 100px 24px;
    text-align: center;
    background:
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(10,132,255,0.06), transparent);
}

.cta-content h2 {
    font-size: 2.4rem; font-weight: 800;
    letter-spacing: -1px; line-height: 1.2;
    margin-bottom: 1rem;
}
.cta-content > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.final-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 0.75rem;
    max-width: 280px;
}

.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h4 {
    font-size: 0.85rem; font-weight: 700;
    margin-bottom: 0.4rem;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 700px) {
    .footer-content { flex-direction: column; gap: 2rem; }
    .footer-links { gap: 2rem; }
}

/* ================================================
   ACCESSIBILITY
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
