/* ============================================
   Way2Mail Redesign — Design System & Styles
   ============================================ */

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

:root {
    --primary: #1A56DB;
    --primary-dark: #1342A8;
    --primary-light: #EFF6FF;
    --accent: #10B981;
    --accent-light: #ECFDF5;
    --text: #111827;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --bg: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-blue-tint: #EFF6FF;
    --bg-green-tint: #F0FDF4;
    --bg-purple-tint: #F5F3FF;
    --bg-dark: #0F172A;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.mobile-toggle:focus-visible,
.page-btn:focus-visible,
.category-pill:focus-visible,
.compare-tab:focus-visible,
.faq-question:focus-visible {
    outline: 3px solid rgba(26, 86, 219, 0.35);
    outline-offset: 2px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,86,219,0.3);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}
.btn-ghost:hover { color: var(--primary); }

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.btn-ghost-white {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.3);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-full { width: 100%; }

/* --- Announcement Bar --- */
.announcement-bar {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 10px 24px;
    font-size: 14px;
}
.announcement-bar a {
    color: #60A5FA;
    font-weight: 600;
    margin-left: 8px;
}
.announcement-bar a:hover { text-decoration: underline; }

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }

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

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

/* --- Hero --- */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--bg-blue-tint) 0%, var(--bg-light) 100%);
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: #059669;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat { text-align: left; }

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}
.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

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

/* Hero Visual / Illustration */
.hero-visual {
    position: relative;
}

.hero-illustration {
    position: relative;
    padding: 40px;
}

.email-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 20px 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}
.flow-node-origin { color: var(--text-secondary); }
.flow-node-origin svg { color: var(--text-secondary); }
.flow-node-way2mail {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(26,86,219,0.3);
    transform: scale(1.1);
}
.flow-node-way2mail svg { color: #fff; }
.flow-node-dest { color: var(--accent); }
.flow-node-dest svg { color: var(--accent); }

.flow-line {
    width: 60px;
    height: 2px;
    background: var(--border);
    position: relative;
}
.flow-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    top: -3px;
    animation: flowDot 2s ease-in-out infinite;
}

@keyframes flowDot {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: calc(100% - 8px); opacity: 0; }
}

.floating-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    animation: floatUp 3s ease-in-out infinite;
    max-width: 280px;
}
.float-card-1 { align-self: flex-start; animation-delay: 0s; }
.float-card-2 { align-self: flex-end; animation-delay: 1s; }
.float-card-3 { align-self: center; animation-delay: 2s; }

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

.float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.float-card-icon.green { background: var(--accent-light); color: var(--accent); }
.float-card-icon.blue { background: var(--primary-light); color: var(--primary); }
.float-card-icon.orange { background: #FFF7ED; color: #F59E0B; }

.float-card-title { font-size: 14px; font-weight: 600; }
.float-card-desc { font-size: 12px; color: var(--text-muted); }

/* --- Social Proof --- */
.social-proof {
    padding: 48px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-green-tint);
}

.social-proof-label {
    text-align: center;
    font-size: 15px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.social-proof-label::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), #22C55E);
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.client-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
    letter-spacing: -0.01em;
}
.client-logo:hover { opacity: 0.8; }

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.15);
}
.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.15;
}
.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

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

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

.fit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.fit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.fit-card-highlight {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), var(--shadow-md);
}

.fit-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 100px;
}

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

.fit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* --- How It Works --- */
.how-it-works {
    padding: 100px 0;
    background: var(--bg);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    max-width: 280px;
    padding: 0 24px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--border);
}

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

/* --- Features --- */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.feature-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent, var(--primary));
    opacity: 0.6;
}
.feature-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg, var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent, var(--primary));
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Pricing --- */
.pricing {
    padding: 100px 0;
    background: var(--bg);
}

/* Pricing Preview Grid (index page) */
.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 32px;
    align-items: stretch;
}
.pricing-preview-card {
    background: #fff;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.pricing-preview-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.pricing-preview-card.highlighted {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), 0 16px 36px rgba(26,86,219,0.12);
    transform: scale(1.04);
}
.pricing-preview-card.highlighted:hover {
    transform: scale(1.04) translateY(-4px);
}
.pricing-preview-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-preview-vol {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-preview-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 20px;
}
.pricing-preview-price {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.pricing-preview-price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}
.pricing-preview-includes {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.pricing-preview-includes strong {
    color: var(--text);
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 40px;
}
.pricing-note a {
    color: var(--primary);
    font-weight: 600;
}
.pricing-note a:hover { text-decoration: underline; }

/* --- Testimonial --- */
.testimonial {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-slider {
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    min-width: 100%;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--primary);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 12px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
}
.testimonial-author span {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}
.testimonial-nav span { font-size: 18px; font-weight: 700; }
.testimonial-nav:hover {
    border-color: rgba(26, 86, 219, 0.35);
    color: var(--primary);
    transform: translateY(-50%) scale(1.02);
}
.testimonial-nav.prev { left: -18px; }
.testimonial-nav.next { right: -18px; }

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #CBD5E1;
    cursor: pointer;
    transition: var(--transition);
}
.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* --- Analytics Preview --- */
.analytics-preview {
    padding: 100px 0;
    background: var(--bg-purple-tint);
}

