/* ============================================
   Trustber - Home Page Styles
   AI-Powered Financial Solutions
   ============================================ */

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --primary-glow: rgba(14, 165, 233, 0.15);
    --secondary: #6366f1;
    --secondary-dark: #4f46e5;
    --accent: #10b981;
    --accent-light: #34d399;
    
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.98);
    --bg-card-hover: rgba(255, 255, 255, 1);
    
    --text-dark: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    
    --gradient-hero: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-vibrant: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 60px rgba(14, 165, 233, 0.2);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   Animated Background
   ============================================ */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 90% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 10% 90%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.shape-1 { 
    width: 400px; height: 400px; top: 10%; left: -10%; animation-delay: 0s; 
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
}
.shape-2 { 
    width: 300px; height: 300px; top: 60%; right: -5%; animation-delay: -5s; 
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
}
.shape-3 { 
    width: 200px; height: 200px; top: 30%; right: 20%; animation-delay: -10s; 
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
}
.shape-4 { 
    width: 250px; height: 250px; bottom: 10%; left: 30%; animation-delay: -15s; 
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(30px, 10px) scale(1.02); }
}

/* ============================================
   Navigation
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(45, 127, 249, 0.5));
}

.logo-icon.small {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.admin-link {
    color: var(--primary);
    font-weight: 500;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.nav-link.admin-link:hover {
    background: rgba(37, 99, 235, 0.2);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: white;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 127, 249, 0.4);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(45, 127, 249, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    border: 1px solid rgba(45, 127, 249, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease backwards;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-dark);
    animation: fadeInUp 0.6s ease backwards 0.1s;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease backwards 0.2s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease backwards 0.3s;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(45, 127, 249, 0.4);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(45, 127, 249, 0.3);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease backwards 0.4s;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

/* Founder Badge in Hero */
.founder-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    animation: fadeInUp 0.6s ease backwards 0.5s;
}

.founder-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.founder-avatar svg {
    width: 26px;
    height: 26px;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder-credentials {
    display: flex;
    gap: 8px;
}

.credential-badge {
    padding: 4px 10px;
    background: rgba(45, 127, 249, 0.1);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.credential-badge.irs {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    color: #dc2626;
}

.founder-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ASCSP Membership Badge */
.membership-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    animation: fadeInUp 0.6s ease backwards 0.6s;
}

.membership-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.membership-icon svg {
    width: 18px;
    height: 18px;
}

.membership-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.membership-text strong {
    color: var(--secondary);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease backwards 0.5s;
}

.visual-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.visual-card.main-card {
    width: 100%;
    max-width: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-soft);
}

.visual-dots {
    display: flex;
    gap: 6px;
}

.visual-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-medium);
}

.visual-dots span:first-child { background: #ff5f57; }
.visual-dots span:nth-child(2) { background: #febc2e; }
.visual-dots span:last-child { background: #28c840; }

.visual-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.visual-content {
    padding: 24px;
}

/* Services Preview Grid */
.services-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.service-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    background: var(--bg-soft);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.service-preview-item:hover {
    background: rgba(14, 165, 233, 0.08);
    transform: translateY(-2px);
}

.preview-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.preview-icon.bookkeeping-icon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.preview-icon.tax-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.preview-icon.costseg-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.preview-icon.reps-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-preview-item span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.mini-chart {
    height: 80px;
    margin-bottom: 20px;
}

.mini-chart svg {
    width: 100%;
    height: 100%;
}

.mini-stats {
    display: flex;
    gap: 32px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mini-value.positive {
    color: #10b981;
}

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

.floating-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: var(--shadow-md);
}

.floating-icon {
    font-size: 1.2rem;
}

.floating-card.card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 25%;
    left: 0;
    animation-delay: -2s;
}

.floating-card.card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   Services Section
   ============================================ */

.services {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    transition: all var(--transition-normal);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

a.service-card {
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(45, 127, 249, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(45, 127, 249, 0.05) 0%, white 100%);
}

.service-card.featured:hover {
    border-color: var(--primary-light);
    box-shadow: 0 20px 60px rgba(45, 127, 249, 0.25);
}

.service-status {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.active {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

.status-dot.coming {
    background: var(--secondary);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-icon.bookkeeping {
    background: linear-gradient(135deg, var(--primary-glow) 0%, rgba(45, 127, 249, 0.25) 100%);
    color: var(--primary);
}

.service-icon.tax {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.25) 100%);
    color: #10b981;
}

.service-icon.segregation {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.25) 100%);
    color: #8b5cf6;
}

.service-icon.reps {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.15) 0%, rgba(255, 153, 102, 0.25) 100%);
    color: var(--secondary);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-features li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-weight: 600;
    color: var(--primary);
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}

