/* ========================================
   AIcountant - Modern Landing Page Styles
   Modern, Clean, Light Blue Theme
   ======================================== */

:root {
    /* NEW REFINED COLOR PALETTE - Navy Premium */
    --primary: #1E4A8F;        /* Deep navy blue - trust, professionalism */
    --primary-dark: #153A70;   /* Darker navy for hover */
    --primary-light: #E8F0F8;  /* Soft light blue background */
    --accent: #D97706;         /* Amber accent for CTAs - energy/action */
    --accent-hover: #B45309;
    --success: #059669;        /* Green for trust signals */
    
    /* Text Colors */
    --text-dark: #0F172A;      /* Near black - better contrast */
    --text-medium: #475569;    /* Slate gray */
    --text-light: #94A3B8;     /* Light gray */
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;       /* Off-white */
    --bg-blue: #F1F5F9;        /* Light blue tint */
    --border: #E2E8F0;         /* Border color */
    
    /* 8px Grid Spacing System */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.5rem;    /* 24px */
    --space-6: 2rem;      /* 32px */
    --space-8: 3rem;      /* 48px */
    --space-10: 4rem;     /* 64px */
    --space-12: 6rem;     /* 96px */
    --space-16: 8rem;     /* 128px */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.04);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.06), 0 2px 4px -2px rgb(0 0 0 / 0.04);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.04);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans SC', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;  /* Changed from 17px to standard 16px */
    color: var(--text-dark);
    line-height: 1.7;  /* Increased for Chinese readability */
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CHINESE TYPOGRAPHY IMPROVEMENTS */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);  /* 32px */
}

/* Paragraph width limit for Chinese readability */
p {
    max-width: 35ch;  /* Optimal Chinese reading width */
}

.section-header p,
.hero-subtitle,
.feature-text p,
.process-card p,
.service-card p {
    max-width: 35ch;
    margin-left: auto;
    margin-right: auto;
}

.section-header p,
.feature-text p {
    margin-left: 0;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
}

.logo-icon {
    background: var(--primary);
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.logo-text {
    color: var(--text-dark);
}

/* White text when navbar is over the hero */
.navbar:not(.scrolled) .logo-text {
    color: #fff;
}

.navbar:not(.scrolled) .nav-links a {
    color: rgba(255,255,255,0.9);
}

.navbar:not(.scrolled) .nav-links a:hover {
    color: #fff;
}

.navbar:not(.scrolled) .nav-links a::after {
    background: #fff;
}

.navbar:not(.scrolled) .lang-dropdown-toggle {
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
}

.navbar:not(.scrolled) .lang-dropdown-toggle:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.7);
}

.navbar:not(.scrolled) .btn-outline {
    color: var(--primary);
    border-color: #fff;
    background: #fff;
}

.navbar:not(.scrolled) .btn-outline:hover {
    background: rgba(255,255,255,0.9);
    border-color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    white-space: nowrap;
    font-size: 19px;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

.navbar:not(.scrolled) .nav-links a.active {
    color: #fff;
}

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

/* Compact buttons specifically in navbar */
.nav-actions .btn {
    padding: 10px 22px;
    font-size: 19px;
    min-height: 42px;
}

.lang-switcher {
    display: flex;
    border: 1.5px solid #CBD5E1;
    border-radius: 8px;
    overflow: hidden;
}

.lang-btn {
    background: none;
    border: none;
    border-right: 1.5px solid #CBD5E1;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
}

.lang-btn:last-child {
    border-right: none;
}

.lang-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.lang-btn.active {
    background: var(--primary);
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ========================================
   Buttons - Enhanced with depth & interactions
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);  /* 12px 24px */
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 44px;  /* Touch target size */
    min-width: 44px;
}

/* Primary Button - Gradient with shimmer effect */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 74, 143, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 74, 143, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Shimmer effect on hover */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.15) 50%,
        transparent 100%
    );
    transform: rotate(30deg) translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::after {
    transform: rotate(30deg) translateX(100%);
}

/* Outline Button - Fixed */
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Accent Button (for special CTAs) */
.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.btn-large {
    padding: var(--space-4) var(--space-6);  /* 16px 32px */
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);  /* 32px to 44px instead of 64px */
    font-weight: 600;  /* Changed from 700 for Chinese */
    line-height: 1.4;  /* Increased from 1.2 */
    margin-bottom: var(--space-6);
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 4px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