.analytics-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.analytics-mockup {
    background: #1E293B;
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.analytics-mock-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.analytics-mock-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.analytics-mock-badge {
    background: #10B981;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.analytics-mock-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.analytics-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
}

.analytics-stat-label {
    font-size: 11px;
    color: #94A3B8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.analytics-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.analytics-stat-change {
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}
.analytics-stat-change.up { color: #10B981; }
.analytics-stat-change.down { color: #10B981; }

.analytics-mock-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 16px;
}

.analytics-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.analytics-chart-title {
    font-size: 13px;
    font-weight: 600;
    color: #CBD5E1;
}

.analytics-chart-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #94A3B8;
}

.legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
}
.legend-dot.blue { background: #3B82F6; }
.legend-dot.green { background: #10B981; }

.analytics-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
    padding-top: 8px;
}

.analytics-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}
.analytics-bar-group span {
    font-size: 10px;
    color: #64748B;
    font-weight: 500;
    flex-shrink: 0;
}

.analytics-bar {
    width: 70%;
    border-radius: 4px 4px 0 0;
    min-height: 4px;
}
.analytics-bar.delivered { background: #3B82F6; }
.analytics-bar.opened { background: #10B981; }

/* Analytics Features */
.analytics-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.analytics-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.analytics-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-bg);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.analytics-feature-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.analytics-feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.analytics-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
    transition: var(--transition);
}
.analytics-explore-link:hover {
    gap: 8px;
}

/* --- Comparison --- */
/* --- Comparison Section (Dark Theme) --- */
.comparison {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B1120 0%, #0F172A 40%, #131C31 100%);
    position: relative;
    overflow: hidden;
}
.comparison::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.comparison-header h2 { color: #fff; }
.comparison-header p { color: #94A3B8; }
.section-tag-light {
    background: rgba(26, 86, 219, 0.2);
    color: #60A5FA;
    border-color: rgba(26, 86, 219, 0.3);
}

/* Comparison Layout */
.cmp {
    max-width: 1060px;
    margin: 0 auto;
}

/* Provider Header Cards */
.cmp-providers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 12px;
}
.cmp-provider {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-radius: 16px;
    position: relative;
}
.cmp-provider h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
}
.cmp-provider span {
    font-size: 12.5px;
}
.cmp-provider-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cmp-provider-other {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.cmp-provider-other h4 { color: #94A3B8; }
.cmp-provider-other span { color: #64748B; }
.cmp-provider-other .cmp-provider-icon {
    background: rgba(255, 255, 255, 0.06);
    color: #64748B;
}
.cmp-provider-way2mail {
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.15), rgba(26, 86, 219, 0.05));
    border: 1px solid rgba(26, 86, 219, 0.25);
    box-shadow: 0 0 40px rgba(26, 86, 219, 0.08);
}
.cmp-provider-way2mail h4 { color: #fff; }
.cmp-provider-way2mail > div > span { color: #93C5FD; }
.cmp-provider-way2mail .cmp-provider-icon {
    background: rgba(26, 86, 219, 0.2);
    color: #60A5FA;
}
.cmp-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Feature Rows */
.cmp-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cmp-row {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}
.cmp-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(26, 86, 219, 0.2);
    transform: translateX(4px);
}

/* Feature Label */
.cmp-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    color: #E2E8F0;
    font-size: 14px;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.cmp-feature svg {
    flex-shrink: 0;
    color: #475569;
}

/* Comparison Cells */
.cmp-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
}
.cmp-cell p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
}
.cmp-cell-other {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.cmp-cell-other p {
    color: #64748B;
}
.cmp-cell-win p {
    color: #CBD5E1;
    font-weight: 500;
}

/* Check / Cross Icons */
.cmp-x, .cmp-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.cmp-x {
    background: rgba(239, 68, 68, 0.1);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.15);
}
.cmp-check {
    background: rgba(16, 185, 129, 0.12);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.cmp-row:hover .cmp-check {
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

/* Bottom Note */
.cmp-bottom {
    margin-top: 24px;
}
.cmp-bottom-card {
    display: flex;
    gap: 18px;
    padding: 22px 26px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    align-items: flex-start;
}
.cmp-bottom-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(26, 86, 219, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    flex-shrink: 0;
}
.cmp-bottom-card p {
    margin: 0 0 8px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #64748B;
}
.cmp-bottom-card p:last-child { margin-bottom: 0; }
.cmp-bottom-card p strong { color: #CBD5E1; }

/* --- Final CTA --- */
.final-cta {
    padding: 100px 0;
    background-color: var(--bg-light);
    background-image: radial-gradient(circle at 1px 1px, rgba(26, 86, 219, 0.06) 1px, transparent 0);
    background-size: 32px 32px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 50%, #7C3AED 100%);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    color: #fff;
    box-shadow: 0 24px 64px rgba(26, 86, 219, 0.2), 0 8px 24px rgba(124, 58, 237, 0.12);
}
.cta-card h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-card p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-size: 14px;
    opacity: 0.8;
}
.cta-trust span { white-space: nowrap; }

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 300px at 12% -10%, rgba(26, 86, 219, 0.3), transparent 60%),
        radial-gradient(560px 320px at 88% 5%, rgba(16, 185, 129, 0.22), transparent 60%);
    pointer-events: none;
}
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(26,86,219,0.9) 0%, rgba(16,185,129,0.85) 50%, rgba(124,58,237,0.8) 100%);
}
.footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 44px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.65;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover {
    background: rgba(26, 86, 219, 0.25);
    border-color: rgba(26, 86, 219, 0.5);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 86, 219, 0.25);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.footer-col h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 14.5px;
    padding: 6px 0;
    transition: var(--transition);
    opacity: 0.65;
}
.footer-col a:hover { opacity: 1; color: #fff; transform: translateX(4px); }

.footer-aside {
    display: grid;
    gap: 16px;
}
.footer-card {
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.35);
}
.footer-card h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 8px;
}
.footer-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
}
.footer-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 14px;
    color: #fff;
    transition: var(--transition);
}
.footer-card-link:hover { color: rgba(255,255,255,0.8); transform: translateX(2px); }

