/* ============================================
   Zzippit - Main Styles
   ============================================ */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;

    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-dark: #111827;

    --border: #e5e7eb;
    --border-dark: #d1d5db;

    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);

    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #dbeafe;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-text i {
    color: var(--success);
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.top-bar-links a:hover {
    color: #fff;
}

.btn-top-bar {
    background: var(--primary);
    color: #fff !important;
    padding: 4px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.btn-top-bar:hover {
    background: var(--primary-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.brand-text:hover {
    color: var(--primary);
}

.badge-ai {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    font-size: 0.6rem;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle .hamburger {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

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

.btn-outline-sm {
    padding: 6px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-sm:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary-sm {
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 12px 0;
    margin: 0;
}

.alert .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-bottom: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-bottom: 1px solid #fca5a5;
}

.alert button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    padding: 0 5px;
    margin-left: auto;
    opacity: 0.7;
}

.alert button:hover {
    opacity: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #111827;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.footer-brand-link i {
    color: #3b82f6;
    font-size: 1.6rem;
}

.footer-tagline {
    margin: 12px 0 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-newsletter p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.newsletter-input {
    display: flex;
    gap: 8px;
}

.newsletter-input input {
    flex: 1;
    min-width: 0;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
}

.newsletter-input input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-input input:focus {
    outline: none;
    border-color: #3b82f6;
}

.newsletter-input button {
    padding: 10px 18px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-input button:hover {
    background: #1d4ed8;
}

.footer-bottom {
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.cta-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.cta-content h2 .highlight,
.cta-section .highlight {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    background: none;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #fff;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-cta {
    padding: 14px 36px;
    font-size: 1.05rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-actions .btn-cta.btn-primary {
    background: #fff;
    color: var(--primary) !important;
    border: none;
}

.cta-actions .btn-cta.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-actions .btn-cta.btn-outline {
    border: 2px solid #fff;
    color: #fff !important;
    background: transparent;
}

.cta-actions .btn-cta.btn-outline:hover {
    background: #fff;
    color: var(--primary) !important;
}

/* ============================================
   About page — mission, team, stats
   ============================================ */
.mission-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.mission-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.value-item i {
    font-size: 1.4rem;
    color: var(--primary);
    background: rgba(37,99,235,0.1);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item h4 {
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 1rem;
}

.value-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.92rem;
}

.mission-image {
    display: flex;
    justify-content: center;
}

.mission-img {
    max-width: 100%;
    height: auto;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-primary);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-section .stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: var(--radius);
    color: #fff;
}

.stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.stats-section .stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-secondary);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.4rem;
    color: var(--primary);
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ============================================
   Homepage — Hero
   ============================================ */
.hero-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #fef9f3 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge { margin-bottom: 20px; }

.badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #fff;
    color: #2563eb;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37,99,235,0.12);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title em {
    font-style: italic;
    font-weight: 700;
    color: #7c3aed;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 30px;
    font-size: 1.02rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    box-shadow: 0 10px 30px rgba(37,99,235,0.25);
    border: none;
}

.btn-hero.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37,99,235,0.35);
    color: #fff;
}

.btn-hero.btn-outline {
    border: 2px solid #e2e8f0;
    color: #334155;
    background: #fff;
}

.btn-hero.btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: #64748b;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-item i {
    color: #10b981;
    font-size: 1rem;
}

/* Hero image */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 3;
    max-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(15,23,42,0.35);
    position: relative;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    z-index: 2;
}

.hero-float.float-1 { top: 20px; left: -16px; }
.hero-float.float-2 { bottom: 28px; right: -16px; }

.hero-float i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.hero-float.float-1 i { background: #10b981; }
.hero-float.float-2 i { background: #2563eb; }

.hero-float small {
    display: block;
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Trust strip */
.trust-strip {
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease;
}

.trust-strip-item:hover { color: #2563eb; }
.trust-strip-item i { font-size: 1.05rem; }

/* ============================================
   Homepage — Problem section
   ============================================ */
.problem-section {
    padding: 100px 0;
    background: #fff;
}

.problem-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.problem-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 16px;
}

.problem-header h2 em {
    font-style: italic;
    color: #7c3aed;
}

.problem-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto;
}

.problem-card { text-align: center; }

.problem-image {
    width: 100%;
    aspect-ratio: 1;
    max-height: 380px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.problem-card:hover .problem-image img {
    transform: scale(1.05);
}

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.problem-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
}

.problem-closing {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 60px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.problem-closing .highlight {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Homepage — How It Works
   ============================================ */
.how-section {
    padding: 100px 0;
    background: #f8fafc;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
}

.how-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15,23,42,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,23,42,0.12);
}

.how-image {
    width: 100%;
    aspect-ratio: 5 / 4;
    max-height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
}

.how-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-body {
    padding: 26px 24px 30px;
    position: relative;
}

.how-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 14px;
}

.how-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.how-body p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.how-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   Homepage — Featured Advisors
   ============================================ */
.advisors-section {
    padding: 100px 0;
    background: #fff;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
}

.advisor-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.advisor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,23,42,0.1);
    border-color: #dbeafe;
}

.advisor-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 420px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    position: relative;
}

.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.advisor-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    color: #10b981;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(15,23,42,0.15);
}

.advisor-body { padding: 22px 22px 26px; }

.advisor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.advisor-role {
    display: block;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.advisor-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 12px;
}

