/* ============================================
   CON-TAK WEBSITE - COMPLETE STYLES
   Sales-First Design System
   ============================================ */

/* ============================================
   RESET & VARIABLES
   ============================================ */
:root {
    /* Colors */
    --primary: #017E99;
    --primary-light: #48B8B1;
    --primary-dark: #0E416C;
    --dark: #0E1828;
    --gray-900: #1a1a1a;
    --gray-700: #3c3c3c;
    --gray-600: #666666;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #eeeeee;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    
    /* Accent Colors */
    --accent-orange: #ff6b35;
    --accent-green: #28a745;
    --accent-red: #dc3545;
    
    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Effects */
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(1, 126, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 126, 153, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(1, 126, 153, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(1, 126, 153, 0.15);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-xl {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    gap: 40px;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 15px;
    position: relative;
}

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

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

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

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

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

.nav-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link-auth {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link-auth:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.nav-micro-copy {
    font-size: 11px;
    color: var(--gray-500);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
    display: none;
}

/* ============================================
   URGENCY BANNER
   ============================================ */
.urgency-banner {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #f7931e 100%);
    color: var(--white);
    padding: 30px 24px;
    text-align: center;
    border-bottom: 3px solid #e67e22;
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
}

.urgency-banner p {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.urgency-banner strong {
    font-weight: 700;
}

/* ============================================
   HERO SALES
   ============================================ */
.hero-sales {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    text-align: center;
    margin-top: 135px;
}

.hero-sales-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-sales-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-sales-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-sales-subtitle strong {
    font-weight: 700;
    color: var(--gray-900);
}

.hero-sales-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-sales-note {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
}

/* desktop: buttons display side by side, DOM order is ghost | primary */
/* ── Hero CTA mobile: Start Free → note → See Features ── */
@media (max-width: 600px) {
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }

    .hero-cta-buttons .btn-primary {
        order: 1;
        margin-bottom: 12px;
    }

    .hero-sales-note {
        order: 2;
        text-align: center;
        margin: 0 0 20px 0;
    }

    .hero-cta-buttons .btn-ghost {
        order: 3;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.hero-social-proof.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    border: 3px solid var(--white);
    font-size: 16px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:last-child {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.proof-text {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
}

.proof-text strong {
    color: var(--gray-900);
    font-weight: 700;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-text {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
}

.section-description {
    font-size: 18px;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto;
}

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

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: 140px 0 80px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(1, 126, 153, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(72, 184, 177, 0.08), transparent 50%),
        var(--gray-100);
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(1, 126, 153, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

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

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

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background: var(--white);
    text-align: center;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.problem-stat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-big {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-red);
}

.stat-label {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.4;
}

/* ============================================
   FEATURE SHOWCASE
   ============================================ */
.feature-showcase {
    padding: 100px 0;
    background: var(--white);
}

.feature-showcase:nth-child(even) {
    background: var(--gray-100);
}

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

.feature-showcase-reverse .feature-showcase-grid {
    direction: rtl;
}

.feature-showcase-reverse .feature-showcase-content {
    direction: ltr;
}

.feature-showcase-reverse .feature-showcase-visual {
    direction: ltr;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(1, 126, 153, 0.1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-showcase-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.feature-showcase-text {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-showcase-list li {
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: var(--gray-700);
}

.feature-showcase-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.feature-showcase-list strong {
    color: var(--gray-900);
    font-weight: 600;
}

.feature-showcase-content,
.feature-showcase-visual {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-showcase-content.animate-in,
.feature-showcase-visual.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mockup-phone,
.mockup-screen {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mockup-phone img,
.mockup-screen img {
    width: 100%;
    display: block;
}

/* ============================================
   MOCKUPS - INLINE CSS COMPONENTS
   ============================================ */

/* Analytics Mini Mockup */
.analytics-mini-mockup {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 24px;
}

.analytics-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 12px;
}

.analytics-mini-stat {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.mini-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.mini-stat-label {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
    margin-top: 4px;
}

.analytics-mini-note {
    font-size: 11px;
    color: var(--gray-500);
    text-align: center;
    margin: 0;
}

/* CRM Mockup */
.crm-mockup {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
}

.crm-pipeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.crm-stage {
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.crm-stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.crm-stage-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-900);
}

.crm-stage-count {
    background: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-700);
}

.crm-lead-card {
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crm-lead-card strong {
    font-size: 14px;
    color: var(--gray-900);
}

.crm-lead-card span {
    font-size: 11px;
    color: var(--gray-600);
}

.crm-tag {
    display: inline-block;
    padding: 2px 8px;
    background: var(--accent-red);
    color: var(--white);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    margin-top: 4px;
    align-self: flex-start;
}

.crm-tag.warm {
    background: var(--accent-orange);
}

.crm-tag.success {
    background: var(--accent-green);
}

/* Meeting Scheduler Mockup */
.scheduler-mockup {
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 24px;
}

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

.scheduler-header strong {
    font-size: 16px;
    color: var(--gray-900);
}

.scheduler-timezone {
    font-size: 12px;
    color: var(--gray-600);
}

.scheduler-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.scheduler-slot {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.scheduler-slot:hover {
    border-color: var(--primary);
}

.scheduler-slot.selected {
    border-color: var(--primary);
    background: rgba(1, 126, 153, 0.05);
}

.scheduler-slot strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.scheduler-slot span {
    font-size: 12px;
    color: var(--gray-600);
}

.scheduler-btn {
    width: 100%;
    background: var(--accent-green);
    color: var(--white);
    padding: 12px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.scheduler-btn:hover {
    background: #218838;
}

.scheduler-note {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 8px;
    text-align: center;
}

/* ============================================
   INTELLIGENCE SECTION
   ============================================ */
.intelligence-section {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.intelligence-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.intelligence-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.intelligence-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.intelligence-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.intelligence-text strong {
    font-weight: 700;
    color: var(--white);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    background: var(--gray-100);
}

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

.pricing-card-simple {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.pricing-card-simple.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card-highlight {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.pricing-price-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pricing-strike {
    font-size: 16px;
    color: var(--gray-500);
    text-decoration: line-through;
}

.pricing-price-main {
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.pricing-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-period {
    font-size: 16px;
    color: var(--gray-600);
    margin-top: 8px;
}

.pricing-note {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: var(--gray-700);
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.pricing-features strong {
    color: var(--gray-900);
    font-weight: 700;
}

.pricing-footer-note {
    text-align: center;
    margin-top: 32px;
    color: var(--gray-600);
    font-size: 14px;
}

/* ============================================
   FOOTER CTA
   ============================================ */
.footer-cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    text-align: center;
}

.footer-cta-content {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.footer-cta-content.animate-in {
    opacity: 1;
    transform: scale(1);
}

.footer-cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

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

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 60px 0 24px;
}

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

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

.footer-description {
    color: var(--gray-300);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

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

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
}

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

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

.footer-links a {
    color: var(--gray-300);
    font-size: 15px;
}

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

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

.footer-lang {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-link {
    color: var(--gray-300);
}

.lang-link.active {
    color: var(--primary-light);
    font-weight: 600;
}

/* ============================================
   FAQ GRID (for FAQ page)
   ============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.faq-answer {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links,
    .nav-auth {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .urgency-banner {
        top: 66px;
    }

    .nav-mobile {
        display: block;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        max-height: calc(100vh - 66px);
        overflow-y: auto;
    }

    .nav-mobile.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-mobile-links {
        padding: 24px;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-mobile-link {
        display: block;
        padding: 12px 0;
        font-weight: 500;
        color: var(--gray-700);
        font-size: 16px;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-mobile-link:last-child {
        border-bottom: none;
    }

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

    .nav-mobile-auth {
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .feature-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-showcase-reverse .feature-showcase-grid {
        direction: ltr;
    }

    .crm-pipeline {
        grid-template-columns: 1fr;
    }

    .scheduler-slots {
        grid-template-columns: 1fr;
    }

    .pricing-grid-simple {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }

    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

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

    .footer-links a {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .problem-stats {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-sales {
        padding: 100px 0 60px;
    }

    .urgency-banner {
        font-size: 13px;
        padding: 12px 16px;
    }

    .proof-avatars .avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .page-hero {
        padding: 120px 0 60px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================
   Back to Top Button (mobile only)
   ============================================= */
#back-to-top {
    display: none;
}

@media (max-width: 768px) {
    #back-to-top {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 24px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: 50%;
        font-size: 22px;
        cursor: pointer;
        z-index: 998;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    #back-to-top.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    #back-to-top:hover {
        background: var(--primary-dark);
    }
}