.footer-meta {
    padding: 16px 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    display: grid;
    gap: 12px;
}
.footer-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}
.footer-meta-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
}
.footer-meta a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.footer-meta a:hover { color: #fff; }

/* Footer Locations */
.footer-locations {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 36px 0;
    background: rgba(255,255,255,0.02);
    margin: 0 -9999px;
    padding-left: 9999px;
    padding-right: 9999px;
}
.footer-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-locations-section h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-locations-section h4 .city-count {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    text-transform: none;
    letter-spacing: 0;
}
.country-indicator {
    width: 22px;
    height: 15px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    overflow: hidden;
}
.country-indicator.india {
    background: linear-gradient(180deg, #FF9933 33.3%, #fff 33.3%, #fff 66.6%, #138808 66.6%);
}
.country-indicator.usa {
    background: linear-gradient(180deg, #B22234 40%, #fff 40%, #fff 55%, #3C3B6E 55%);
}
.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.location-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.5);
    transition: all 0.25s ease;
    cursor: default;
}
.location-tag:hover {
    background: rgba(26, 86, 219, 0.18);
    border-color: rgba(26, 86, 219, 0.4);
    color: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom p {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-links span { opacity: 0.4; }

/* --- Location / City Pages --- */
/* === Location Pages — Complete Redesign === */

.loc-hero {
    padding: 100px 0 80px;
    background:
        linear-gradient(180deg, var(--bg-blue-tint) 0%, var(--bg-light) 55%, #fff 100%);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}
.loc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(680px 320px at 6% -12%, rgba(26, 86, 219, 0.18), transparent 60%),
        radial-gradient(640px 300px at 94% 6%, rgba(16, 185, 129, 0.16), transparent 60%),
        radial-gradient(260px 260px at 70% 20%, rgba(26, 86, 219, 0.12), transparent 70%);
    pointer-events: none;
}
.loc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.loc-hero-content {
    max-width: 560px;
}
.loc-hero-content .section-tag {
    margin-bottom: 18px;
}
.loc-hero-content h1 {
    font-size: 50px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    color: var(--text);
}
.loc-hero-content .hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}
.loc-hero-art {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}
.loc-hero-panel {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 26px;
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.16);
    position: relative;
    overflow: hidden;
}
.loc-hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(26, 86, 219, 0.08), transparent 60%),
        radial-gradient(220px 220px at 80% 0%, rgba(26, 86, 219, 0.08), transparent 65%);
}
.loc-hero-envelope {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: var(--primary-light);
    border: 1px solid rgba(26, 86, 219, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 24px rgba(26, 86, 219, 0.12);
}
.loc-hero-signal {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.loc-hero-signal span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: #EEF2FF;
}
.loc-hero-signal span:nth-child(2) { width: 80%; }
.loc-hero-signal span:nth-child(3) { width: 64%; }
.loc-hero-bars {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: end;
    height: 92px;
    position: relative;
    z-index: 1;
}
.loc-hero-bars span {
    display: block;
    border-radius: 12px 12px 8px 8px;
    background: linear-gradient(180deg, rgba(26, 86, 219, 0.7), rgba(26, 86, 219, 0.2));
    height: 100%;
}
.loc-hero-bars span:nth-child(2) { height: 60%; }
.loc-hero-bars span:nth-child(3) { height: 86%; }
.loc-hero-bars span:nth-child(4) { height: 46%; }
.loc-hero-orb {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(26, 86, 219, 0.35), transparent 70%);
    top: -60px;
    right: -10px;
    filter: blur(2px);
    z-index: 0;
}

