/* =========================================================
   OigoHotel — one-page landing
   Brand: #0F62A8 (RGB 15, 98, 168)
   ========================================================= */

:root {
  --brand: #0F62A8;
  --brand-700: #0A4880;
  --brand-900: #062F55;
  --brand-50:  #EAF2FB;
  --brand-100: #D6E5F4;
  --ink: #0B1220;
  --ink-2: #2A3346;
  --ink-3: #5A6577;
  --line: #E5EAF1;
  --line-2: #EEF2F7;
  --bg: #FBFCFE;
  --paper: #FFFFFF;
  --amber: #C97A0F;
  --green: #1A7F4E;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-1: 0 1px 0 rgba(11,18,32,.04), 0 1px 2px rgba(11,18,32,.05);
  --shadow-2: 0 8px 24px -8px rgba(11,18,32,.10), 0 2px 6px rgba(11,18,32,.04);
  --shadow-3: 0 30px 60px -20px rgba(15,98,168,.25), 0 12px 24px -12px rgba(15,98,168,.18);
  --container: 1200px;
  --pad: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.55 "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { display: inline-flex; }
.brand-word { font-weight: 800; letter-spacing: -.01em; font-size: 18px; }
.brand-word.light { color: #fff; }

.nav-links { display: flex; gap: 26px; margin-left: 8px; }
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a::after {
  content: ""; position: absolute; inset: auto 0 -2px 0; height: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang {
  display: inline-flex; padding: 3px; gap: 2px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
}
.lang button {
  border: 0; background: transparent; padding: 6px 12px;
  font-weight: 600; font-size: 13px; color: var(--ink-3); border-radius: 999px;
  letter-spacing: .04em;
}
.lang button.active { background: var(--brand); color: #fff; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 10px; padding: 12px 18px;
  font-weight: 600; font-size: 15px; letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 6px 16px -8px rgba(15,98,168,.55);
}
.btn-primary:hover { background: var(--brand-700); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--brand); border-color: var(--brand-100);
}
.btn-ghost:hover { background: var(--brand-50); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(15,98,168,.10), transparent 60%),
    radial-gradient(900px 400px at 0% 20%, rgba(15,98,168,.06), transparent 60%),
    var(--bg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,98,168,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,98,168,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--brand-100);
  color: var(--brand-700); font-weight: 600; font-size: 13px;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: var(--shadow-1);
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(15,98,168,.15); }
.hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 20px 0 18px;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal; color: var(--brand);
  background: linear-gradient(180deg, transparent 60%, rgba(15,98,168,.18) 60%);
  padding: 0 .1em;
}
.lede {
  font-size: 19px; color: var(--ink-3);
  max-width: 560px; line-height: 1.55;
  margin: 0 0 28px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  list-style: none; padding: 0; margin: 44px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid var(--line); padding-top: 24px;
  max-width: 540px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-size: 32px; letter-spacing: -.02em; color: var(--ink);
  font-weight: 800; line-height: 1;
}
.hero-stats strong span { color: var(--brand); }
.hero-stats li span { color: var(--ink-3); font-size: 13px; font-weight: 500; }

