/* ============================================================
   KEMIN AUTOMATION AGENCY — Styles
   Small Fixes. Big Impact. · Purple / White / Green
   ============================================================ */

:root {
    --primary: #7C3AED;
    --primary-deep: #5B21B6;
    --primary-light: #A78BFA;
    --accent: #C084FC;
    --accent-deep: #9333EA;
    --white: #FFFFFF;
    --cream: #F5F3FF;
    --ink: #1E1B4B;
    --ink-soft: #6B7280;
    --gray-400: #6B7A90;
    --gray-300: #92A0B5;
    --gray-200: #C9D3E2;
    --gray-100: #E2E8F0;
    --gray-50: #F1F4F9;
    --green: #00C896;
    --green-deep: #00A47B;
    --green-soft: #E5F9F1;
    --green-glow: rgba(0, 200, 150, 0.18);
    --primary-glow: rgba(124, 58, 237, 0.18);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 2px 8px rgba(30, 27, 75, 0.06);
    --shadow-md: 0 8px 30px rgba(30, 27, 75, 0.08);
    --shadow-lg: 0 20px 60px rgba(30, 27, 75, 0.12);
    --shadow-primary: 0 18px 40px rgba(124, 58, 237, 0.22);
    --shadow-green: 0 18px 40px rgba(0, 200, 150, 0.25);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink-soft);
    line-height: 1.65;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

.accent { color: var(--primary); }
.accent-green { color: var(--green); }

::selection {
    background: var(--primary);
    color: var(--white);
}

/* NAVIGATION */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    box-shadow: var(--shadow-primary);
    animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(2deg); }
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.5px;
}

.logo-dot { color: var(--accent); }