/* --- Content Area --- */
.loc-content {
    padding: 80px 0 100px;
    background: #fff;
    position: relative;
}
.loc-content::before {
    display: none;
}
.loc-content .container {
    max-width: 880px;
    position: relative;
    z-index: 1;
}
.loc-intro {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 64px;
}

/* --- Content Sections --- */
.loc-section {
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 48px 0;
    position: relative;
    overflow: visible;
    box-shadow: none;
    border-bottom: 1px solid var(--border);
}
.loc-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.loc-section::before {
    display: none;
}
.loc-section::after {
    display: none;
}
.loc-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.loc-section > p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 780px;
}

/* --- Advantage Cards --- */
.loc-advantages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.loc-adv-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
.loc-adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #6366F1);
    opacity: 0;
    transition: var(--transition);
}
.loc-adv-card:hover {
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transform: translateY(-3px);
}
.loc-adv-card:hover::before {
    opacity: 1;
}
.loc-adv-card .adv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #4F7FE8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}
.loc-adv-card h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 8px;
}
.loc-adv-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* --- Industry / FAQ Grid Items --- */
.loc-industries {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.loc-industry {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
}
.loc-industry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.loc-industry:first-child {
    padding-top: 0;
}
.loc-industry:hover {
    border-color: var(--border);
    transform: none;
}
.loc-industry .ind-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}
.loc-industry h4 {
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-dark);
    line-height: 1.4;
}
.loc-industry p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* --- Feature Checklist --- */
.loc-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
}
.loc-features > :last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
}
.loc-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.loc-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.loc-feature:first-child {
    padding-top: 0;
}
.loc-feature svg {
    flex-shrink: 0;
    color: #fff;
    margin-top: 3px;
    background: var(--accent);
    border-radius: 50%;
    padding: 3px;
    width: 22px;
    height: 22px;
}
.loc-feature span {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.7;
}
.loc-feature:hover {
    border-color: var(--border-light);
    background: transparent;
}

/* --- Steps --- */
.loc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
}
.loc-steps::before {
    display: none;
}
.loc-step {
    text-align: left;
    padding: 28px 24px;
    border-radius: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    box-shadow: none;
    position: relative;
    transition: var(--transition);
}
.loc-step:hover {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}
.loc-step .step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.loc-step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.loc-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* --- FAQ Items --- */
.loc-faq {
    max-width: 800px;
}
.loc-faq-item {
    border: none;
    padding: 24px 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border);
}
.loc-faq-item:last-child {
    border-bottom: none;
}
.loc-faq-item h3 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-dark);
}
.loc-faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* --- Legal Pages --- */
.legal-content {
    padding: 60px 0 80px;
    background: var(--bg);
}
.legal-content .container {
    max-width: 820px;
}
.legal-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.legal-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.legal-section {
    margin-bottom: 40px;
}
.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    margin-top: 24px;
}
.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.legal-section ul,
.legal-section ol {
    margin: 12px 0 20px 24px;
    color: var(--text-secondary);
}
.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 4px;
}
.legal-section a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-section a:hover {
    color: var(--primary-dark);
}
.data-center-block {
    text-align: center;
}
.data-center-block ul {
    display: inline-block;
    text-align: left;
    margin: 12px auto 20px;
    padding-left: 24px;
}
.legal-highlight {
    background: var(--bg-blue-tint);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 20px 0;
}
.legal-highlight p {
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0;
}

/* --- About Page --- */
.about-section {
    padding: 80px 0;
}
.about-section:nth-child(even) {
    background: var(--bg-light);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text);
}
.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.about-visual {
    background: linear-gradient(135deg, var(--primary-light) 0%, #DBEAFE 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 64px 0;
    text-align: center;
}
.about-stat h3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}
.about-stat p {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.team-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #4F46E5 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 16px;
}
.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.team-card .team-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}
.team-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.value-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.value-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}
.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Careers Page --- */
.careers-hero-content {
    max-width: 640px;
    margin: 0 auto;
}
.careers-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 60px 0;
}
.perk-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}
.perk-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.perk-icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.perk-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.perk-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.jobs-list {
    max-width: 760px;
    margin: 0 auto;
}
.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.job-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.job-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.job-tags {
    display: flex;
    gap: 8px;
}
.job-tag {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--bg-light);
    color: var(--text-muted);
}
.no-jobs {
    text-align: center;
    padding: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}
.no-jobs h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.no-jobs p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