/* product peek */
.hero-card { position: relative; }
.peek {
  background: var(--paper); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.peek-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  background: #F5F7FA;
  border-bottom: 1px solid var(--line);
}
.peek-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #D7DCE5; }
.peek-bar .dot:nth-child(1) { background: #E07B6E; }
.peek-bar .dot:nth-child(2) { background: #E8C46B; }
.peek-bar .dot:nth-child(3) { background: #8FC689; }
.peek-url {
  margin-left: 12px; color: var(--ink-3);
  font: 500 12px/1 "JetBrains Mono", monospace;
}
.peek-body { display: grid; grid-template-columns: 160px 1fr; min-height: 360px; }
.peek-side {
  background: linear-gradient(180deg, #FAFBFD, #F4F7FB);
  border-right: 1px solid var(--line);
  padding: 16px 12px;
}
.peek-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; padding: 4px 6px 16px; }
.peek-nav { display: flex; flex-direction: column; gap: 4px; }
.peek-nav span {
  padding: 8px 10px; border-radius: 8px; font-size: 12.5px;
  color: var(--ink-3); font-weight: 500;
}
.peek-nav .on { background: var(--brand); color: #fff; }

.peek-main { padding: 16px 18px; display: flex; flex-direction: column; gap: 14px; }
.peek-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; display: flex; flex-direction: column; gap: 2px;
}
.kpi > span { font-size: 11px; color: var(--ink-3); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.kpi strong { font-size: 22px; letter-spacing: -.02em; }
.kpi em { font-style: normal; font-size: 11.5px; color: var(--green); font-weight: 600; }
.peek-chart {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 10px;
}
.peek-chart svg { width: 100%; height: 90px; }
.peek-legend { font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.peek-list { display: flex; flex-direction: column; gap: 6px; }
.peek-li {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 10px; font-size: 12.5px; color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
}
.tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 7px; border-radius: 999px;
}
.tag.green { background: #E6F4ED; color: var(--green); }
.tag.amber { background: #FCF1DB; color: var(--amber); }
.tag.blue  { background: var(--brand-50); color: var(--brand); }

/* AI floating bubble on hero */
.peek-bubble {
  position: absolute;
  right: -10px; bottom: -28px;
  width: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-2);
}
.bubble-head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; color: var(--ink);
  margin-bottom: 6px;
}
.ai-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--brand); color: #fff;
  font-size: 10.5px; font-weight: 800; letter-spacing: .04em;
}
.peek-bubble p { margin: 0 0 10px; font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.peek-bubble p b { color: var(--brand); }
.bubble-cta { display: flex; gap: 6px; }
.bubble-cta button {
  border: 0; background: var(--brand); color: #fff;
  border-radius: 8px; padding: 6px 10px; font-size: 12px; font-weight: 600;
}
.bubble-cta button.ghost { background: transparent; color: var(--ink-3); border: 1px solid var(--line); }

/* ============== STRIP ============== */
.strip {
  background: linear-gradient(180deg, #fff, #F4F8FC);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  padding: 48px var(--pad) 56px;
  text-align: center;
}
.strip-label {
  display: block;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 28px;
}
.strip-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.strip-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  font-weight: 700; font-size: 15px;
  letter-spacing: -.01em;
  color: var(--ink);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-1);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
  cursor: default;
}
.strip-list li::before {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--brand);
  margin: 0 auto 10px;
  border-radius: 2px;
  transition: width .2s ease;
}
.strip-list li:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.strip-list li:hover::before {
  width: 36px;
}
.strip-list li:last-child {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 20px -8px rgba(15,98,168,.45);
}
.strip-list li:last-child::before {
  background: #fff;
}
.strip-list li:last-child::after {
  content: "AI";
  position: absolute; top: 8px; right: 8px;
  font: 800 9px/1 "JetBrains Mono", monospace;
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: 3px 5px; border-radius: 4px;
  letter-spacing: .06em;
}
.strip-list li:last-child:hover {
  color: #fff;
  background: var(--brand-700);
}

/* ============== SECTION HEAD ============== */
.sec-head { max-width: 780px; margin: 0 0 48px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand);
}
.eyebrow.light { color: rgba(255,255,255,.85); }
.sec-head h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  letter-spacing: -.02em; line-height: 1.1;
  margin: 14px 0 14px; font-weight: 800;
}
.sec-head p { color: var(--ink-3); font-size: 18px; margin: 0; max-width: 640px; }

