/* ============================================================
   Praxiw — Landing (v2)
   Tasarım dili: Space Grotesk display + Inter gövde
   Editoryal bölüm başlıkları, bento grid, marquee, spot-isik hover
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --p: #bf66ff;
  --p-dim: #6248ff;
  --p-soft: rgba(191, 102, 255, 0.12);
  --grad: linear-gradient(141deg, #bf66ff 0%, #6248ff 50%, #00ddeb 100%);
  --grad-2: linear-gradient(141deg, #c87cff 0%, #745cfc 50%, #3ff1fd 100%);
  --grad-3: linear-gradient(141deg, #a855f7 0%, #6d28d9 50%, #0891b2 100%);
  --ink: #ffffff;
  --ink-2: #f5f5f5;
  --surface: #fafafa;
  --card: #ffffff;
  --line: #e8e8e8;
  --line-2: #d5d5d5;
  --text: #161616;
  --muted: #5b5b5b;
  --dim: #8a8a8a;
  --ok: #1f9d6b;
  --warn: #d9822b;
  --danger: #d65353;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.16), 0 6px 16px -10px rgba(0, 0, 0, 0.08);
  --t: 170ms cubic-bezier(0.3, 0.7, 0.2, 1);
  --font-d: "Space Grotesk", "Inter", sans-serif;
  --font-b: "Inter", -apple-system, "Segoe UI", sans-serif;
}
.grad-text {
  background-image: var(--grad-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-b);
  background: var(--ink);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "cv05", "ss01";
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-narrow { max-width: 720px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; color: var(--p); }
::selection { background: #e4d8ff; color: #161616; }
::-moz-selection { background: #e4d8ff; color: #161616; }
::placeholder { color: var(--dim); }

h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.1; letter-spacing: -0.03em; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t), background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-arrow { transition: transform var(--t); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary { background-image: var(--grad); color: #fff; }
.btn-primary:hover { background-image: var(--grad); filter: brightness(1.12); transform: translateY(-1px); box-shadow: 0 10px 28px -10px rgba(159, 86, 255, 0.5); }

.btn-outline { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--p); color: var(--p); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 500;
  color: var(--muted);
  transition: color var(--t);
}
.btn-text:hover { color: var(--text); }
.btn-text svg { color: var(--p); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255, 255, 255, 0.94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 28px; width: auto; display: block; }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background-image: var(--grad);
  color: #fff;
}
.brand-name { font-family: var(--font-d); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: var(--muted);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 6px; }
.mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 6px 24px 20px; border-top: 1px solid var(--line); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 8px; font-size: 15px; color: var(--muted); }
.mobile-menu a:hover { color: var(--text); }
.mobile-cta { margin-top: 10px; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 168px 0 0; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(560px 340px at 22% 12%, rgba(191, 102, 255, 0.12), transparent 65%),
    radial-gradient(620px 380px at 78% 26%, rgba(0, 221, 235, 0.10), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 90px;
}
.hero-kicker {
  font-family: var(--font-d);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background-image: var(--grad-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  line-height: 1.04;
  color: var(--text);
}
.hero-copy h1 em {
  font-weight: 600;
  background-image: var(--grad-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub { font-size: 16.5px; color: var(--muted); max-width: 480px; margin-bottom: 32px; }
.hero .btn-text { color: var(--muted); }
.hero .btn-text:hover { color: var(--text); }
.hero .btn-text svg { color: #bf66ff; }
.hero-trust p { font-size: 13px; color: var(--dim); }
.hero-trust strong { color: var(--text); font-weight: 600; }
.hero-trust .mini-avatar { border-color: rgba(255, 255, 255, 0.28); }
.hero-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.avatar-stack { display: flex; }
.mini-avatar {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c);
  color: #fff;
  font-weight: 600; font-size: 12px;
  border: 2px solid var(--ink);
}
.avatar-stack .mini-avatar + .mini-avatar { margin-left: -9px; }

/* ---------- MOCKUP ---------- */
.hero-visual { position: relative; padding: 10px; }
.mockup {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-2.5deg) rotateX(1.5deg);
  transition: transform var(--t);
}
.mockup:hover { transform: perspective(1400px) rotateY(0) rotateX(0); }
.mockup-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.mock-title { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.mock-status { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--ok); }
.mock-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 196, 138, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(53, 196, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 196, 138, 0); }
}
.mockup-body { padding: 18px 16px 6px; display: flex; flex-direction: column; gap: 13px; }
.mock-msg { display: flex; gap: 9px; align-items: flex-end; }
.mock-msg.user { justify-content: flex-end; }
.mock-avatar {
  flex-shrink: 0;
  width: 27px; height: 27px;
  border-radius: 50%;
  display: grid; place-items: center;
  background-image: var(--grad);
  color: #fff;
  font-size: 9px; font-weight: 700;
}
.mock-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  background: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid var(--line);
}.mock-bubble.user-b {
  background-image: var(--grad);
  color: #fff;
  border: none;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 4px;
}
.mock-bubble strong { color: var(--p); }
.mock-bubble.user-b strong { color: #fff; }
.mock-bubble b { color: var(--ok); font-weight: 600; }
.mock-meta { display: flex; gap: 8px; margin-top: 9px; flex-wrap: wrap; }
.mock-meta span {
  font-size: 10.5px;
  padding: 3px 9px;
  border-radius: var(--r-sm);
  background: var(--p-soft);
  color: var(--p);
  font-weight: 500;
}
.mock-typing { display: flex; gap: 4px; padding: 2px 12px 8px; }
.typing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dim); animation: tb 1.3s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes tb { 0%, 80%, 100% { transform: translateY(0); opacity: 0.4; } 40% { transform: translateY(-5px); opacity: 1; } }
.mockup-input {
  display: flex; align-items: center; justify-content: space-between;
  margin: 4px 16px 16px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  background: var(--ink-2);
  border: 1px solid var(--line);
  font-size: 12.5px; color: var(--dim);
}
.mock-send {
  display: grid; place-items: center;
  width: 27px; height: 27px;
  border-radius: 8px;
  background-image: var(--grad);
  color: #fff;
  font-size: 14px;
}

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  padding: 11px 15px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: floatY 6s ease-in-out infinite;
}
.fc-icon {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--p-soft);
  color: var(--p);
  font-size: 13px; font-weight: 600;
}
.fc-stock { bottom: 86px; left: -34px; }
.fc-lang { top: 16px; right: -26px; animation-delay: 1.4s; }
.fc-label { display: block; font-size: 10px; color: var(--dim); }
.fc-value { display: block; font-size: 12px; font-weight: 500; }
.fc-value b { color: var(--ok); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  padding: 0 0 46px;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  border-top: 1px solid var(--line);
}
.marquee-track { display: flex; gap: 64px; width: max-content; padding-top: 26px; animation: marquee 34s linear infinite; }
.marquee-track span {
  font-family: var(--font-d);
  font-size: 14px; font-weight: 600;
  color: var(--dim);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- SECTIONS ---------- */
.section { padding: 110px 0; }
.section.alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.sec-head { margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 42px); font-weight: 600; margin-bottom: 14px; letter-spacing: -0.03em; }
.sec-head p { font-size: 15.5px; color: var(--muted); max-width: 520px; }
.sec-head-left { display: flex; gap: 40px; align-items: baseline; }
.sec-head-left h2 { margin-bottom: 0; }
.sec-index {
  font-family: var(--font-d);
  font-size: 13px; font-weight: 600;
  background-image: var(--grad-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ---------- BENTO ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--card);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), transform var(--t);
}
.bento-item::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(191, 102, 255, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
  z-index: 1;
}
.bento-item:hover::before { opacity: 1; }
.bento-item:hover { box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.22); transform: translateY(-3px); }

