/* ─────────────────────────────────────────
   VARIABLES
───────────────────────────────────────── */
:root {
  --bg:     #FFFFFF;
  --bg2:    #F4F7FF;
  --bg3:    #E8EEFF;
  --card:   rgba(255, 255, 255, 0.95);
  --border: rgba(26, 115, 232, 0.13);
  --blue:   #1A73E8;
  --blue2:  #1A73E8;
  --amber:  #D97706;
  --amber2: #F59E0B;
  --green:  #059669;
  --text:   #0A1628;
  --muted:  #4B5A7A;
  --dim:    #94A3B8;
  --font:   'Sora', sans-serif;
  --mono:   'DM Mono', monospace;
  --r:      14px;
  --rl:     24px;
  --t:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   BACKGROUND MESH
───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(26, 115, 232, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(245, 158, 11, 0.05) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 55% 10%, rgba(26, 115, 232, 0.04) 0%, transparent 65%);
}

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--mono);
  border: 1px solid;
}

.chip-blue  { background: rgba(26, 115, 232, 0.10); border-color: rgba(26, 115, 232, 0.30); color: var(--blue); }
.chip-amber { background: rgba(217, 119, 6, 0.10);  border-color: rgba(217, 119, 6, 0.30);  color: var(--amber); }
.chip-green { background: rgba(5, 150, 105, 0.10);  border-color: rgba(5, 150, 105, 0.30);  color: var(--green); }

/* language toggle via html[lang] */
html[lang="es"] .en { display: none !important; }
html[lang="en"] .es { display: none !important; }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--t);
}

.btn-blue { background: var(--blue); color: #fff; border: 1px solid transparent; }
.btn-blue:hover { background: #155CC4; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26, 115, 232, 0.4); }

.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(26, 115, 232, 0.25); }
.btn-outline:hover { border-color: rgba(26, 115, 232, 0.45); background: rgba(26, 115, 232, 0.05); }

.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--t);
}

#nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 24px rgba(26, 115, 232, 0.07);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img { width: 34px; height: 34px; border-radius: 8px; }
.nav-logo-name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }

.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color var(--t); }
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-pill {
  display: flex;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  overflow: hidden;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--mono);
  color: var(--dim);
  transition: all var(--t);
  cursor: pointer;
}

.lang-btn.on { background: var(--blue); color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); display: block; }

/* ─────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────── */
.m-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

.m-overlay.open { opacity: 1; pointer-events: all; }

.m-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 272px;
  z-index: 201;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  padding: 72px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform var(--t);
}

.m-drawer.open { transform: translateX(0); }
.m-drawer a { font-size: 17px; font-weight: 600; color: var(--muted); padding: 12px 0; border-bottom: 1px solid var(--border); transition: color var(--t); }
.m-drawer a:hover { color: var(--text); }
.m-drawer .btn { margin-top: 16px; width: 100%; justify-content: center; }

.m-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}