/* --- Breadcrumb --- */
body .breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    line-height: 1.4;
    font-family: var(--font);
    color: var(--text-muted);
    background: transparent;
    border-bottom: none;
}
body .breadcrumb a {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
body .breadcrumb a:hover {
    color: var(--primary);
    text-decoration: none;
}
body .breadcrumb span {
    margin: 0 8px;
    font-family: var(--font);
    color: var(--text-muted);
}
body .breadcrumb strong {
    font-family: var(--font);
    font-size: 14px;
    color: var(--text);
}
body .breadcrumb .breadcrumb-current {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

/* --- Shared Page Hero --- */
.page-hero {
    padding: 60px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}
.page-hero .section-tag {
    margin-bottom: 16px;
}
.page-hero .breadcrumb {
    text-align: left;
    margin-bottom: 16px;
}
.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text);
}
.page-hero .hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* --- Blog Page --- */
.blog-hero {
    padding: 60px 0 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}
.blog-hero .breadcrumb {
    padding: 24px 0 0;
}
.blog-hero .breadcrumb a {
    color: var(--text-secondary);
    font-weight: 400;
}
.blog-hero .breadcrumb a:hover {
    color: var(--primary);
    text-decoration: none;
}
.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text);
    margin-top: 40px;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 0 56px;
    flex-wrap: wrap;
    background: var(--bg-light);
}
.category-pill {
    padding: 10px 22px;
    border-radius: 100px;
    border: 2px solid var(--border);
    background: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.category-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.category-pill.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.featured-section {
    padding: 80px 0 40px;
    background: var(--bg);
}
.featured-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.featured-header .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2px;
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.featured-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.featured-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.featured-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.featured-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #DBEAFE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-card-img svg {
    color: var(--primary);
    opacity: 0.4;
}
.featured-card-body {
    padding: 28px;
}
.featured-card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--primary-light);
    color: var(--primary);
}
.tag.green {
    background: var(--accent-light);
    color: #059669;
}
.tag.purple {
    background: #F5F3FF;
    color: #7C3AED;
}
.tag.orange {
    background: #FFF7ED;
    color: #EA580C;
}
.featured-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text);
}
.featured-card-body h3 a {
    color: inherit;
    transition: var(--transition);
}
.featured-card-body h3 a:hover {
    color: var(--primary);
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}
.card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}
.author-name {
    font-weight: 600;
    color: var(--text);
}

.latest-section {
    padding: 40px 0 60px;
    background: transparent;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.article-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(26, 86, 219, 0.1);
    transform: translateY(-4px);
}
.article-card .tag {
    margin-bottom: 14px;
    display: inline-block;
}
.article-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--text);
    flex-grow: 1;
}
.article-card h3 a {
    color: inherit;
    transition: var(--transition);
}
.article-card h3 a:hover {
    color: var(--primary);
}
.article-card .article-meta {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 16px;
}
.article-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    transition: var(--transition);
}
.article-card .read-more:hover { gap: 8px; }

.no-results-message {
    display: none;
    text-align: center;
    padding: 80px 40px;
    grid-column: 1 / -1;
}
.no-results-message.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.no-results-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--text-muted);
    opacity: 0.5;
}
.no-results-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.no-results-message p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.no-results-reset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.no-results-reset:hover {
    background: #1445ba;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(26, 86, 219, 0.2);
}

.section-header-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
    align-items: stretch;
}
.section-header-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section-header-wrapper .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2px;
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.section-header-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
}

.search-container {
    width: 100%;
    max-width: 450px;
}
.search-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1), 0 8px 16px rgba(26, 86, 219, 0.12);
}
.search-wrapper svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color 0.2s ease;
}
.search-wrapper:focus-within svg {
    color: var(--primary);
}
#searchInput {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
}
#searchInput::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}
.search-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
    padding: 4px;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.search-clear:hover {
    color: var(--primary);
    background: var(--primary-light);
}
.search-clear.active { display: flex; }
.search-results-info {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
    padding: 0 4px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 48px 0 0;
}
.page-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    background: #fff;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.page-btn.next {
    width: auto;
    padding: 0 20px;
    gap: 6px;
}

.newsletter-section {
    padding: 80px 0;
    background: var(--bg);
}
.newsletter-wrap {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-wrap h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.newsletter-wrap p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
    align-items: stretch;
}
.newsletter-inputs {
    display: flex;
    gap: 12px;
    width: 100%;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}
.newsletter-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
}
.captcha-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.captcha-wrap .h-captcha {
    align-self: flex-start;
}
.newsletter-form .captcha-wrap {
    align-items: center;
}
.captcha-error {
    font-size: 13px;
    color: #EF4444;
    display: none;
}
.captcha-error.visible { display: block; }
.newsletter-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease;
}
.newsletter-message.success {
    display: block;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}
.newsletter-message.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}
.newsletter-message.loading {
    display: block;
    background: #eff6ff;
    color: #0284c7;
    border: 1px solid #bae6fd;
}
#subscribeBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
#subscribeBtn.loading {
    position: relative;
}
#subscribeBtn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Pricing Page --- */
.pricing-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    text-align: center;
}
.pricing-hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}
.pricing-hero .hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero-ctas-center {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust-badges span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-trust-badges span::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    margin-right: 6px;
}

