:root {
  --orange: #FE7831;
  --blue: #4A44DC;
  --purple: #8041e4;
  --orange2: #EC8751;
  --orange3: #EFA26F;
  --blue2: #7390C7;
  --blue3: #ACBDDE;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }
h1, h2, h3, .heading { font-family: 'Unbounded', sans-serif; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(74,68,220,0.1); transition: box-shadow 0.3s; }
.nav.scrolled { box-shadow: 0 4px 32px rgba(74,68,220,0.12); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 64px; width: auto; display: block; }
.logo-text { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 700; color: var(--purple); letter-spacing: -0.5px; }
.logo-text span { color: var(--orange); }
.nav.scrolled .logo-text { color: var(--purple); }
.nav.scrolled .nav-links a { color: #1a1a2e; font-weight: 600; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: #444; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { background: var(--orange); color: #fff !important; padding: 10px 22px; border-radius: 100px; font-size: 14px !important; font-weight: 600 !important; transition: background 0.2s, transform 0.15s !important; border: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.nav-cta:hover { background: #e55c10 !important; transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; background: #fff; border-top: 1px solid rgba(74,68,220,0.1); padding: 16px 24px 24px; gap: 16px; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: #333; text-decoration: none; padding: 8px 0; }
.mobile-menu button.nav-cta { background: var(--orange); color: #fff; text-align: center; padding: 12px 24px; border-radius: 100px; margin-top: 8px; width: 100%; font-size: 15px !important; }

/* HERO */
.hero { padding: 160px 24px 100px; background: linear-gradient(135deg, #f8f7ff 0%, #fff5f0 50%, #f0f0ff 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(128,65,228,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -50px; left: -50px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(254,120,49,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(128,65,228,0.08); border: 1px solid rgba(128,65,228,0.2); color: var(--purple); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--purple); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero h1 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; line-height: 1.1; color: #0d0d2b; margin-bottom: 20px; letter-spacing: -1.5px; }
.hero h1 .accent-orange { color: var(--orange); }
.hero h1 .accent-blue { color: var(--blue); }
.hero-sub { font-size: 18px; color: #555; line-height: 1.6; margin-bottom: 36px; font-weight: 400; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 16px 32px; border-radius: 100px; font-size: 16px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; font-family: 'Inter', sans-serif; box-shadow: 0 8px 32px rgba(254,120,49,0.35); }
.btn-primary:hover { background: #e55c10; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(254,120,49,0.45); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--blue); padding: 16px 32px; border-radius: 100px; font-size: 16px; font-weight: 600; text-decoration: none; border: 2px solid rgba(74,68,220,0.3); cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.btn-secondary:hover { background: rgba(74,68,220,0.05); border-color: var(--blue); }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(74,68,220,0.1); flex-wrap: wrap; }
.stat-item { text-align: left; flex: 1; min-width: 80px; }
.stat-num { font-family: 'Unbounded', sans-serif; font-size: 28px; font-weight: 900; color: var(--blue); }
.stat-num .o { color: var(--orange); }
.stat-label { font-size: 12px; color: #888; margin-top: 4px; line-height: 1.4; }

/* HERO VISUAL */
.hero-visual { position: relative; }
.comparison-card { background: #fff; border-radius: 24px; border: 1px solid rgba(74,68,220,0.1); padding: 28px; box-shadow: 0 20px 60px rgba(74,68,220,0.12); }
.comp-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #aaa; margin-bottom: 16px; }
.comp-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: 12px; margin-bottom: 6px; font-size: 14px; }
.comp-row.manual { background: rgba(255,100,100,0.05); }
.comp-row.auto { background: rgba(128,65,228,0.05); }
.comp-label { display: flex; align-items: center; gap: 8px; color: #444; font-weight: 500; }
.comp-label .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-red { background: #ff6464; }
.dot-purple { background: var(--purple); }
.comp-time { font-weight: 700; }
.comp-time.slow { color: #ff6464; }
.comp-time.fast { color: var(--purple); }
.comp-divider { text-align: center; padding: 16px 0 12px; }
.comp-total { display: flex; align-items: center; justify-content: space-between; background: linear-gradient(90deg, rgba(128,65,228,0.08), rgba(254,120,49,0.08)); border-radius: 12px; padding: 14px 16px; border: 1px solid rgba(128,65,228,0.15); }
.total-label { font-size: 13px; font-weight: 600; color: #555; }
.total-val { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 900; color: var(--purple); }
.total-val.orange { color: var(--orange); }
.vs-badge { background: #fff; border: 1px solid rgba(74,68,220,0.15); border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 600; color: #aaa; }
.floating-badge { position: absolute; background: #fff; border-radius: 14px; padding: 10px 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(74,68,220,0.1); animation: float 3s ease-in-out infinite; }
.floating-badge.top { top: -20px; right: -20px; color: var(--purple); }
.floating-badge.bottom { bottom: -16px; left: -20px; color: var(--orange); animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* SECTIONS COMMON */
section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-title { font-family: 'Unbounded', sans-serif; font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: #0d0d2b; line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: #666; line-height: 1.65; max-width: 560px; }

/* PROBLEMS */
.problems { background: #fafafa; }
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 56px; }
.prob-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid rgba(74,68,220,0.08); transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.prob-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--purple)); }
.prob-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(74,68,220,0.1); }
.prob-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.prob-icon svg, .prob-icon i { width: 24px; height: 24px; }
.prob-icon.orange { background: rgba(254,120,49,0.1); color: var(--orange); }
.prob-icon.blue { background: rgba(74,68,220,0.1); color: var(--blue); }
.prob-icon.purple { background: rgba(128,65,228,0.1); color: var(--purple); }
.prob-icon.teal { background: rgba(16,185,129,0.1); color: #059669; }
.prob-pain { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #e55; margin-bottom: 8px; }
.prob-pain.advantage { color: var(--purple); }
.prob-title { font-family: 'Unbounded', sans-serif; font-size: 15px; font-weight: 700; color: #0d0d2b; margin-bottom: 10px; line-height: 1.4; }
.prob-text { font-size: 14px; color: #777; line-height: 1.6; margin-bottom: 14px; }
.prob-solution { font-size: 13px; font-weight: 600; color: var(--purple); display: flex; align-items: center; gap: 6px; }
.prob-solution::before { content: '→'; color: var(--orange); }

/* FEATURES */
.features-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 40px 0 0; margin-bottom: 0; }
.tab-btn { padding: 10px 20px; border-radius: 100px; font-size: 14px; font-weight: 600; border: 1.5px solid rgba(74,68,220,0.2); background: transparent; color: #555; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.tab-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.tab-btn:hover:not(.active) { border-color: var(--blue); color: var(--blue); }
.features-content { margin-top: 32px; }
.feature-panel { display: none; }
.feature-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.feature-bullets li { display: flex; align-items: flex-start; gap: 14px; }
.bullet-icon { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--purple)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.bullet-icon svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.bullet-text strong { display: block; font-size: 15px; font-weight: 600; color: #0d0d2b; margin-bottom: 4px; }
.bullet-text span { font-size: 14px; color: #777; line-height: 1.5; }
.feature-mockup { background: linear-gradient(135deg, #f8f7ff, #f0f0ff); border-radius: 24px; padding: 32px; border: 1px solid rgba(128,65,228,0.12); min-height: 380px; display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden; }
.feature-mockup::after { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(128,65,228,0.12), transparent 70%); border-radius: 50%; }
.feature-mockup-image { padding: 0; min-height: auto; background: #fff; border: 1px solid rgba(74,68,220,0.12); }
.feature-mockup-image::after { display: none; }
.feature-mockup-image img { width: 100%; height: auto; display: block; }
.mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mock-title { font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 700; color: #0d0d2b; }
.mock-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: rgba(128,65,228,0.1); color: var(--purple); }
.mock-chart { flex: 1; display: flex; align-items: flex-end; gap: 6px; height: 120px; }
.bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.bar { width: 100%; border-radius: 4px 4px 0 0; transition: height 0.5s ease; }
.mock-metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-metric { background: #fff; border-radius: 12px; padding: 10px 12px; border: 1px solid rgba(74,68,220,0.08); }
.mock-metric-label { font-size: 10px; font-weight: 600; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.mock-metric-val { font-family: 'Unbounded', sans-serif; font-size: 15px; font-weight: 700; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { padding: 5px 10px; border-radius: 8px; font-size: 12px; font-weight: 500; }
.tag.bad { background: rgba(255,100,100,0.1); color: #c43; text-decoration: line-through; }
.tag.good { background: rgba(128,65,228,0.1); color: var(--purple); }
.log-row { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: #fff; border-radius: 10px; border: 1px solid rgba(74,68,220,0.07); }
.log-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.log-text { font-size: 13px; color: #444; flex: 1; }
.log-time { font-size: 11px; color: #aaa; }

/* HOW IT WORKS */
.how { background: linear-gradient(135deg, #0d0d2b, #1a1060); color: #fff; }
.how .section-title { color: #fff; }
.how .section-sub { color: rgba(255,255,255,0.6); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 64px; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--purple)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--purple)); display: flex; align-items: center; justify-content: center; font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 900; color: #fff; margin: 0 auto 20px; box-shadow: 0 8px 32px rgba(128,65,228,0.4); }
.step-title { font-family: 'Unbounded', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.step-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* CASES */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 56px; }
.case-card { background: #fff; border-radius: 24px; border: 1px solid rgba(74,68,220,0.1); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(74,68,220,0.15); }
.case-img { height: 200px; background: linear-gradient(135deg, #f0f0ff, #f8f7ff); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-img-placeholder { display: flex; align-items: center; justify-content: center; color: rgba(74,68,220,0.4); }
.case-img-placeholder i, .case-img-placeholder svg { width: 56px; height: 56px; }
.case-tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-radius: 100px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--purple); }
.case-body { padding: 24px; }
.case-title { font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 800; color: #0d0d2b; margin-bottom: 16px; line-height: 1.3; }
.case-metrics { display: flex; gap: 12px; flex-wrap: wrap; }
.case-metric { display: flex; flex-direction: column; gap: 2px; }
.cm-val { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 900; color: var(--orange); }
.cm-label { font-size: 12px; color: #888; }

/* TEAM */
.team { background: #fafafa; }
.team-inner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.team-list { display: flex; flex-direction: column; gap: 16px; }
.team-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: #fff; border-radius: 16px; border: 1px solid rgba(74,68,220,0.08); transition: border-color 0.2s; }
.team-item:hover { border-color: rgba(128,65,228,0.25); }
.team-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.team-icon i, .team-icon svg { width: 22px; height: 22px; }
.team-icon.o { background: rgba(254,120,49,0.1); color: var(--orange); }
.team-icon.b { background: rgba(74,68,220,0.1); color: var(--blue); }
.team-icon.p { background: rgba(128,65,228,0.1); color: var(--purple); }
.team-icon.g { background: rgba(16,185,129,0.1); color: #059669; }
.team-item-title { font-size: 15px; font-weight: 700; color: #0d0d2b; margin-bottom: 4px; font-family: 'Unbounded', sans-serif; }
.team-item-text { font-size: 13px; color: #777; line-height: 1.55; }
.team-visual { background: linear-gradient(135deg, #0d0d2b, #1a1060); border-radius: 28px; padding: 36px; display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; }
.team-visual::before { content: ''; position: absolute; top: -60px; right: -60px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(128,65,228,0.3), transparent 70%); border-radius: 50%; }
.tv-title { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 800; color: #fff; }
.tv-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }
.role-badge { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border-radius: 14px; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.08); }
.role-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.role-avatar i, .role-avatar svg { width: 18px; height: 18px; }
.role-name { font-size: 14px; font-weight: 600; color: #fff; }
.role-desc { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* FORM */
.form-section { background: linear-gradient(135deg, var(--blue), var(--purple)); position: relative; overflow: hidden; }
.form-section::before { content: ''; position: absolute; top: -100px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 70%); border-radius: 50%; }
.form-section::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(254,120,49,0.2), transparent 70%); border-radius: 50%; }
.form-section .section-title { color: #fff; }
.form-section .section-sub { color: rgba(255,255,255,0.7); max-width: 480px; }
.form-section .section-label { color: rgba(255,255,255,0.6); }
.form-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(20px); border-radius: 28px; padding: 40px; border: 1px solid rgba(255,255,255,0.2); max-width: 500px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.form-field { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 6px; }
.form-input { width: 100%; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); border-radius: 12px; padding: 13px 16px; font-size: 16px; color: #fff; font-family: 'Inter', sans-serif; transition: border-color 0.2s, background 0.2s; outline: none; }
.form-input::placeholder { color: rgba(255,255,255,0.45); }
.form-input:focus { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.25); }
.form-select { width: 100%; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); border-radius: 12px; padding: 13px 16px; font-size: 16px; color: #fff; font-family: 'Inter', sans-serif; outline: none; cursor: pointer; appearance: none; }
.form-select option { background: #1a1060; color: #fff; }
.form-input.input-error,
.form-select.input-error { border-color: #ffb3a7; background: rgba(255,179,167,0.12); }
.form-consent.input-error label { color: #ffccc3; }
.form-consent.input-error input[type="checkbox"] { outline: 1px solid #ffb3a7; outline-offset: 2px; border-radius: 4px; }
.form-field-error { min-height: 16px; margin-top: 6px; font-size: 12px; color: #ffb3a7; line-height: 1.3; }
.btn-white { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: var(--blue); padding: 16px 32px; border-radius: 100px; font-size: 16px; font-weight: 700; border: none; cursor: pointer; width: 100%; transition: all 0.2s; font-family: 'Inter', sans-serif; box-shadow: 0 8px 32px rgba(0,0,0,0.2); margin-top: 8px; }
.btn-white:hover { background: #f0f0ff; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.btn-white:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 12px; }
.form-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 13px; }
.trust-icon { width: 20px; height: 20px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.trust-icon i, .trust-icon svg { width: 11px; height: 11px; stroke: #fff; }

/* CONSENT CHECKBOX */
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 12px 0 4px; }
.form-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; width: 17px; height: 17px; cursor: pointer; accent-color: #fff; }
.form-consent label { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; cursor: pointer; }
.form-consent a { color: rgba(255,255,255,0.9); text-decoration: underline; text-underline-offset: 2px; }
.form-consent a:hover { color: #fff; }

/* FAQ */
.faq { background: #fff; }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(74,68,220,0.08); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: 'Inter', sans-serif; }
.faq-q-text { font-size: 16px; font-weight: 600; color: #0d0d2b; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(74,68,220,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, transform 0.3s; }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--blue); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 0 20px; font-size: 15px; color: #666; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* FOOTER */
footer { background: #0d0d2b; color: rgba(255,255,255,0.6); padding: 60px 24px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 10px; }
.footer-logo-text { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 700; color: var(--purple); margin-bottom: 10px; }
.footer-logo-text span { color: var(--orange); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); max-width: 220px; line-height: 1.5; }
.footer-links h4 { font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* SUCCESS */
.success-msg { display: none; text-align: center; padding: 20px; }
.success-icon { display: flex; justify-content: center; margin-bottom: 16px; color: rgba(255,255,255,0.9); }
.success-icon i, .success-icon svg { width: 52px; height: 52px; }
.success-msg p { color: #fff; font-size: 18px; font-weight: 600; }
.success-msg small { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ERROR */
.form-error { font-size: 12px; color: #ffb3a7; margin-top: 8px; text-align: center; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,8,40,0.65); backdrop-filter: blur(6px); z-index: 999; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: linear-gradient(135deg, var(--blue), var(--purple)); border-radius: 28px; padding: 40px; max-width: 460px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 32px 80px rgba(0,0,0,0.4); }
.modal-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); transition: background 0.2s; }
.modal-close:hover { background: rgba(255,255,255,0.22); }
.modal-close i, .modal-close svg { width: 18px; height: 18px; }
.modal-title { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.modal-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  section { padding: 80px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 120px 24px 80px; }
  .hero-stats { gap: 20px; }
  .feature-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .team-inner-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .floating-badge { display: none; }
}
@media (max-width: 600px) {
  section { padding: 64px 20px; }
  .hero { padding: 100px 20px 64px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .steps { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .form-card { padding: 28px 20px; }
  .modal-box { padding: 28px 20px; }
}