.lang-pill--drawer { margin-top: 8px; align-self: flex-start; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.hero-chip { margin-bottom: 28px; }

.hero-h1 {
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-h1 .gr-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub { font-size: 17px; color: var(--muted); max-width: 460px; line-height: 1.75; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hstat-num { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.hstat-num.c-blue   { color: var(--blue2); }
.hstat-num.c-amber  { color: var(--amber); }
.hstat-num.c-green  { color: var(--green); }
.hstat-label { font-size: 11px; color: var(--dim); font-family: var(--mono); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.07em; }

/* hero right */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; min-height: 560px; }

/* phone frame */
.phone {
  width: 248px;
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #16213A, #0C1425);
  border-radius: 44px;
  padding: 14px 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 48px 96px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(26, 115, 232, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.phone-pill {
  width: 72px;
  height: 18px;
  background: #070C18;
  border-radius: 100px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-pill::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #1a2544; }
.phone-screen { background: #060B14; border-radius: 32px; overflow: hidden; padding: 14px; }

/* app chrome inside phone */
.app-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.app-name { font-size: 13px; font-weight: 800; }
.app-badge { background: rgba(26, 115, 232, 0.2); border: 1px solid rgba(26, 115, 232, 0.4); color: var(--blue2); font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 100px; font-family: var(--mono); }

.app-tabs { display: flex; gap: 6px; margin-bottom: 14px; overflow: hidden; }
.app-tab { padding: 5px 11px; border-radius: 100px; font-size: 9px; font-weight: 700; border: 1px solid var(--border); color: var(--dim); white-space: nowrap; }
.app-tab.on { background: var(--blue); color: #fff; border-color: var(--blue); }

.app-items { display: flex; flex-direction: column; gap: 8px; }

.app-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 9px;
}

.app-item--active { border-color: rgba(26, 115, 232, 0.35); background: rgba(26, 115, 232, 0.06); }

.app-emoji { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: rgba(255, 255, 255, 0.04); flex-shrink: 0; }
.app-info { flex: 1; min-width: 0; }
.app-iname { font-size: 10px; font-weight: 700; margin-bottom: 2px; }
.app-iprice { font-size: 9px; color: var(--amber); font-family: var(--mono); font-weight: 600; }

.app-add {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
  flex-shrink: 0; line-height: 1;
}

.app-add--check { background: var(--amber); }

.app-footer {
  background: var(--blue);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.app-footer-text  { font-size: 10px; font-weight: 700; }
.app-footer-price { font-size: 11px; font-weight: 800; font-family: var(--mono); }

/* floating decorators */
.duck-wrap {
  position: absolute;
  top: -30px; right: -20px;
  z-index: 3;
  animation: duckBob 4.5s ease-in-out infinite;
}

@keyframes duckBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}

.qr-float {
  position: absolute;
  bottom: -16px; right: -50px;
  z-index: 4;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(26, 115, 232, 0.1);
  box-shadow: 0 12px 36px rgba(26, 115, 232, 0.18);
  animation: qrBob 5s ease-in-out infinite 1.5s;
}

.qr-label {
  text-align: center;
  font-size: 7px;
  font-weight: 800;
  color: #0A0F1A;
  font-family: var(--mono);
  margin-top: 5px;
  letter-spacing: 0.12em;
}

@keyframes qrBob {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

.notif-float {
  position: absolute;
  top: 30px; left: -60px;
  z-index: 4;
  min-width: 210px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(26, 115, 232, 0.14);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.14);
  backdrop-filter: blur(12px);
  animation: notifBob 6s ease-in-out infinite 2.5s;
}

@keyframes notifBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.notif-ico { width: 32px; height: 32px; border-radius: 9px; background: rgba(26, 115, 232, 0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.notif-t   { font-size: 11px; font-weight: 700; margin-bottom: 1px; color: var(--text); }
.notif-s   { font-size: 10px; color: var(--muted); }

/* ─────────────────────────────────────────
   SECTIONS — SHARED
───────────────────────────────────────── */
.section { padding: 110px 0; position: relative; z-index: 1; }

.section-sep {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.25), transparent);
}

.sec-label { margin-bottom: 14px; }

.sec-h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 14px;
}

.sec-p { font-size: 17px; color: var(--muted); max-width: 540px; line-height: 1.75; }
.sec-head { margin-bottom: 68px; }

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
#how {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(235, 242, 255, 0.7) 30%,
    rgba(235, 242, 255, 0.7) 70%,
    transparent 100%
  );
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }

.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.2), rgba(26, 115, 232, 0.5), rgba(26, 115, 232, 0.2));
  z-index: 0;
}

.step { padding: 0 16px; text-align: center; position: relative; z-index: 1; }

.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  font-family: var(--mono);
  color: var(--blue2);
  transition: all var(--t);
  position: relative;
}

.step-circle::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(26, 115, 232, 0.3);
  opacity: 0;
  transition: opacity var(--t);
}

.step:hover .step-circle { background: rgba(26, 115, 232, 0.12); border-color: rgba(26, 115, 232, 0.5); }
.step:hover .step-circle::after { opacity: 1; }

.step-icon { font-size: 28px; margin-bottom: 10px; }
.step-t    { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-d    { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 28px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(26, 115, 232, 0.06);
}

.fcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.1), transparent);
}

.fcard:hover {
  border-color: rgba(26, 115, 232, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26, 115, 232, 0.14), 0 0 0 1px rgba(26, 115, 232, 0.2);
}

.fcard.wide {
  grid-column: 1 / 3;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.07) 0%, rgba(255, 255, 255, 0.97) 55%);
  border-color: rgba(26, 115, 232, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.fcard.wide:hover { transform: translateY(-4px); }
.fcard.wide .ficon { margin-bottom: 20px; }

.ficon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  border: 1px solid;
}

.ficon-blue   { background: rgba(26, 115, 232, 0.12); border-color: rgba(26, 115, 232, 0.3); }
.ficon-amber  { background: rgba(245, 158, 11, 0.10); border-color: rgba(245, 158, 11, 0.3); }
.ficon-green  { background: rgba(16, 185, 129, 0.10); border-color: rgba(16, 185, 129, 0.3); }
.ficon-purple { background: rgba(139, 92, 246, 0.10); border-color: rgba(139, 92, 246, 0.3); }