.currency-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.currency-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.currency-label.active { color: var(--primary); }
.currency-toggle {
    width: 44px;
    height: 24px;
    background: var(--primary);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.currency-toggle .toggle-knob {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.currency-toggle.usd .toggle-knob { left: 23px; }

.calculator-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}
.calc-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.calc-header {
    text-align: center;
    margin-bottom: 40px;
}
.calc-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.calc-header p {
    font-size: 15px;
    color: var(--text-secondary);
}
.calc-volume-display {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}
.calc-volume-display span {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
}
.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 0%, var(--border) 0%, var(--border) 100%);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(26,86,219,0.3);
    border: 3px solid #fff;
    transition: transform 0.15s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(26,86,219,0.3);
}
.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin: 12px 0 32px;
}
.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
}
.calc-result-item {
    padding: 24px;
    text-align: center;
    background: #fff;
}
.calc-result-item:first-child {
    border-right: 1px solid var(--border-light);
}
.calc-result-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.calc-result-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.calc-result-value .currency {
    font-size: 20px;
    font-weight: 700;
    vertical-align: top;
    position: relative;
    top: 4px;
}
.calc-result-value .unit {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}
.calc-setup-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-tiers {
    padding: 100px 0;
}
.features-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}
.included-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
}
.included-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.included-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.included-icon.blue { background: var(--primary-light); color: var(--primary); }
.included-icon.green { background: #ECFDF5; color: #10B981; }
.included-icon.purple { background: #F5F3FF; color: #8B5CF6; }
.included-icon.orange { background: #FFF7ED; color: #F59E0B; }
.included-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 16px;
}
.included-card ul { list-style: none; }
.included-card ul li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.included-card ul .check {
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.enterprise-section { padding: 0 0 100px; }
.enterprise-card {
    max-width: 1080px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border-radius: var(--radius-xl);
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    color: #fff;
}
.enterprise-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.enterprise-content p {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 28px;
}
.enterprise-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.ent-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #CBD5E1;
    background: rgba(255,255,255,0.07);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}
.ent-feature svg { color: #10B981; flex-shrink: 0; }
.enterprise-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.enterprise-actions .btn-enterprise {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #fff;
    color: #0F172A;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.enterprise-actions .btn-enterprise:hover {
    background: #F1F5F9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.enterprise-actions .ent-sub {
    font-size: 13px;
    color: #64748B;
}

.comparison-section {
    padding: 100px 0;
    background: var(--bg-light);
}
.compare-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}
.compare-tab {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.compare-tab:hover { border-color: var(--primary); color: var(--primary); }
.compare-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.compare-table-wrap {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    max-width: 960px;
    margin: 0 auto;
}
.compare-table-wrap table {
    width: 100%;
    border-collapse: collapse;
}
.compare-table-wrap thead th {
    padding: 18px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border-light);
    background: #F8FAFC;
}
.compare-table-wrap thead th:first-child { text-align: left; }
.compare-table-wrap thead th.highlight {
    color: var(--primary);
    background: var(--primary-light);
}
.compare-table-wrap tbody td {
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #F1F5F9;
    color: var(--text-secondary);
}
.compare-table-wrap tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text);
}
.compare-table-wrap tbody td.highlight {
    background: rgba(26, 86, 219, 0.02);
}
.compare-table-wrap tbody tr:last-child td { border-bottom: none; }
.compare-table-wrap tbody tr:hover { background: #FAFBFC; }
.check-icon { color: var(--accent); font-weight: 700; font-size: 17px; }
.dash-icon { color: var(--text-muted); font-size: 17px; }
.compare-panel { display: none; }
.compare-panel.active { display: block; }

.faq-section { padding: 96px 0 120px; }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}
.faq-group-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 16px;
}
.faq-page .faq-section {
    padding: 90px 0 120px;
    background:
        radial-gradient(700px 300px at 14% -6%, rgba(26, 86, 219, 0.14), transparent 60%),
        radial-gradient(520px 240px at 86% 0%, rgba(16, 185, 129, 0.12), transparent 60%),
        linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 52%);
}
.faq-help {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: center;
    padding: 32px 36px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0F2C7A 0%, #1A56DB 55%, #22C55E 140%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    margin-bottom: 32px;
}
.faq-help::before,
.faq-help::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
}
.faq-help::before {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.22);
    top: -110px;
    left: -90px;
}
.faq-help::after {
    width: 200px;
    height: 200px;
    background: rgba(16, 185, 129, 0.35);
    bottom: -120px;
    right: 30%;
}
.faq-help-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-help .section-tag {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.faq-help-copy h2 {
    font-size: 32px;
    margin: 0;
    color: #fff;
}
.faq-help-copy p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.78);
}
.faq-search-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
    color: var(--text-muted);
}
.faq-search-bar:focus-within {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}
.faq-search-bar input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    font-family: var(--font);
    color: var(--text);
    background: transparent;
}
.faq-search-bar button {
    border-radius: 999px;
    padding: 10px 18px;
}
.faq-help-links {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}
.faq-help-links a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.6);
}
.faq-help-art {
    position: relative;
    min-height: 220px;
    z-index: 1;
}
.faq-art-card {
    position: absolute;
    right: 20px;
    top: 16px;
    width: 220px;
    height: 140px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}