.nav-links a {
    text-decoration: none;
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:not(.nav-cta):hover { color: var(--ink); }

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s var(--ease-out);
    border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--ink);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s;
    border-radius: 2px;
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 999px; font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: 0.1px; text-decoration: none; cursor: pointer; border: none; transition: all 0.35s var(--ease-out); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 24px rgba(124, 58, 237, 0.25); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(124, 58, 237, 0.35); }
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 10px 24px rgba(0, 200, 150, 0.25); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0, 200, 150, 0.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--gray-100); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--cream); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* HERO */
#hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 140px 24px 80px; background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, transparent 70%); -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; }
.hero-orb-1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%); top: -160px; right: -120px; animation: orbFloat1 14s ease-in-out infinite; }
.hero-orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(192, 132, 252, 0.28) 0%, transparent 70%); bottom: -120px; left: -80px; animation: orbFloat2 17s ease-in-out infinite; }
.hero-orb-3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(167, 139, 250, 0.18) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: orbFloat3 11s ease-in-out infinite; }
@keyframes orbFloat1 { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-30px, 25px) scale(1.06); } 66% { transform: translate(25px, -20px) scale(0.96); } }
@keyframes orbFloat2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(45px, -35px); } }
@keyframes orbFloat3 { 0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; } 50% { transform: translate(-50%, -55%) scale(1.15); opacity: 1; } }
.hero-content { text-align: center; position: relative; z-index: 2; max-width: 880px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 999px; border: 1px solid var(--gray-100); background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: 13px; color: var(--ink-soft); font-weight: 500; letter-spacing: 0.3px; margin-bottom: 32px; box-shadow: var(--shadow-sm); animation: fadeUp 0.8s var(--ease-out) 0.1s both; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,150,0.5); } 50% { box-shadow: 0 0 0 8px rgba(0,200,150,0); } }
#hero h1 { font-family: var(--font-display); font-size: clamp(48px, 9vw, 96px); line-height: 1.02; letter-spacing: -2px; color: var(--ink); margin-bottom: 28px; font-weight: 700; }
.hero-line { display: block; animation: heroReveal 1s var(--ease-out) both; }
.hero-line-1 { animation-delay: 0.2s; }
.hero-line-2 { animation-delay: 0.4s; }
.gradient-text { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(40px); filter: blur(6px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-sub { font-size: 19px; line-height: 1.6; color: var(--gray-400); max-width: 620px; margin: 0 auto 40px; animation: fadeUp 0.8s var(--ease-out) 0.6s both; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 72px; animation: fadeUp 0.8s var(--ease-out) 0.7s both; }
.hero-stats { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; animation: fadeUp 0.8s var(--ease-out) 0.9s both; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 36px; color: var(--ink); letter-spacing: -1px; line-height: 1; }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-400); margin-top: 8px; font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--gray-100); }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gray-400); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; z-index: 2; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(180deg, transparent, var(--primary)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* SECTIONS COMMON */
section { padding: 110px 0; position: relative; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-tag { display: inline-block; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; padding: 6px 14px; border-radius: 999px; background: var(--cream); }
.section-header h2 { font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 60px); line-height: 1.05; letter-spacing: -1.5px; color: var(--ink); margin-bottom: 18px; font-weight: 700; }
.section-desc { font-size: 17px; color: var(--gray-400); line-height: 1.65; }

/* SERVICES */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 20px; padding: 36px 30px; transition: all 0.4s var(--ease-out); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--cream) 0%, var(--green-soft) 100%); opacity: 0; transition: opacity 0.4s var(--ease-out); z-index: 0; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-number { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--gray-300); letter-spacing: 2px; margin-bottom: 22px; }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: grid; place-items: center; color: var(--white); margin-bottom: 22px; transition: transform 0.4s var(--ease-spring); }
.service-card:nth-child(even) .service-icon { background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); }
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.5px; }
.service-card p { font-size: 15px; color: var(--gray-400); line-height: 1.6; margin-bottom: 18px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li { font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.service-features li::before { content: "\2713"; width: 16px; height: 16px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; font-size: 10px; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* PROCESS */
#process { background: var(--cream); }
.process-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.process-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary-light), var(--green)); transform: translateX(-50%); }
.process-step { display: flex; align-items: flex-start; gap: 40px; margin-bottom: 60px; position: relative; }
.process-step:nth-child(odd) { flex-direction: row-reverse; }
.process-step-content { flex: 1; background: var(--white); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all 0.4s var(--ease-out); }
.process-step:hover .process-step-content { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-dot { width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 3px solid var(--primary); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--primary); box-shadow: var(--shadow-sm); flex-shrink: 0; margin-bottom: 16px; }
.process-step:nth-child(odd) .process-dot { border-color: var(--green); color: var(--green); }
.process-step-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.5px; }
.process-step-content p { font-size: 15px; color: var(--gray-400); line-height: 1.6; }
.process-spacer { flex: 1; }

/* RESULTS */
#results { background: var(--white); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.result-card { background: var(--cream); border-radius: 20px; padding: 40px 36px; text-align: center; transition: all 0.4s var(--ease-out); border: 1px solid transparent; }
.result-card:hover { background: var(--white); border-color: var(--gray-100); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.result-big-num { font-family: var(--font-display); font-size: 56px; font-weight: 700; letter-spacing: -2px; margin-bottom: 8px; line-height: 1; }
.result-label { font-size: 15px; color: var(--gray-400); font-weight: 500; }
.result-desc { font-size: 13px; color: var(--gray-300); margin-top: 6px; }

/* TESTIMONIALS */
#testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--white); border-radius: 20px; padding: 36px; border: 1px solid var(--gray-100); transition: all 0.4s var(--ease-out); position: relative; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--accent); }
.testimonial-text { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--accent)); display: grid; place-items: center; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.testimonial-role { font-size: 13px; color: var(--gray-400); }

/* FAQ */
#faq { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; background: none; border: none; cursor: pointer; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); text-align: left; letter-spacing: -0.3px; transition: color 0.3s; }
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; flex-shrink: 0; transition: all 0.3s var(--ease-out); }
.faq-item.active .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: var(--gray-400); line-height: 1.65; }