/* ============== AI SECTION ============== */
.ai {
  padding: 110px 0;
  background:
    linear-gradient(180deg, #fff, var(--bg));
}
.ai-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.ai-copy h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: -.02em; line-height: 1.08;
  margin: 14px 0 16px; font-weight: 800;
}
.ai-copy > p {
  color: var(--ink-3); font-size: 18px; margin: 0 0 28px; max-width: 560px;
}
.ai-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.ai-points li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.ai-num {
  font: 700 13px/1 "JetBrains Mono", monospace;
  color: var(--brand); background: var(--brand-50);
  border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
}
.ai-points h4 { margin: 6px 0 4px; font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.ai-points p { margin: 0; color: var(--ink-3); font-size: 15px; line-height: 1.55; }

.ai-chat {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 480px;
}
.chat-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
  background: #FAFBFD;
}
.chat-head strong { font-size: 14px; font-weight: 700; display: block; }
.chat-head em { font-style: normal; font-size: 11px; color: var(--ink-3); font-weight: 500; letter-spacing: .02em; }
.chat-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 10px; background: linear-gradient(180deg,#fff, #F8FAFD); }
.msg {
  max-width: 78%; padding: 10px 13px; border-radius: 12px;
  font-size: 14px; line-height: 1.5;
}
.msg.user {
  align-self: flex-end;
  background: var(--brand); color: #fff;
  border-bottom-right-radius: 4px;
}
.msg.bot {
  align-self: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--ink-2);
}
.msg.bot b { color: var(--brand); font-weight: 700; }
.msg.bot .card {
  display: grid; grid-template-columns: 64px 1fr; gap: 10px;
  border: 1px solid var(--line); border-radius: 10px;
  padding: 8px; margin-top: 8px;
  background: #FAFBFD;
}
.card-img {
  background:
    repeating-linear-gradient(135deg, var(--brand-50) 0 8px, #fff 8px 16px);
  border-radius: 6px; height: 56px;
}
.card-body { display: flex; flex-direction: column; gap: 2px; }
.card-body strong { font-size: 13px; }
.card-body span { font-size: 11.5px; color: var(--ink-3); }
.card-body em { font-style: normal; color: var(--brand); font-weight: 700; font-size: 14px; margin-top: 2px; }

.msg.typing { display: inline-flex; gap: 4px; padding: 12px 14px; }
.msg.typing .d {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
  opacity: .4; animation: bob 1.1s ease-in-out infinite;
}
.msg.typing .d:nth-child(2) { animation-delay: .15s; }
.msg.typing .d:nth-child(3) { animation-delay: .3s; }
@keyframes bob { 0%, 80%, 100% { transform: translateY(0); opacity: .35; } 40% { transform: translateY(-3px); opacity: 1; } }

.chat-foot {
  border-top: 1px solid var(--line);
  padding: 10px 12px; display: flex; gap: 8px; background: #fff;
}
.chat-foot input {
  flex: 1; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; font: inherit; color: var(--ink-3);
  background: #FAFBFD;
}
.chat-foot button {
  border: 0; background: var(--brand); color: #fff;
  border-radius: 10px; padding: 0 14px; font-size: 16px; font-weight: 600;
}

/* ============== FEATURES GRID ============== */
.features { padding: 110px 0; background: var(--bg); }
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-1);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
  position: relative;
}
.card:hover {
  border-color: var(--brand-100);
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
}
.card .ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--brand-50); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: -.02em;
}
.card.ai .ico { background: var(--brand); color: #fff; }
.card.ai::after {
  content: "AI"; position: absolute; top: 16px; right: 16px;
  font: 800 10px/1 "JetBrains Mono", monospace;
  background: var(--brand); color: #fff;
  padding: 4px 6px; border-radius: 6px; letter-spacing: .06em;
}
.card.opt::after {
  content: "MODÜL"; position: absolute; top: 16px; right: 16px;
  font: 700 10px/1 "JetBrains Mono", monospace;
  background: var(--brand-50); color: var(--brand);
  padding: 4px 6px; border-radius: 6px; letter-spacing: .06em;
}
[lang="en"] .card.opt::after { content: "ADD-ON"; }
.card h3 {
  margin: 4px 0 2px;
  font-size: 17px; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink);
}
.card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-3); }