.bento-photo { position: relative; flex-shrink: 0; height: 150px; overflow: hidden; }
.bento-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.bento-item:hover .bento-photo img { transform: scale(1.05); }
.b1 .bento-photo, .b2 .bento-photo { height: 170px; }

.bento-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }

.b1 { grid-column: span 2; grid-row: span 2; }
.b2 { grid-column: span 2; grid-row: span 2; }
.b3 { grid-column: span 1; grid-row: span 2; }
.b4 { grid-column: span 1; grid-row: span 2; }
.b5 { grid-column: span 1; grid-row: span 2; }
.b6 { grid-column: span 1; grid-row: span 2; }

.b1 .bento-num {
  font-family: var(--font-d);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background-image: var(--grad-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 10px 0 14px;
}
.b1 h3 { font-size: 24px; }
.b1 p { max-width: 360px; }
.b1 .bento-tags { margin-top: auto; padding-top: 14px; }
.b3 .bento-meter { margin-top: auto; padding-top: 14px; }
.b4 .bento-body, .b5 .bento-body, .b6 .bento-body { justify-content: flex-end; }

.bento-item h3 { font-size: 19px; margin-bottom: 8px; }
.bento-item p { font-size: 13.5px; color: var(--muted); }
.bento-ico {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--p-soft);
  color: var(--p);
  margin-bottom: 16px;
}
.bento-tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.tag {
  font-size: 11px; font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--muted);
}
.bento-meter { height: 5px; border-radius: 99px; background: var(--ink-2); overflow: hidden; }
.bento-meter span { display: block; height: 100%; background: var(--grad); border-radius: 99px; }
.bento-meter-label { display: flex; justify-content: space-between; margin-top: 7px; font-size: 11px; color: var(--muted); }
.bento-meter-label .dim { color: var(--dim); }

