/* ===================================================
   AUTOMATIKPRO MARKETING SITE — MAIN STYLESHEET
   =================================================== */

/* Variables */
:root {
    --bg-dark:       #F8FAFC;
    --bg-card:       #FFFFFF;
    --bg-border:     #E2E8F0;
    --white:         #FFFFFF;
    --bg-light:      #F1F5F9;
    --primary:       #2563EB;
    --primary-light: #3B82F6;
    --primary-dark:  #1D4ED8;
    --text-dark:     #0F172A;
    --text-body:     #334155;
    --text-muted:    #475569;
    --text-dim:      #94A3B8;
    --success:       #10B981;
    --border-light:  #E2E8F0;
    --radius-sm:     8px;
    --radius:        12px;
    --radius-lg:     20px;
    --radius-xl:     28px;
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
    --shadow:        0 4px 24px rgba(37,99,235,0.12);
    --shadow-lg:     0 8px 48px rgba(37,99,235,0.18);
    --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition:    0.25s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg-dark); color: var(--text-body); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul, ol { list-style: none; }

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #1E40AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: -0.01em;
}
.btn-sm  { padding: 8px 18px;  font-size: 14px; }
.btn-lg  { padding: 14px 28px; font-size: 16px; }
.btn-xl  { padding: 18px 40px; font-size: 18px; font-weight: 700; border-radius: var(--radius-lg); }
.btn-block { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; border-radius: var(--radius); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.45); filter: brightness(1.08); }

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

.btn-ghost {
    background: rgba(37,99,235,0.07);
    color: var(--primary);
    border-color: rgba(37,99,235,0.18);
}
.btn-ghost:hover { background: rgba(37,99,235,0.13); transform: translateY(-2px); }

/* Section Shared */
section { position: relative; }
.dark-section  { background: #F1F5F9; }
.light-section { background: #FFFFFF; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -0.02em; }
.light-section .section-header h2 { color: var(--text-dark); }
.section-sub { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.65; }
.light-section .section-sub { color: var(--text-muted); }

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37,99,235,0.08);
    color: var(--primary-dark);
    border: 1px solid rgba(37,99,235,0.18);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 20px;
}
.light-section .section-badge { background: rgba(37,99,235,0.07); color: var(--primary-dark); border-color: rgba(37,99,235,0.15); }