.advisor-rating i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.advisor-rating strong {
    color: #0f172a;
    font-weight: 700;
}

.advisor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.advisor-tag {
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.advisor-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.advisor-cta:hover {
    gap: 10px;
    color: #1d4ed8;
}

/* ============================================
   Homepage — Testimonials
   ============================================ */
.testimonials-new {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto;
}

.testimonial-new {
    background: #fff;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 4px 20px rgba(15,23,42,0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.1);
}

.testimonial-new::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: #dbeafe;
    font-family: Georgia, serif;
}

.testimonial-new-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-new-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.testimonial-new-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.testimonial-new-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.testimonial-new-name {
    display: block;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.testimonial-new-role {
    display: block;
    color: #64748b;
    font-size: 0.82rem;
}

/* ============================================
   Homepage — Final CTA banner
   ============================================ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    min-height: 380px;
    display: flex;
    align-items: center;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-banner-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}

.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,41,59,0.85) 0%, rgba(37,99,235,0.75) 100%);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner-inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.cta-banner-inner h2 em {
    font-style: italic;
    color: #fcd34d;
}

.cta-banner-inner p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner-actions .btn-hero { padding: 15px 32px; }

.cta-banner-actions .btn-hero.btn-primary {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.cta-banner-actions .btn-hero.btn-primary:hover {
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.cta-banner-actions .btn-hero.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.cta-banner-actions .btn-hero.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.cta-banner-trust {
    margin-top: 26px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.cta-banner-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-banner-trust i { color: #10b981; }

/* ============================================
   RESPONSIVE — Tablet (max 992px)
   ============================================ */
@media (max-width: 992px) {
    .footer-top { grid-template-columns: 1fr 1fr; }

    .mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .stats-section .stats-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }

    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2.2rem; }
    .hero-image {
        aspect-ratio: 16 / 10;
        max-height: 380px;
        max-width: 100%;
    }
    .hero-float.float-1 { top: 12px; left: -8px; }
    .hero-float.float-2 { bottom: 16px; right: -8px; }
    .hero-float { padding: 10px 14px; font-size: 0.8rem; }

    .problem-grid { grid-template-columns: 1fr 1fr; }
    .problem-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
    .how-grid { grid-template-columns: 1fr 1fr; }
    .how-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }

    .advisors-grid { grid-template-columns: 1fr 1fr; }
    .advisors-grid .advisor-card:last-child { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
    .testimonials-new-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ============================================
   RESPONSIVE — Mobile (max 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Top bar */
    .top-bar-text { font-size: 0.75rem; }
    .top-bar-links { gap: 10px; }

    /* Hamburger button — visible */
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    /* Nav links become a right-side drawer */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 90px 20px 30px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.18);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 2px;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu li { width: 100%; }

    .nav-menu a {
        display: block;
        padding: 14px 16px;
        font-size: 1.05rem;
        text-align: left;
        width: 100%;
        border-bottom: none;
        border-radius: 8px;
        color: #1f2937;
    }

    .nav-menu a.active {
        background: #eff6ff;
        color: #2563eb;
        border-bottom: none;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
    }

    .nav-actions a {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    body.nav-open { overflow: hidden; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-social { justify-content: flex-start; }

    /* Section titles */
    .section-title { font-size: 2rem; }

    /* CTA */
    .cta-content h2 { font-size: 1.8rem; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn-cta { width: 100%; justify-content: center; }

    /* About */
    .team-grid { grid-template-columns: 1fr; }
    .stats-section .stats-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .mission-content h2 { font-size: 1.6rem; }

    /* Homepage */
    .hero-section { padding: 40px 0 60px; }
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .btn-hero { width: 100%; justify-content: center; }
    .hero-float { display: none; }
    .trust-strip-inner { gap: 20px; font-size: 0.72rem; }
    .trust-strip-item i { font-size: 0.95rem; }

    .hero-image {
        aspect-ratio: 16 / 11;
        max-height: 280px;
    }

    .problem-section, .how-section, .advisors-section, .testimonials-new { padding: 60px 0; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-card:last-child { grid-column: auto; }
    .how-grid { grid-template-columns: 1fr; }
    .how-card:last-child { grid-column: auto; }
    .problem-header h2 { font-size: 1.6rem; }
    .problem-closing { font-size: 1.05rem; margin-top: 40px; }

    .advisors-grid { grid-template-columns: 1fr; }
    .advisors-grid .advisor-card:last-child { grid-column: auto; max-width: none; }
    .advisor-image { aspect-ratio: 4 / 3; max-height: 320px; }

    .cta-banner { padding: 60px 0; min-height: auto; }
    .cta-banner-inner h2 { font-size: 1.6rem; }
    .cta-banner-actions { flex-direction: column; }
    .cta-banner-actions .btn-hero { width: 100%; justify-content: center; }
    .cta-banner-trust { gap: 14px; font-size: 0.82rem; }

    .hero-grid,
    .problem-grid,
    .how-grid,
    .advisors-grid,
    .testimonials-new-grid { gap: 20px; }
}

/* ============================================
   RESPONSIVE — Small mobile (max 480px)
   ============================================ */
@media (max-width: 480px) {
    .top-bar {
        font-size: 0.7rem;
        padding: 4px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 4px;
    }

    .btn-primary, .btn-outline {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .footer { padding: 40px 0 20px; }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .nav-links {
        width: 100%;
        max-width: 100vw;
    }

    .nav-links a { font-size: 1rem; }
}