.faq-art-card::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 20px;
    width: 120px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 0 rgba(255, 255, 255, 0.45), 0 40px 0 rgba(255, 255, 255, 0.3);
}
.faq-art-bubble {
    position: absolute;
    left: 12px;
    bottom: 6px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.faq-art-bubble.small {
    width: 70px;
    height: 70px;
    top: 20px;
    left: 42%;
    background: rgba(255, 255, 255, 0.32);
}
.faq-topic-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 12px 0 18px;
}
.faq-topic-heading h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}
.faq-topic-heading p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}
.faq-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}
.faq-topic-area { margin-bottom: 10px; }
.faq-topic-card {
    position: relative;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.faq-topic-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.12), rgba(255, 255, 255, 0) 55%);
    opacity: 0;
    transition: var(--transition);
}
.faq-topic-card:hover {
    border-color: rgba(26, 86, 219, 0.35);
    transform: translateY(-2px);
}
.faq-topic-card:hover::after { opacity: 1; }
.faq-topic-card.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.14), #fff 65%);
    box-shadow: var(--shadow);
}
.faq-topic-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
    position: relative;
    z-index: 1;
}
.faq-topic-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
.faq-topic-card .topic-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(26, 86, 219, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.faq-topic-card.active .topic-icon {
    background: var(--primary);
    color: #fff;
}
.faq-topic-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 20px 0 28px;
    font-size: 13px;
    color: var(--text-secondary);
}
.faq-topic-strip span { font-weight: 600; color: var(--text); }
.topic-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.topic-pill:hover {
    border-color: rgba(26, 86, 219, 0.4);
    color: var(--primary);
}
.topic-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.faq-no-results {
    margin: 16px 0 0;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px dashed rgba(26, 86, 219, 0.25);
    background: #fff;
    color: var(--text-secondary);
    text-align: center;
    display: none;
}
.faq-results-bar {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    display: none;
}
.faq-results-count { font-size: 14px; }
.faq-page.faq-searching .faq-results-bar { display: flex; }
.faq-page.faq-searching .faq-topic-area { display: none; }
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-group {
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    scroll-margin-top: 120px;
}
.faq-group.is-active {
    border-color: rgba(26, 86, 219, 0.45);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(26, 86, 219, 0.08), #fff 55%);
}
.faq-group.is-active .faq-group-title {
    color: var(--primary);
}
.faq-group.is-active .faq-group-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), #3B82F6);
    margin-top: 8px;
}
.faq-page .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    margin: 0;
}
.faq-page .faq-item {
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: none;
}
.faq-page .faq-item:hover { border-color: rgba(26, 86, 219, 0.35); }
.faq-page .faq-item.open {
    background: #fff;
    border-color: rgba(26, 86, 219, 0.45);
    box-shadow: var(--shadow-sm);
}
.faq-page .faq-question {
    padding: 16px 18px;
    font-size: 15px;
}
.faq-page .faq-answer-inner {
    padding: 0 18px 18px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); }