.ft    { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.fd    { font-size: 13px; color: var(--muted); line-height: 1.7; }
.ft-lg { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.fd-lg { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* live orders widget */
.live-dash { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }

.ld-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ld-title { font-size: 10px; font-weight: 700; color: var(--dim); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.09em; }

.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px var(--green); animation: blink 2s infinite; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.ord-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  margin-bottom: 5px;
}

.ord-row:last-child { margin-bottom: 0; }

.obadge { font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 100px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.07em; flex-shrink: 0; }
.ob-new  { background: rgba(26, 115, 232, 0.12); color: var(--blue); }
.ob-prep { background: rgba(217, 119, 6, 0.12);  color: var(--amber); }
.ob-done { background: rgba(5, 150, 105, 0.12);  color: var(--green); }

.ord-info { flex: 1; font-size: 10px; color: var(--muted); }
.ord-time { font-size: 9px; color: var(--dim); font-family: var(--mono); }

/* ─────────────────────────────────────────
   USE CASES
───────────────────────────────────────── */
#cases {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(235, 242, 255, 0.65) 40%,
    rgba(235, 242, 255, 0.65) 60%,
    transparent 100%
  );
}

.tabs-nav {
  display: inline-flex;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 52px;
}

.tab-b {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--t);
  cursor: pointer;
}

.tab-b.on { background: var(--blue); color: #fff; }

.tab-panel { display: none; }
.tab-panel.on { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.case-tag { margin-bottom: 14px; }
.case-h   { font-size: 32px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 16px; }
.case-p   { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }

.case-feats { display: flex; flex-direction: column; gap: 11px; }
.cf-row { display: flex; align-items: center; gap: 12px; }
.cf-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.cf-dot--amber { background: var(--amber); }
.cf-dot--green { background: var(--green); }
.cf-txt { font-size: 14px; color: var(--muted); }

.case-vis {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  gap: 16px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(26, 115, 232, 0.1);
}

.case-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(26, 115, 232, 0.08) 0%, transparent 70%);
}

.case-vis-label { font-size: 13px; font-weight: 700; color: var(--muted); position: relative; }

/* ─────────────────────────────────────────
   CTA + FORM
───────────────────────────────────────── */
#cta {
  padding-top: 80px;
  padding-bottom: 100px;
}

.cta-box {
  background: linear-gradient(135deg,
    rgba(26, 115, 232, 0.06) 0%,
    rgba(255, 255, 255, 0.98) 45%,
    rgba(245, 158, 11, 0.04) 100%
  );
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 32px;
  padding: 72px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(26, 115, 232, 0.08);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -250px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }
.cta-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.cta-h { font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin: 14px 0 20px; }
.cta-p { font-size: 16px; color: var(--muted); line-height: 1.8; }

.trust-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.trust-check { color: var(--green); flex-shrink: 0; }

/* form */
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg        { margin-bottom: 14px; }

.flabel {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--dim);
  margin-bottom: 7px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.finput {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: var(--r);
  color: var(--text);
  font-size: 14px;
  transition: all var(--t);
  outline: none;
}

.finput:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15); }
.finput::placeholder { color: var(--dim); }

select.finput {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234B5A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

select.finput option { background: var(--bg2); }
textarea.finput { resize: vertical; min-height: 88px; }


.fsubmit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r);
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--t);
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.fsubmit:hover { background: #155CC4; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(26, 115, 232, 0.4); }
.fsubmit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.form-ok {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--r);
}

.form-ok.show    { display: block; }
.form-ok-icon    { margin-bottom: 16px; }
.form-ok-duck    { width: 80px; height: 80px; object-fit: contain; margin: 0 auto; }
.form-ok-title   { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.form-ok-sub     { font-size: 14px; color: var(--muted); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
  position: relative;
  z-index: 1;
}

.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }

.ft-brand .nav-logo        { margin-bottom: 14px; display: inline-flex; }
.ft-brand .nav-logo-name   { font-size: 17px; }
.ft-desc { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 270px; }

.ft-col-t { font-size: 11px; font-weight: 700; color: var(--text); margin-bottom: 18px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.09em; }
.ft-links { display: flex; flex-direction: column; gap: 11px; }
.ft-links a { font-size: 14px; color: var(--muted); transition: color var(--t); }
.ft-links a:hover { color: var(--text); }

.ft-contact { font-style: normal; }
.ft-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color var(--t);
}

.ft-contact a:hover { color: var(--text); }
.ft-contact-icon { font-size: 15px; flex-shrink: 0; }

.ft-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.ft-copy { font-size: 12px; color: var(--dim); font-family: var(--mono); }
.ft-love { font-size: 12px; color: var(--dim); }
.ft-love .duck { color: var(--amber); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .fcard.wide { grid-column: 1 / -1; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .tab-panel.on { grid-template-columns: 1fr; }
  .case-vis { display: none; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .fcard.wide { grid-template-columns: 1fr; }
  .cta-box { padding: 36px 22px; }
  .form-row2 { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bot { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}