/* ========================================
   Section Common Styles
   ======================================== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);  /* 28px to 36px instead of 44px */
    font-weight: 600;  /* Changed from 700 */
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    line-height: 1.4;
}

.section-desc {
    font-size: 19px;
    color: var(--text-medium);
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.process-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    max-width: 260px;
    flex: 1;
    position: relative;
}

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

.process-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.process-icon {
    color: var(--primary);
    margin-bottom: 20px;
}

.process-illustration {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background: #f0f5ff;
    overflow: hidden;
}

.process-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.process-time {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.process-arrow {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

/* ========================================
   Enhanced Card Styles
   ======================================== */

/* Base Card Style */
.card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 8px 24px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.03),
        0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(30, 74, 143, 0.15);
}

/* Gradient border effect on hover */
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1.5px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.3s ease;
    pointer-events: none;
}

.card:hover::before {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Process Card Enhancement */
.process-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 8px 24px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    max-width: 260px;
    flex: 1;
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.03);
    border-color: rgba(30, 74, 143, 0.15);
}

/* Service Card Enhancement */
.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    border-color: rgba(30, 74, 143, 0.2);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.03);
    transform: translateY(-6px);
}

.service-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

.service-illustration {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: var(--radius);
    background: #f0f5ff;
    overflow: hidden;
}

.service-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 8px;
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us-section {
    padding: 100px 0;
    background: var(--bg-blue);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-title {
    text-align: left;
}

.why-us-content .section-desc {
    text-align: left;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 14px;
    color: var(--text-medium);
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: white;
    padding: 24px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.exp-text {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-content .btn-primary:hover {
    background: var(--bg-light);
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 24px;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: white;
}

/* ========================================
   Modal
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-header {
    padding: 40px 40px 0;
    text-align: center;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-medium);
}

.consult-form {
    padding: 32px 40px 40px;
}

.consult-success {
    padding: 40px;
    text-align: center;
}

.consult-success .success-icon {
    margin-bottom: 16px;
}

.consult-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.consult-success p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ========================================
   Testimonials - Enhanced Design
   ======================================== */
.testimonials-section {
    padding: var(--space-12) 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 8px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.03);
}

/* Quote icon decoration */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 100px;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    opacity: 0.6;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.75;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
    position: relative;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Verified badge */
.author-avatar.verified::after {
    content: '✓';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.author-role {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ========================================
   Chat Widget
   ======================================== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
}

.chat-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.chat-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    height: 480px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    font-size: 16px;
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.chat-message {
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.chat-message.bot {
    background: var(--primary-light);
}

.chat-message p {
    font-size: 14px;
    color: var(--text-dark);
}

.chat-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
}

.chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
}

.chat-footer button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
}

.chat-note {
    padding: 16px 20px;
    background: var(--bg-light);
    text-align: center;
}

.chat-note p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

/* ========================================
   Trust Signals & Badges
   ======================================== */

.trust-badges {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: var(--space-6);
    margin-bottom: var(--space-6);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    border: 1px solid rgba(30, 74, 143, 0.15);
    font-size: 13px;
    color: var(--text-dark);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.trust-badge-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.trust-badge-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.trust-badge-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.3;
}

.trust-badge-sub {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.3;
}

/* License badge */
.license-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--success) 0%, #047857 100%);
    color: white;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: #25D366;
    color: white;
    padding: var(--space-3) var(--space-5);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ========================================
   Micro-interactions & Animations
   ======================================== */

/* Fade in animation for scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger delay classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Pulse animation for attention */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Subtle float animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Link hover underline animation */
.link-animate {
    position: relative;
    text-decoration: none;
}