.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font);
    transition: var(--transition);
    gap: 12px;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-secondary);
    transition: var(--transition);
}
.faq-item.open .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 44px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-preview-card.highlighted { transform: none; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-aside { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-grid .featured-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .cmp-row { grid-template-columns: 180px 1fr 1fr; }
    .cmp-feature { font-size: 13px; padding: 16px 16px; }
    .cmp-cell { padding: 16px 16px; }
    .cmp-cell p { font-size: 12.5px; }
    .enterprise-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }
    .enterprise-features { justify-content: center; }
    .enterprise-actions { align-items: center; }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero h1 { font-size: 38px; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-ctas { justify-content: center; flex-wrap: wrap; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }

    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    .nav-actions.open {
        display: flex;
        position: absolute;
        top: calc(64px + 200px);
        left: 0;
        right: 0;
        background: #fff;
        padding: 0 24px 24px;
        justify-content: center;
    }

    .fit-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .steps { flex-direction: column; align-items: center; gap: 24px; }
    .step-connector { display: none; }

    .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .section-header h2 { font-size: 32px; }
    .cta-card h2 { font-size: 30px; }
    .cta-card { padding: 48px 24px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-trust { flex-direction: column; gap: 12px; align-items: center; }

    .footer-main { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-aside { grid-template-columns: 1fr; }
    .footer-locations-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .loc-hero-grid { grid-template-columns: 1fr; text-align: left; }
    .loc-hero-content h1 { font-size: 34px; }
    .loc-content { padding: 56px 0 72px; }
    .loc-section { padding: 36px 0; }
    .loc-section h2 { font-size: 22px; }
    .loc-advantages { grid-template-columns: 1fr; }
    .loc-steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .careers-perks { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    .legal-section h2 { font-size: 20px; }

    .pricing-preview-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 32px; }
    .pricing-preview-card.highlighted { transform: none; }
    .analytics-split { grid-template-columns: 1fr; gap: 40px; }
    .analytics-mockup { max-width: 500px; margin: 0 auto; }
    .compare-table-card { overflow-x: auto; }
    .compare-bottom-actions { flex-direction: column; gap: 16px; }
    .compare-table-wrap { border-radius: 16px; }
    .compare-table-modern { min-width: 600px; }
    .comparison-header h2 { font-size: 30px; }
    .cmp-row { grid-template-columns: 1fr; }
    .cmp-feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); padding: 14px 20px; }
    .cmp-cell { padding: 14px 20px; }
    .cmp-cell-other { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .cmp-providers { grid-template-columns: 1fr; gap: 12px; }
    .cmp-bottom-card { flex-direction: column; gap: 14px; }

    .logo-strip { gap: 24px; }

    .page-hero h1 { font-size: 34px; }
    .page-hero .hero-subtitle { font-size: 16px; }

    .blog-hero h1 { font-size: 36px; }
    .featured-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .featured-grid .featured-card:last-child { max-width: none; }
    .articles-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .newsletter-inputs { flex-direction: column; }
    .category-filters { gap: 8px; }
    .section-header-wrapper { gap: 20px; }
    .section-header-wrapper h2 { font-size: 28px; }
    .search-container { max-width: 100%; }
    .testimonial-track { overflow-x: auto; scroll-snap-type: x mandatory; }
    .testimonial-card { scroll-snap-align: start; }
    .testimonial-nav { display: none; }

    .pricing-hero h1 { font-size: 36px; }
    .features-included-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-help { padding: 28px 24px; }
    .faq-help-copy h2 { font-size: 28px; }
    .faq-search-bar {
        grid-template-columns: auto 1fr;
        row-gap: 10px;
    }
    .faq-search-bar button { grid-column: 1 / -1; width: 100%; }
    .faq-topic-grid { grid-template-columns: 1fr; }
    .calc-card { padding: 32px 24px; }
    .calc-volume-display { font-size: 36px; }
    .calc-results { grid-template-columns: 1fr; }
    .calc-result-item:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    .compare-table-wrap { overflow-x: auto; }
    .compare-table-wrap table { min-width: 600px; }
    .enterprise-card { padding: 32px 24px; }
    .enterprise-content h2 { font-size: 24px; }
    .enterprise-features { gap: 10px; }
    .ent-feature { font-size: 12px; padding: 6px 12px; }
    .hero-trust-badges { gap: 16px; }
    .faq-help { grid-template-columns: 1fr; }
    .faq-help-art { min-height: 180px; }
    .faq-topic-heading { align-items: flex-start; flex-direction: column; }
    .faq-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 40px; height: 1px; }
    .container { padding: 0 16px; }
    .page-hero h1 { font-size: 28px; }
    .blog-hero h1 { font-size: 28px; }
    .card-meta { flex-wrap: wrap; gap: 10px; }
    .section-header-wrapper { gap: 16px; }
    .section-header-wrapper h2 { font-size: 24px; }
    .comparison-header h2 { font-size: 26px; }
    .comparison { padding: 64px 0; }
    .cmp-feature { padding: 12px 16px; font-size: 13px; }
    .cmp-cell { padding: 12px 16px; }
    .cmp-cell p { font-size: 12.5px; }
    .cmp-provider { padding: 16px 18px; }
    .cmp-provider h4 { font-size: 14px; }
    .cmp-badge { font-size: 9px; padding: 3px 8px; top: 10px; right: 12px; }
    #searchInput { font-size: 13px; }
    #searchInput::placeholder { font-size: 12px; }
    .pricing-hero h1 { font-size: 30px; }
    .calc-result-value { font-size: 26px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .about-stat h3 { font-size: 28px; }
    .footer-links { grid-template-columns: 1fr; }
    .footer-locations-grid { grid-template-columns: 1fr; }
    .location-tag { padding: 4px 10px; font-size: 11px; }
    .loc-hero-content h1 { font-size: 28px; }
    .loc-content { padding: 40px 0 56px; }
    .loc-section { padding: 28px 0; }
    .loc-section h2 { font-size: 20px; }
    .loc-advantages { grid-template-columns: 1fr; max-width: 440px; }
    .loc-adv-card { padding: 22px 20px; }
    .loc-industry { gap: 14px; padding: 18px 0; }
    .loc-feature { gap: 12px; padding: 14px 0; }
    .faq-help { padding: 24px 20px; }
    .faq-help-copy h2 { font-size: 24px; }
    .faq-topic-heading h3 { font-size: 18px; }
}


.logo-img {
    width: 200px;
    height: auto;
}
