/* ==========================================================================
   Arseta — AI Destekli CRM & Müşteri Destek Platformu
   Pazarlama sitesi stil dosyası
   ========================================================================== */

:root {
  /* Brand */
  --brand-blue: #2563eb;
  --brand-blue-600: #1d4ed8;
  --brand-cyan: #06b6d4;
  --brand-teal: #22d3ee;
  --brand-navy: #0b1220;
  --brand-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 55%, #22d3ee 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.12));

  /* Neutrals */
  --ink-900: #0b1220;
  --ink-700: #1e293b;
  --ink-600: #334155;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --line: #e2e8f0;
  --surface: #ffffff;
  --surface-alt: #f6faff;
  --surface-tint: #eff6ff;

  /* Typography */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Effects */
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-glow: 0 20px 60px rgba(37, 99, 235, 0.28);

  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 70px rgba(37, 99, 235, 0.36); }

.btn-ghost {
  background: #fff;
  color: var(--ink-900);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--brand-blue); color: var(--brand-blue); transform: translateY(-2px); }

.btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.24); }

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

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-600);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-blue); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login-mobile-button { display: none; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span + span { margin-top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(900px 500px at 5% 0%, rgba(37, 99, 235, 0.14), transparent 55%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface-tint);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--brand-blue-600);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.18);
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
/* "yapay zeka" ifadesini yalnızca geniş ekranda alt satıra indir */
.hero-br { display: none; }
@media (min-width: 961px) { .hero-br { display: inline; } }
.hero-sub {
  margin-top: 22px;
  font-size: 19px;
  color: var(--ink-600);
  max-width: 540px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 26px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--ink-500);
  font-size: 14px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: #16a34a; flex: none; }

/* Hero visual / dashboard mockup */
.hero-visual { position: relative; }
.mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: perspective(1600px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s ease;
}
.hero-visual:hover .mockup { transform: perspective(1600px) rotateY(-3deg) rotateX(1deg); }
.mockup-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}
.mockup-bar i { width: 11px; height: 11px; border-radius: 50%; background: #e2e8f0; }
.mockup-bar i:nth-child(1) { background: #fca5a5; }
.mockup-bar i:nth-child(2) { background: #fde047; }
.mockup-bar i:nth-child(3) { background: #86efac; }
.mockup-bar .url {
  margin-left: 10px; font-size: 13px; color: var(--ink-400);
  background: #fff; border: 1px solid var(--line); border-radius: 7px;
  padding: 4px 12px;
}
.mockup-body { padding: 18px; background: #f0f7ff; }

.chat-line { display: flex; margin-bottom: 12px; }
.chat-line.me { justify-content: flex-end; }
.bubble {
  max-width: 78%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}
.bubble.ai { background: #fff; border-bottom-left-radius: 5px; color: var(--ink-700); }
.bubble.user { background: var(--brand-gradient); color: #fff; border-bottom-right-radius: 5px; }
.bubble strong { color: inherit; }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.mini-card {
  background: #fff; border-radius: 12px; padding: 12px 14px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.mini-card .k { font-size: 13px; color: var(--ink-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.mini-card .v { font-size: 20px; font-weight: 800; color: var(--ink-900); margin-top: 2px; }
.mini-card .v small { font-size: 13px; color: #16a34a; font-weight: 700; }

.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 12px 15px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--ink-800);
  animation: floaty 4s ease-in-out infinite;
}
.float-chip .ico {
  width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center; color: #fff;
  background: var(--brand-gradient);
}
.float-chip.one { top: -22px; left: -26px; }
.float-chip.two { bottom: -20px; right: -22px; animation-delay: 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Logos / trust strip ---------- */
.trust {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}
.trust p { text-align: center; color: var(--ink-400); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.trust-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; opacity: 0.75; }
.trust-row span { font-size: 20px; font-weight: 800; color: var(--ink-400); letter-spacing: -0.02em; }

/* ---------- Sections ---------- */
section { scroll-margin-top: 84px; }
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-blue); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--ink-500); }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37, 99, 235, 0.35); }
.feature .ico {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; color: #fff; margin-bottom: 18px;
  background: var(--brand-gradient);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.28);
}
.feature h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--ink-500); font-size: 15px; }