/* =====================
   NAVBAR
   ===================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(37,99,235,0.08);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-logo { flex-shrink: 0; }
.logo-img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; flex: 1; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--text-dark); }
.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-login { font-size: 15px; font-weight: 500; color: var(--text-muted); }
.nav-login:hover { color: var(--text-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #F0F7FF 0%, #EFF6FF 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 1;
}
.hero .orb-1 { width: 700px; height: 700px; background: rgba(37,99,235,0.08); top: -250px; right: -150px; animation: float1 9s ease-in-out infinite; }
.hero .orb-2 { width: 450px; height: 450px; background: rgba(59,130,246,0.07); bottom: -120px; left: -80px; animation: float2 11s ease-in-out infinite; }
.hero .orb-3 { width: 350px; height: 350px; background: rgba(29,78,216,0.05); top: 40%; left: 35%; animation: float3 13s ease-in-out infinite; }

.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 28px;
}
.badge-dot { width: 7px; height: 7px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
.hero-title { font-size: clamp(36px, 5vw, 60px); font-weight: 900; line-height: 1.08; color: var(--text-dark); margin-bottom: 24px; letter-spacing: -0.03em; }
.hero-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; max-width: 480px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-note { font-size: 13px; color: var(--text-dim); }

/* Hero Mockup */
.hero-mockup { position: relative; animation: floatMockup 7s ease-in-out infinite; }
.mockup-window {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(37,99,235,0.12), 0 0 0 1px rgba(37,99,235,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.mockup-bar {
    background: #F8FAFC;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #E2E8F0;
}
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot.red    { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green  { background: #28C940; }
.mockup-url { flex: 1; text-align: center; font-size: 11px; color: #94A3B8; font-family: 'SF Mono', 'Consolas', monospace; }
.mockup-body { display: flex; height: 340px; }

.mockup-sidebar {
    width: 52px;
    background: #F1F5F9;
    border-right: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 4px;
}
.sidebar-item {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.sidebar-item svg { width: 16px; height: 16px; stroke: #94A3B8; }
.sidebar-item.active { background: rgba(37,99,235,0.1); }
.sidebar-item.active svg { stroke: var(--primary); }
.sidebar-item:hover { background: rgba(37,99,235,0.06); }

.mockup-main { flex: 1; padding: 16px; overflow: hidden; }
.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mockup-greeting { font-size: 11px; color: #475569; font-weight: 500; }
.mockup-plan { font-size: 10px; padding: 3px 8px; background: rgba(37,99,235,0.1); color: var(--primary); border-radius: 100px; font-weight: 600; }

.mockup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.stat-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex; flex-direction: column; gap: 2px;
}
.stat-num   { font-size: 20px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.stat-label { font-size: 8px; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-up    { font-size: 9px; color: var(--success); font-weight: 600; margin-top: 2px; }

.mockup-contacts { display: flex; flex-direction: column; gap: 7px; }
.contact-row {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
}
.contact-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; color: white; flex-shrink: 0;
}
.contact-avatar.blue   { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.contact-avatar.green  { background: linear-gradient(135deg, #10B981, #059669); }
.contact-avatar.purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.contact-info { flex: 1; min-width: 0; }
.contact-name   { display: block; font-size: 10px; font-weight: 600; color: #0F172A; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contact-detail { display: block; font-size: 9px; color: #94A3B8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contact-badge { flex-shrink: 0; font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-badge.new    { background: rgba(37,99,235,0.1);   color: var(--primary); }
.contact-badge.appt   { background: rgba(16,185,129,0.12); color: #059669; }
.contact-badge.review { background: rgba(245,158,11,0.12); color: #D97706; }

/* =====================
   TRUST STRIP
   ===================== */
.trust-strip {
    background: #F1F5F9;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    padding: 32px 0;
}
.trust-label {
    text-align: center;
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 20px;
}
.trust-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; }
.trust-logos span {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
    padding: 6px 14px;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    transition: all 0.2s;
}
.trust-logos span:hover { color: var(--primary-dark); border-color: rgba(37,99,235,0.3); background: rgba(37,99,235,0.05); }

/* =====================
   HOW IT WORKS
   ===================== */
.how-it-works { padding: 104px 0; }
.steps { display: flex; align-items: stretch; gap: 0; justify-content: center; }
.step {
    flex: 1; max-width: 300px;
    text-align: center;
    padding: 44px 28px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.step:hover { background: #FFFFFF; border-color: rgba(37,99,235,0.3); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(37,99,235,0.1); }
.step-number { font-size: 52px; font-weight: 900; line-height: 1; background: linear-gradient(135deg, rgba(37,99,235,0.4), rgba(29,78,216,0.2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; }
.step-icon {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    background: rgba(37,99,235,0.07);
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
}
.step-icon svg { width: 24px; height: 24px; stroke: var(--primary); }
.step h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-arrow { font-size: 28px; color: rgba(37,99,235,0.3); padding: 0 4px; align-self: center; flex-shrink: 0; margin-bottom: 60px; }

/* =====================
   FEATURES
   ===================== */
.features { padding: 104px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-5px); }
.feature-icon {
    width: 48px; height: 48px;
    background: rgba(37,99,235,0.07);
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* =====================
   INDUSTRIES
   ===================== */
.industries { padding: 104px 0; }
.industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.industry-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 28px 12px;
    text-align: center;
    transition: all 0.3s;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    box-shadow: var(--shadow-sm);
}
.industry-card:hover { background: rgba(37,99,235,0.05); border-color: rgba(37,99,235,0.25); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(37,99,235,0.12); }
.industry-icon { font-size: 30px; line-height: 1; }
.industry-card span:last-child { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.industry-card:hover span:last-child { color: var(--primary-dark); }

/* =====================
   PRICING
   ===================== */
.pricing { padding: 104px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-xl);
    padding: 44px 36px;
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.pricing-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pricing-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}
.pricing-featured:hover { transform: scale(1.04) translateY(-5px); }
.featured-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    font-size: 11px; font-weight: 700;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
    letter-spacing: 0.03em;
}
.plan-name { font-size: 13px; font-weight: 800; color: var(--text-muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 12px; }
.price-currency { font-size: 22px; font-weight: 700; color: var(--text-muted); padding-top: 8px; }
.price-amount { font-size: 60px; font-weight: 900; color: var(--text-dark); line-height: 1; letter-spacing: -0.04em; }
.price-period { font-size: 16px; color: var(--text-muted); font-weight: 500; padding-bottom: 4px; }
.plan-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 28px; min-height: 44px; }
.plan-features { margin-top: 28px; display: flex; flex-direction: column; gap: 11px; border-top: 1px solid #E2E8F0; padding-top: 28px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-body); }
.check { color: var(--success); font-weight: 700; flex-shrink: 0; line-height: 1.5; font-size: 15px; }
.pricing-note { text-align: center; margin-top: 40px; font-size: 14px; color: var(--text-muted); }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { padding: 104px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { background: #FFFFFF; border-color: rgba(37,99,235,0.22); transform: translateY(-5px); box-shadow: var(--shadow); }
.stars { font-size: 16px; color: #F59E0B; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-card > p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: white; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--text-dark); font-weight: 600; margin-bottom: 2px; }
.testimonial-author span { font-size: 12px; color: var(--text-dim); }

/* =====================
   FAQ
   ===================== */
.faq { padding: 104px 0; }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 28px;
    font-size: 15px; font-weight: 600; color: var(--text-dark);
    text-align: left;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--text-muted); transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); stroke: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 28px 24px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* =====================
   FINAL CTA
   ===================== */
.final-cta { background: linear-gradient(160deg, #EFF6FF 0%, #F0F9FF 100%); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.final-cta .orb-1 { width: 600px; height: 600px; background: rgba(37,99,235,0.07); top: -250px; left: 50%; transform: translateX(-50%); }
.final-cta .orb-2 { width: 350px; height: 350px; background: rgba(59,130,246,0.06); bottom: -120px; right: 8%; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(32px, 5vw, 54px); font-weight: 900; color: var(--text-dark); line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 24px; }
.final-cta .cta-sub { font-size: 18px; color: var(--text-muted); max-width: 520px; margin: 0 auto 52px; line-height: 1.65; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-note { font-size: 13px; color: var(--text-dim); }

/* =====================
   FOOTER
   ===================== */
.footer { background: #F1F5F9; border-top: 1px solid #E2E8F0; padding: 80px 0 36px; }
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #E2E8F0;
}
.footer-logo { height: 30px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}
.social-links a svg { width: 15px; height: 15px; }
.social-links a:hover { background: rgba(37,99,235,0.08); color: var(--primary); border-color: rgba(37,99,235,0.25); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #94A3B8; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes float1    { 0%,100% { transform: translateY(0); }        50% { transform: translateY(-22px); } }
@keyframes float2    { 0%,100% { transform: translateY(0); }        50% { transform: translateY(16px); } }
@keyframes float3    { 0%,100% { transform: translate(0,0); }       33% { transform: translate(12px,-10px); } 66% { transform: translate(-8px,8px); } }
@keyframes floatMockup { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(-1deg); } }
@keyframes pulse     { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.animate-in { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-ctas { justify-content: center; }
    .hero-note { text-align: center; }
    .hero-mockup { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(4, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-5px); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; inset: 72px 0 0 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        padding: 40px 28px; gap: 24px; z-index: 999;
        border-top: 1px solid #E2E8F0;
    }
    .nav-links.open a { font-size: 22px; color: var(--text-dark); font-weight: 600; }
    .hamburger { display: flex; }
    .hero { padding: 90px 0 64px; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); margin-bottom: 0; font-size: 22px; }
    .features-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    section { padding: 72px 0 !important; }
    .final-cta { padding: 80px 0 !important; }
}
@media (max-width: 480px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .mockup-stats { grid-template-columns: repeat(3, 1fr); }
    .footer-links { grid-template-columns: 1fr 1fr; }
}