/* CTA SECTION */
#cta { background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, var(--accent-deep) 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(192,132,252,0.15) 0%, transparent 50%); pointer-events: none; }
#cta .section-tag { background: rgba(255,255,255,0.15); color: var(--white); }
#cta h2 { color: var(--white); }
#cta .section-desc { color: rgba(255,255,255,0.75); }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; position: relative; z-index: 1; }
.btn-white { background: var(--white); color: var(--primary); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.25); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* CONTACT */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.5px; }
.contact-info > p { font-size: 15px; color: var(--gray-400); line-height: 1.65; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--white); border-radius: 14px; border: 1px solid var(--gray-100); transition: all 0.3s var(--ease-out); text-decoration: none; color: inherit; }
.contact-method:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.contact-method-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--cream); display: grid; place-items: center; flex-shrink: 0; }
.contact-method-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.contact-method-value { font-size: 15px; color: var(--ink); font-weight: 500; }
.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-100); border-radius: 12px; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--white); transition: all 0.3s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; }

/* FOOTER */
#footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; padding: 4px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--white); }

/* LEGAL PAGES */
.legal-page { background: var(--white); padding: 120px 0 80px; min-height: 100vh; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--ink); margin-bottom: 16px; letter-spacing: -1.5px; }
.legal-content .updated { font-size: 14px; color: var(--gray-400); margin-bottom: 40px; }
.legal-content h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--ink); margin: 36px 0 14px; letter-spacing: -0.5px; }
.legal-content p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 16px 20px; }
.legal-content li { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 8px; }
.legal-content a { color: var(--primary); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--primary); text-decoration: none; font-weight: 500; margin-bottom: 32px; transition: gap 0.3s; }
.back-link:hover { gap: 10px; }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .process-line { display: none; }
    .process-step, .process-step:nth-child(even) { flex-direction: column; }
    .process-dot { position: relative; left: auto; transform: none; margin-bottom: 20px; }
    .process-spacer { display: none; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 1002;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 22px; font-weight: 600; }
    .nav-toggle { display: flex; position: fixed; top: 20px; right: 24px; z-index: 1003; }
    #navbar { background: var(--white); padding: 16px 0; }
    #navbar.scrolled { padding: 12px 0; }
    .nav-inner { padding: 0 24px; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Hero mobile */
    #hero { padding: 100px 20px 60px; min-height: auto; }
    #hero h1 { font-size: clamp(32px, 9vw, 48px); letter-spacing: -1px; }
    .hero-sub { font-size: 16px; margin-bottom: 28px; }
    .hero-actions { margin-bottom: 48px; gap: 12px; }
    .hero-actions .btn { padding: 12px 22px; font-size: 14px; width: 100%; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 26px; }
    .stat-label { font-size: 11px; }
    .stat-divider { height: 28px; }
    .scroll-indicator { display: none; }
    .hero-orb-1 { width: 280px; height: 280px; top: -80px; right: -60px; }
    .hero-orb-2 { width: 200px; height: 200px; bottom: -60px; left: -40px; }
    .hero-orb-3 { width: 140px; height: 140px; }

    /* Sections */
    section { padding: 70px 0; }
    .section-header h2 { font-size: clamp(28px, 7vw, 36px); }
    .section-desc { font-size: 15px; }
    .section-tag { font-size: 12px; }

    /* Grids */
    .services-grid, .results-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 28px 24px; }
    .result-card { padding: 28px 24px; }
    .result-big-num { font-size: 40px; }
    .testimonial-card { padding: 28px 24px; }

    /* Process mobile */
    .process-step { flex-direction: column !important; gap: 16px; margin-bottom: 40px; }
    .process-step-content { padding: 24px; }
    .process-dot { width: 40px; height: 40px; font-size: 14px; }

    /* Contact mobile */
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-method { padding: 14px 16px; }

    /* Footer mobile */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* Legal mobile */
    .legal-page { padding: 100px 0 60px; }
    .legal-content h1 { font-size: 32px; }
    .legal-content h2 { font-size: 20px; }
    .legal-content p, .legal-content li { font-size: 14px; }
}