/* ---------- Pillars (CRM & Support) ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pillar {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; inset: 0;
  background: var(--brand-gradient-soft); opacity: 0;
  transition: opacity 0.25s ease;
}
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; }
.pillar .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--brand-blue-600);
  background: var(--surface-tint); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.pillar h3 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.pillar > p { color: var(--ink-500); font-size: 16px; margin-bottom: 22px; }
.pillar ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pillar li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-700); }
.pillar li svg { color: var(--brand-cyan); flex: none; margin-top: 3px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px; border-radius: var(--radius); background: var(--surface-alt); border: 1px solid var(--line); }
.step .num {
  counter-increment: step;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 800; font-size: 18px; color: #fff;
  background: var(--brand-gradient); margin-bottom: 16px;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--ink-500); font-size: 15px; }

/* ---------- Stats band ---------- */
.stats {
  background:
    radial-gradient(700px 300px at 15% 20%, rgba(255,255,255,0.14), transparent 60%),
    var(--brand-navy);
  border-radius: var(--radius-lg);
  padding: 54px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.stat { text-align: center; }
.stat .n { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em; }
.stat .n span { background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 6px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  background: #fff; border: 2px solid var(--brand-blue); border-radius: var(--radius-lg);
  padding: 32px; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan h3 { font-size: 19px; font-weight: 700; }
.plan .price { margin: 14px 0 4px; font-size: 34px; font-weight: 800; color: var(--ink-900); line-height: 1.15; }
.plan .price.price-usage { font-size: 26px; }
.plan .price small { font-size: 15px; font-weight: 600; color: var(--ink-400); }
.plan .desc { color: var(--ink-500); font-size: 14px; min-height: 42px; }
.plan ul { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 12px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-700); }
.plan li svg { color: var(--brand-cyan); flex: none; }
.plan .btn { width: 100%; }

/* ---------- Testimonial ---------- */
.quote {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.quote .stars { color: #f59e0b; font-size: 22px; letter-spacing: 3px; margin-bottom: 22px; }
.quote blockquote { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--ink-900); line-height: 1.4; margin: 0; letter-spacing: -0.02em; }
.quote .who { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.quote .who .av { width: 48px; height: 48px; border-radius: 50%; background: var(--brand-gradient); color: #fff; display: grid; place-items: center; font-weight: 800; }
.quote .who .meta { text-align: left; }
.quote .who .meta b { display: block; color: var(--ink-900); }
.quote .who .meta span { color: var(--ink-500); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(37,99,235,0.3); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; font-weight: 600; font-size: 16.5px; color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 24px; height: 24px; position: relative; transition: transform 0.25s ease; }
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--brand-blue); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 14px; }
.faq-item[open] summary .plus { transform: rotate(135deg); }
.faq-item .a { padding: 0 24px 22px; color: var(--ink-500); font-size: 15.5px; }

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 66px 40px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(255,255,255,0.18), transparent 60%),
    var(--brand-gradient);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 18px; margin-top: 14px; }
.cta-band .hero-cta { justify-content: center; margin-top: 30px; }

/* ---------- Contact / Demo form ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; }
.contact-info p { color: var(--ink-500); font-size: 17px; margin-top: 16px; }
.contact-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: center; font-size: 15px; color: var(--ink-700); }
.contact-list .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-tint); color: var(--brand-blue); display: grid; place-items: center; flex: none; }
.contact-list b { display: block; color: var(--ink-900); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-700); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: 15px; color: var(--ink-900); background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--ink-400); margin-top: 6px; }
.app-message {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; padding: 11px 13px;
  border: 1px solid; border-left-width: 4px; border-radius: 10px;
  font-family: inherit; font-size: 14px; font-weight: 400; line-height: 1.5;
}
.app-message::before {
  display: grid; flex: 0 0 22px; place-items: center; width: 22px; height: 22px;
  border-radius: 50%; font-size: 13px; font-weight: 700; line-height: 1;
}
.contact-form-message { display: none; }
.contact-form-message.show { display: flex; }
.app-message--info { color: #1e4f7a; background: #eff7ff; border-color: #93c5fd; }
.app-message--info::before { content: "i"; color: #fff; background: #2563eb; }
.app-message--success { color: #166534; background: #f0fdf4; border-color: #86efac; }
.app-message--success::before { content: "\2713"; color: #fff; background: #16a34a; }
.app-message--warning { color: #713f12; background: #fffbeb; border-color: #fcd34d; }
.app-message--warning::before { content: "!"; color: #713f12; background: #fbbf24; }
.app-message--error { color: #991b1b; background: #fef2f2; border-color: #fca5a5; }
.app-message--error::before { content: "!"; color: #fff; background: #dc2626; }

/* ---------- Footer ---------- */
.footer { background: var(--brand-navy); color: rgba(255,255,255,0.72); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; transition: color 0.15s ease; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
}
/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; }
  .features { grid-template-columns: 1fr 1fr; }
  .pillars, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .stats { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links,
  .nav-login-button,
  .nav-register-button { display: none; }
  .nav-login-mobile-button { display: inline-flex; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px 22px;
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { padding: 10px 0; width: 100%; }
  .section { padding: 68px 0; }
  .features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .container { padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