/* ---------- PROCESS ---------- */
.process { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.process-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.process-visual img { display: block; width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.process-steps { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; }
.process-steps li { display: flex; gap: 18px; align-items: flex-start; }
.process-steps .step-num { margin-bottom: 0; flex-shrink: 0; }
.process-steps h3 { font-size: 17px; margin-bottom: 5px; }
.process-steps p { font-size: 13.5px; color: var(--muted); }
.step-num {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background-image: var(--grad);
  color: #fff;
  font-family: var(--font-d);
  font-weight: 600;
}

/* ---------- INTEGRATIONS (list) ---------- */
.integ-list { border-top: 1px solid var(--line); }
.integ-row {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.integ-row:hover { background: var(--ink-2); }
.integ-ico {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--p-soft);
  color: var(--p);
}
.integ-main h4 { font-size: 15.5px; margin-bottom: 3px; }
.integ-main p { font-size: 13px; color: var(--dim); }
.integ-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11px; font-weight: 500;
  color: var(--dim);
  border: 1px solid var(--line);
  padding: 4px 11px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}

/* ---------- STATS ---------- */
.stats { border-block: 1px solid var(--line); background: var(--ink-2); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 12px 8px; }
.stat-num { font-family: var(--font-d); font-size: clamp(40px, 4.4vw, 54px); font-weight: 600; letter-spacing: -0.03em; color: var(--text); }
.stat-suf { font-family: var(--font-d); font-size: 22px; font-weight: 600; background-image: var(--grad-3); -webkit-background-clip: text; background-clip: text; color: transparent; margin-left: 2px; }
.stat p { font-size: 13.5px; color: var(--dim); margin-top: 6px; }

/* ---------- QUOTES ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote {
  padding: 30px 26px;
  border-radius: var(--r);
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  transition: transform var(--t), border-color var(--t);
}
.quote:hover { transform: translateY(-3px); border-color: var(--line-2); }
.quote blockquote { font-size: 15px; line-height: 1.6; color: var(--muted); }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote figcaption strong { display: block; font-size: 13.5px; }
.quote figcaption span { font-size: 12px; color: var(--dim); }

/* ---------- PRICING ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 34px 28px;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform var(--t), border-color var(--t);
}
.price-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.price-card.featured {
  border-color: var(--p);
  background: linear-gradient(180deg, rgba(191, 102, 255, 0.13), transparent 55%), var(--card);
}
.price-flag {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: var(--r-sm);
  background-image: var(--grad);
  color: #fff;
  font-size: 11px; font-weight: 600;
  white-space: nowrap;
}
.price-name { font-family: var(--font-d); font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.price { font-family: var(--font-d); font-size: 42px; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 26px; }
.price .cur { font-size: 20px; vertical-align: super; font-weight: 500; background-image: var(--grad-3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price .per { font-size: 14px; color: var(--dim); margin-left: 4px; }
.price-card ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.price-card li { display: flex; gap: 9px; font-size: 13.5px; color: var(--muted); }
.price-card li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--p-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%23bf66ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq { border-bottom: 1px solid var(--line); }
.faq:first-child { border-top: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 6px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-d);
  font-size: 16px; font-weight: 500;
  transition: color var(--t);
}
.faq summary:hover { color: var(--p); }
.faq summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid var(--line-2);
  position: relative;
  transition: transform 200ms ease, border-color var(--t);
}
.faq-chev::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 7px;
  transform: translate(-50%, -60%) rotate(45deg);
  border-right: 1.5px solid var(--p);
  border-bottom: 1.5px solid var(--p);
}
.faq[open] .faq-chev { transform: rotate(180deg); border-color: var(--p); }
.faq-body { padding: 0 6px 22px; }
.faq-body p { font-size: 14px; color: var(--muted); max-width: 560px; }

/* ---------- CTA ---------- */
.cta { padding: 40px 0 110px; }
.cta-card {
  position: relative;
  padding: 64px 0 0;
  text-align: center;
}
.cta-card h2 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 600; letter-spacing: -0.035em; margin-bottom: 14px; }
.cta-sub { font-size: 16px; color: var(--muted); max-width: 440px; margin: 0 auto 42px; }
.cta-form { max-width: 540px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form input, .cta-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  transition: border-color var(--t), box-shadow var(--t);
  resize: none;
}
.cta-form input:focus, .cta-form textarea:focus {
  outline: none;
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(191, 102, 255, 0.25);
}
.cta-form .btn { margin-top: 4px; }
.form-note { font-size: 12px; color: var(--dim); text-align: center; margin-top: 12px; }
.form-note.success { color: var(--ok); font-weight: 500; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; background: var(--ink-2); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { font-size: 13.5px; color: var(--dim); margin-top: 14px; max-width: 250px; }
.footer-attrib { display: block; margin-top: 10px; font-size: 11px; color: #6b7688; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h5 { font-family: var(--font-d); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.footer-col a, .footer-addr { font-size: 13.5px; color: var(--dim); transition: color var(--t); }
.footer-col a:hover { color: var(--p); }
.footer-addr { font-size: 13px; color: var(--dim); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; gap: 16px; flex-wrap: wrap; }
.footer-bottom > span { font-size: 13px; color: var(--dim); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  border: 1px solid var(--line);
  color: var(--dim);
  transition: all var(--t);
}
.footer-social a:hover { border-color: var(--p); color: var(--p); transform: translateY(-2px); }

/* ---------- IMAGE BAND ---------- */
.band {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.band-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(22, 22, 22, 0.5) 0%, rgba(22, 22, 22, 0.62) 55%, rgba(22, 22, 22, 0.88) 100%), url("../img/container.jpg");
  background-size: cover;
  background-position: center;
}
.band-inner { position: relative; z-index: 1; max-width: 600px; }
.band-inner h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; letter-spacing: -0.03em; margin-bottom: 14px; color: #fff; }
.band-inner h2 em {
  font-weight: 600;
  background-image: var(--grad-2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.band-inner > p { font-size: 15.5px; color: rgba(255, 255, 255, 0.85); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; margin-bottom: 70px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin: 0 auto 30px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .fc-stock { left: 0; }
  .fc-lang { right: 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b1 { grid-column: span 2; }
  .b2 { grid-column: span 2; }
  .b3, .b4 { grid-column: span 1; }
  .b5, .b6 { grid-column: span 1; }
  .process { gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .quotes { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .section { padding: 84px 0; }
  .hero { padding: 130px 0 0; }
  .sec-head-left { flex-direction: column; gap: 12px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .b1, .b2, .b3, .b4, .b5, .b6 { grid-column: span 1; grid-row: auto; }
  .b1 .bento-num { font-size: 52px; margin: 6px 0 12px; }
  .process { grid-template-columns: 1fr; }
  .process-visual img { min-height: 240px; }
  .process-steps { margin-top: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .integ-badge { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .float-card { display: none; }
}