.link-animate::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.link-animate:hover::after {
    width: 100%;
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   Standardized Section Spacing
   ======================================== */

section {
    padding: var(--space-12) 0;  /* 96px */
}

section.compact {
    padding: var(--space-10) 0;  /* 64px */
}

.hero {
    padding: var(--space-16) 0 var(--space-12);  /* 128px top, 96px bottom */
}

.process-section,
.services-section,
.why-us-section,
.testimonials-section,
.cta-section,
.footer {
    padding: var(--space-12) 0;
}

/* ========================================
   Responsive Improvements
   ======================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 3vw, 1.875rem);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-4);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-actions .btn,
    .nav-actions .lang-dropdown {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;  /* 28px */
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: var(--space-5);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .process-grid {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .section-title {
        font-size: 1.5rem;  /* 24px */
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: var(--space-4);
        right: var(--space-4);
        padding: var(--space-3);
    }
    
    .whatsapp-float span {
        display: none;  /* Hide text on mobile, show only icon */
    }
    
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .chat-window {
        width: calc(100vw - 32px);
        right: -16px;
    }
}

/* Touch target improvements */
@media (pointer: coarse) {
    .btn,
    .nav-links a,
    .service-link,
    .footer-links a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ========================================
   Page Styles - Incorporation Page (Enhanced)
   ======================================== */

/* Page Hero - for subpages */
.page-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    text-align: center;
}

.page-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    margin-bottom: 24px;
}

.page-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.page-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* 1. Google Rating Section */
.rating-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    font-size: 32px;
    color: #fbbf24;
}

.rating-text {
    text-align: center;
}

.rating-score {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.rating-source {
    font-size: 14px;
    color: var(--text-medium);
}

.rating-badges {
    display: flex;
    gap: 16px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.badge-icon {
    font-size: 18px;
}

/* 2. Target Customers Section */
.customers-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.customer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.customer-image {
    height: 220px;
    overflow: hidden;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}

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

.customer-content {
    padding: 30px;
}

.customer-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.customer-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.customer-features {
    list-style: none;
}

.customer-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 14px;
}

/* 3. Process Steps Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-light);
    border-radius: 16px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary);
    font-weight: 300;
}

/* 4. Pricing Section with Shareholder Selector */
.shareholder-selector {
    text-align: center;
    margin-bottom: 40px;
}

.shareholder-selector label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-right: 12px;
}

.shareholder-selector select {
    padding: 12px 24px;
    font-size: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.shareholder-selector select:focus {
    outline: none;
    border-color: var(--primary);
}

/* 5. Next Steps Section */
.next-steps-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.next-step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.step-icon-box {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
}

.next-step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.next-step-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* 6. Blog Section */
.blog-section {
    padding: 100px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-date {
    font-size: 13px;
    color: var(--text-light);
}

.blog-cta {
    text-align: center;
    margin-top: 48px;
}

/* 7. Subscription Section */
.subscription-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
}

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

.subscription-text h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.subscription-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 32px;
}

.subscription-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.subscription-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    outline: none;
}

.subscription-form input::placeholder {
    color: var(--text-light);
}

.subscription-form .btn {
    background: var(--text-dark);
    color: white;
    padding: 16px 32px;
    white-space: nowrap;
}

.subscription-form .btn:hover {
    background: #1f2937;
}

.subscription-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .rating-content {
        flex-direction: column;
        gap: 20px;
    }

    .subscription-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        max-width: 100%;
        width: 100%;
    }
}

/* ========================================
   INCORPORATION PAGE - PRICING & FAQ STYLES
   ======================================== */

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.section-desc {
    color: var(--text-medium);
    font-size: 18px;
    margin-top: 16px;
}

.shareholder-selector {
    text-align: center;
    margin-bottom: 40px;
}

.shareholder-selector label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-right: 12px;
}

.shareholder-selector select {
    padding: 12px 24px;
    font-size: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.shareholder-selector select:focus {
    outline: none;
    border-color: var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #d1d5db;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-price .currency {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-medium);
}

.pricing-price .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-note {
    font-size: 14px;
    color: var(--text-medium);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note-bottom {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note-bottom p {
    color: var(--text-medium);
    font-size: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question svg {
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
}

/* Benefits Section (if missing) */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 16px;
}

/* Expert Section (if missing) */
.expert-section {
    padding: 80px 0;
    background: var(--primary);
}

.expert-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.expert-text h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.expert-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.expert-content .btn {
    background: white;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.expert-content .btn:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 24px 20px;
    }
}


/* ========================================
   Language Dropdown Styles
   ======================================== */

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: 1.5px solid #CBD5E1;
    border-radius: 8px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.15s ease;
}

.lang-dropdown-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    min-width: 140px;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-menu.active,
.lang-dropdown-menu.show {
    display: block;
}

.lang-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.15s ease;
    border-bottom: 1px solid var(--border);
}

.lang-dropdown-menu a:last-child {
    border-bottom: none;
}

.lang-dropdown-menu a:hover {
    background: var(--bg-light);
}

.lang-dropdown-menu a.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}