/* ============== REFERENCES ============== */
.refs { padding: 110px 0; background: #fff; border-top: 1px solid var(--line); }
.logo-wall {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  margin: 0 0 56px;
}
.logo {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  height: 96px; color: var(--ink-3); font-weight: 700; font-size: 18px;
  letter-spacing: -.01em; font-family: "Plus Jakarta Sans";
}
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  background: var(--paper);
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute; top: 0; left: 16px;
  font: 800 80px/1 "Plus Jakarta Sans";
  color: var(--brand-50);
}
.quote blockquote {
  margin: 8px 0 16px; font-size: 18px; line-height: 1.45;
  color: var(--ink); letter-spacing: -.01em;
  position: relative;
}
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote figcaption strong { font-size: 14px; }
.quote figcaption span { font-size: 13px; color: var(--ink-3); }

/* ============== DEMO ============== */
.demo {
  padding: 110px 0;
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, var(--brand-700), var(--brand));
  color: #fff;
}
.demo-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.demo-copy h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: -.02em; line-height: 1.08;
  margin: 14px 0 16px; font-weight: 800;
}
.demo-copy p { color: rgba(255,255,255,.85); font-size: 18px; margin: 0 0 24px; max-width: 520px; }
.demo-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.demo-list li { color: rgba(255,255,255,.9); font-size: 16px; }

.demo-form {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px; box-shadow: 0 30px 60px -20px rgba(6,47,85,.4);
}
.fields { display: flex; flex-direction: column; gap: 14px; }
.demo-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.demo-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.demo-form input, .demo-form select {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 12px; font: 15px/1 "Plus Jakarta Sans"; color: var(--ink);
  background: #fff;
}
.demo-form input:focus, .demo-form select:focus {
  outline: 2px solid var(--brand-100); border-color: var(--brand);
}
.demo-form .check {
  flex-direction: row; align-items: flex-start; gap: 10px;
  font-weight: 500; color: var(--ink-3); font-size: 13px; line-height: 1.5;
}
.demo-form .check input { margin-top: 2px; }
.demo-form button[type=submit] { margin-top: 6px; width: 100%; padding: 14px; }
.form-foot { text-align: center; font-size: 12.5px; color: var(--ink-3); margin: 4px 0 0; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 8px;
  padding: 8px 12px;
  margin: 6px 0 0;
  font-weight: 500;
  line-height: 1.4;
}
.thanks { text-align: center; padding: 24px 12px; }
.check-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand-50); color: var(--brand); font-size: 24px;
  margin-bottom: 12px;
}
.thanks h3 { margin: 0 0 6px; font-size: 20px; }
.thanks p { margin: 0; color: var(--ink-3); }

/* ============== FOOTER ============== */
.foot {
  background: var(--brand-900);
  color: rgba(255,255,255,.7);
}
.foot-inner {
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px;
  padding: 64px var(--pad) 40px;
  max-width: var(--container); margin: 0 auto;
}
.foot-brand p { font-size: 14px; margin: 14px 0 0; max-width: 320px; line-height: 1.55; }
.foot-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.foot-cols h5 { color: #fff; margin: 0 0 14px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.foot-cols a, .foot-cols span {
  display: block; padding: 4px 0;
  font-size: 14px; color: rgba(255,255,255,.7);
}
.foot-cols a:hover { color: #fff; }
.foot-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px var(--pad);
  display: flex; justify-content: space-between; gap: 12px;
  max-width: var(--container); margin: 0 auto;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1080px) {
  .hero-inner, .ai-inner, .demo-inner { grid-template-columns: 1fr; gap: 48px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .strip-list { grid-template-columns: repeat(5, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .foot-inner { grid-template-columns: 1fr; }
  .peek-bubble { right: 12px; bottom: -32px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding: 56px 0 96px; }
  .hero h1 { font-size: 36px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: 1fr; }
  .strip-list { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .demo-form .row { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .peek-bubble { position: static; width: auto; margin-top: 14px; }
}