a.service-cta:hover {
    color: var(--primary-light);
}

.service-card:hover .service-cta {
    color: var(--primary-light);
}

.service-cta.disabled {
    color: var(--text-muted);
    cursor: default;
    pointer-events: none;
}

.service-card:hover .service-cta svg {
    transform: translateX(4px);
}

.service-cta svg {
    transition: transform var(--transition-fast);
}

/* ============================================
   Founder Section
   ============================================ */

.founder-section {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
    background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.03), transparent);
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.founder-visual {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.founder-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.founder-photo {
    position: relative;
    flex-shrink: 0;
}

.founder-image {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    border: 3px solid rgba(16, 185, 129, 0.4);
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.25) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.photo-placeholder svg {
    width: 60px;
    height: 60px;
}

.irs-badge-large {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.founder-details {
    flex: 1;
}

.credential-badges-large {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.badge-large {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.badge-large.cpa {
    background: linear-gradient(135deg, var(--primary-glow) 0%, rgba(45, 127, 249, 0.25) 100%);
    color: var(--primary);
}

.badge-large.cma {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.25) 100%);
    color: #a78bfa;
}

.founder-details h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

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

.experience-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.exp-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    flex-shrink: 0;
}

.exp-icon {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
}

.exp-icon svg {
    width: 20px;
    height: 20px;
}

.exp-card span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.founder-text-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.founder-text-content .section-badge {
    display: inline-block;
    margin-bottom: 16px;
}

.founder-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.founder-description:last-of-type {
    margin-bottom: 32px;
}

.founder-description strong {
    color: var(--text-light);
}

.founder-description.founder-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-top: 12px;
    max-width: 600px;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
    max-width: 700px;
    margin: 30px auto 0;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.trust-point svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

.trust-point div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-point strong {
    font-size: 0.9rem;
    color: var(--text-white);
}

.trust-point span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================
   Features Section
   ============================================ */

.features {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
    background: linear-gradient(to bottom, transparent, rgba(45, 127, 249, 0.03), transparent);
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-item {
    padding: 32px 24px;
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
    background: var(--bg-soft);
}

.testimonials-content {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-content .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-glow), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.testimonials-content .section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}

.testimonials-content .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.testimonial-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03), rgba(99, 102, 241, 0.03));
    border-color: rgba(14, 165, 233, 0.2);
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-quote svg {
    width: 40px;
    height: 40px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.testimonial-text strong {
    color: var(--primary);
    font-weight: 600;
}

.testimonial-card.featured .testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-stats {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 32px;
}

.testimonial-stats .stat {
    display: flex;
    flex-direction: column;
}

.testimonial-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card.featured {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 24px;
    }
    
    .testimonials-content .section-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(45, 127, 249, 0.1) 0%, rgba(45, 127, 249, 0.05) 100%);
    border: 1px solid rgba(45, 127, 249, 0.2);
    border-radius: 32px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ============================================
   Footer
   ============================================ */

.main-footer {
    position: relative;
    z-index: 1;
    padding: 80px 40px 40px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer-col h5 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .founder-badge {
        justify-content: center;
        text-align: left;
    }
    
    .hero-visual {
        width: 100%;
        max-width: 500px;
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .founder-text-content {
        text-align: center;
    }
    
    .trust-points {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }
    
    .trust-point {
        text-align: left;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .founder-badge {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .founder-info {
        align-items: center;
    }
    
    .founder-text {
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 50px 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .founder-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .credential-badges-large {
        justify-content: center;
    }
    
    .experience-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-visual {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-section {
        padding: 80px 20px;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services, .features, .cta-section {
        padding: 80px 20px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .main-footer {
        padding: 60px 20px 30px;
    }
}

