:root {
  --bahiqo-primary: #0B6E4F;
  --bahiqo-primary-dark: #084C37;
  --bahiqo-primary-light: #149E6D;
  --bahiqo-accent: #E8A317;
  --bahiqo-credit: #C0392B;
  --bahiqo-payment: #0B6E4F;
  --bahiqo-surface: #F7F9F8;
  --bahiqo-surface-card: #FFFFFF;
  --bahiqo-text: #1A1F1C;
  --bahiqo-text-muted: #5C6B63;
  --bahiqo-border: #D8E2DC;
  --bahiqo-danger: #B91C1C;
  --bahiqo-warning: #B45309;
  --bahiqo-on-primary: #FFFFFF;
  --bahiqo-radius: 12px;
  --bahiqo-radius-card: 14px;
  --bahiqo-shadow: 0 10px 30px rgba(8, 76, 55, 0.08);
  --bahiqo-max: 1120px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--bahiqo-text);
  background: var(--bahiqo-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--bahiqo-primary); text-decoration: none; }
a:hover { color: var(--bahiqo-primary-dark); }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.03em; line-height: 1.2; color: var(--bahiqo-text); margin: 0 0 0.75rem; }
.container { width: min(100% - 2rem, var(--bahiqo-max)); margin-inline: auto; }

.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 100; background: #fff; padding: .5rem 1rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 249, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bahiqo-border);
  transition: box-shadow .35s ease, background .35s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(8, 76, 55, 0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 68px;
}
.brand {
  display: flex; align-items: center;
  color: var(--bahiqo-text); font-weight: 800; font-size: 1.2rem; letter-spacing: -0.04em;
}
.brand:hover { color: var(--bahiqo-text); }
.brand-logo { height: 42px; width: auto; display: block; transition: transform .35s ease; }
.brand:hover .brand-logo { transform: scale(1.03); }
.foot-logo { width: 48px; height: 48px; border-radius: 12px; }
.nav-panel { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 0.25rem 1.15rem; flex-wrap: wrap; }
.nav-links a {
  position: relative;
  color: var(--bahiqo-text-muted); font-weight: 600; font-size: 0.92rem;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; border-radius: 2px;
  background: var(--bahiqo-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--bahiqo-primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 0.5rem; align-items: center; }
.nav-toggle {
  display: none; border: 1px solid var(--bahiqo-border); background: #fff;
  border-radius: 10px; padding: 0.45rem 0.6rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--bahiqo-text); margin: 4px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border-radius: var(--bahiqo-radius); font-weight: 700; font-size: 0.95rem;
  padding: 0.72rem 1.15rem; border: 1px solid transparent; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--bahiqo-primary); color: var(--bahiqo-on-primary); }
.btn-primary:hover { background: var(--bahiqo-primary-dark); color: #fff; box-shadow: 0 10px 22px rgba(11, 110, 79, 0.28); }
.btn-ghost {
  background: #fff; color: var(--bahiqo-primary); border-color: var(--bahiqo-border);
}
.btn-ghost:hover { border-color: var(--bahiqo-primary); color: var(--bahiqo-primary-dark); }
.btn-accent { background: var(--bahiqo-accent); color: #1A1F1C; }
.btn-accent:hover { filter: brightness(0.95); color: #1A1F1C; }
.btn-lg { padding: 0.9rem 1.35rem; font-size: 1rem; }
.btn[aria-disabled="true"], .btn.is-disabled {
  opacity: 0.55; pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  padding: 3.2rem 0 2.5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% auto auto -10%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 158, 109, 0.16), transparent 70%);
  pointer-events: none;
  animation: blob-drift 16s ease-in-out infinite;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid var(--bahiqo-border);
  color: var(--bahiqo-primary); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 999px; margin-bottom: 1rem;
}
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--bahiqo-accent); display: inline-block; animation: soft-pulse 2.4s ease-in-out infinite; }
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); margin-bottom: 0.85rem; max-width: none; }
.hero .lede { font-size: 1.12rem; color: var(--bahiqo-text-muted); max-width: 38rem; }
.hi-line { font-weight: 600; color: var(--bahiqo-primary); margin: 0.35rem 0 1.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.4rem 0 1rem; }
.store-badges { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.15rem 0; }
.store-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #111; color: #fff;
  border-radius: 10px; padding: 0.42rem 0.85rem 0.42rem 0.62rem;
  min-height: 44px; line-height: 1.05;
  transition: transform .2s ease, background .2s ease, filter .2s ease;
}
.store-badge:hover { color: #fff; background: #000; transform: translateY(-2px); }
.store-badge-icon { width: 22px; height: 22px; flex-shrink: 0; display: block; }
.store-badge span { display: flex; flex-direction: column; align-items: flex-start; }
.store-badge small {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; opacity: 0.82;
}
.store-badge strong { font-size: 0.98rem; font-weight: 800; letter-spacing: -0.02em; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem; color: var(--bahiqo-text-muted); font-size: 0.88rem; font-weight: 600; }
.hero-meta b { color: var(--bahiqo-text); }

/* Device screenshot */
.phone-wrap { display: flex; justify-content: center; }
.device {
  width: min(100%, 300px);
  background: #0d1f18;
  border-radius: 36px;
  padding: 11px;
  box-shadow: 0 28px 60px rgba(8, 76, 55, 0.28);
  border: 1px solid #1a3a2e;
  animation: phone-float 5.5s ease-in-out infinite;
}
.device img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  display: block;
}
.device figcaption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.band {
  background: var(--bahiqo-primary-dark); color: #d7efe6;
  padding: 1.1rem 0;
}
.band-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.band b { display: block; color: #fff; font-size: 1.05rem; font-family: var(--font-display); }
.band span { font-size: 0.82rem; }

.section { padding: 4rem 0; }
.section.alt { background: #fff; border-block: 1px solid var(--bahiqo-border); }
.section-kicker { color: var(--bahiqo-primary); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem; }
.section h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); max-width: none; }
.section .intro { color: var(--bahiqo-text-muted); max-width: 40rem; margin-bottom: 2rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step {
  background: var(--bahiqo-surface-card); border: 1px solid var(--bahiqo-border);
  border-radius: var(--bahiqo-radius-card); padding: 1.2rem 1.1rem; box-shadow: var(--bahiqo-shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(8, 76, 55, 0.12);
  border-color: #b8d4c8;
}
.step-num {
  width: 32px; height: 32px; border-radius: 9px; background: var(--bahiqo-primary);
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 0.85rem; margin-bottom: 0.8rem;
}
.step h3 { font-family: var(--font); font-size: 1.02rem; letter-spacing: -0.02em; }
.step p { color: var(--bahiqo-text-muted); font-size: 0.92rem; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
.card {
  background: var(--bahiqo-surface-card); border: 1px solid var(--bahiqo-border);
  border-radius: var(--bahiqo-radius-card); padding: 1.25rem 1.2rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(8, 76, 55, 0.12);
  border-color: #b8d4c8;
}
.card h3 { font-family: var(--font); font-size: 1.05rem; margin-bottom: 0.4rem; }
.card p { color: var(--bahiqo-text-muted); font-size: 0.94rem; margin: 0; }
.icon-dot {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: #e7f6ef; color: var(--bahiqo-primary); margin-bottom: 0.75rem; font-weight: 800;
}
.icon-dot.gold { background: #fff4d8; color: #8a6408; }
.icon-dot.red { background: #fde8e6; color: var(--bahiqo-credit); }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  background: #fff; border: 1px solid var(--bahiqo-border); border-radius: 999px;
  padding: 0.4rem 0.8rem; font-size: 0.88rem; font-weight: 600; color: var(--bahiqo-text);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.chip:hover {
  transform: translateY(-1px);
  border-color: var(--bahiqo-primary);
  color: var(--bahiqo-primary-dark);
}

.quotes-section { overflow: hidden; padding-bottom: 3.2rem; }
.quotes-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; margin-bottom: 0.2rem;
}
.quotes-head h2 { margin-bottom: 0.4rem; }
.quotes-head .intro { margin-bottom: 0; max-width: 36rem; }
.quotes-navs { display: flex; gap: 0.45rem; flex-shrink: 0; padding-bottom: 0.15rem; }
.quotes-nav {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--bahiqo-border); background: #fff;
  color: var(--bahiqo-primary-dark); cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.quotes-nav:hover {
  background: var(--bahiqo-primary); border-color: var(--bahiqo-primary); color: #fff;
}
.quotes-bleed { margin-top: 1.35rem; }
.quotes-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.35rem max(1rem, calc((100vw - var(--bahiqo-max)) / 2)) 0.6rem;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.quotes-scroller::-webkit-scrollbar { display: none; }
.quotes-track {
  display: flex; gap: 0.9rem; width: max-content;
}
.quote-card {
  margin: 0;
  flex: 0 0 auto;
  width: min(22.5rem, 82vw);
  min-height: 12.2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  background: #fff;
  border: 1px solid var(--bahiqo-border);
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1.1rem;
}
.quote-card blockquote {
  margin: 0 0 1.1rem;
  color: var(--bahiqo-text);
  font-size: 0.95rem;
  line-height: 1.55;
}
.quote-card figcaption {
  display: flex; align-items: center; gap: 0.7rem;
}
.quote-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #e7f6ef; color: var(--bahiqo-primary);
  display: grid; place-items: center; font-weight: 800; flex-shrink: 0; font-size: 0.88rem;
}
.quote-card strong { display: block; font-size: 0.92rem; }
.quote-meta {
  display: block; color: var(--bahiqo-text-muted); font-size: 0.8rem; font-weight: 600;
}

.cta-banner {
  background: linear-gradient(135deg, var(--bahiqo-primary) 0%, var(--bahiqo-primary-dark) 100%);
  color: #fff; border-radius: 20px; padding: 2.2rem 2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
}
.cta-banner h2 { color: #fff; max-width: none; }
.cta-banner p { color: #d7efe6; margin: 0 0 0; max-width: 36rem; }
.cta-banner .btn-accent { flex-shrink: 0; }

.faq details {
  background: #fff; border: 1px solid var(--bahiqo-border); border-radius: 12px;
  padding: 0.9rem 1rem; margin-bottom: 0.6rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq details:hover, .faq details[open] {
  border-color: #b8d4c8;
  box-shadow: 0 8px 22px rgba(8, 76, 55, 0.06);
}
.faq summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--bahiqo-text-muted); margin: 0.6rem 0 0; }

.page-hero { padding: 2.4rem 0 0.5rem; }
.page-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); max-width: none; }
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.35rem; margin-top: 1.8rem; }
.prose ul { padding-left: 1.15rem; color: var(--bahiqo-text-muted); }
.prose li { margin: 0.35rem 0; }
.note {
  background: #e7f6ef; border-left: 3px solid var(--bahiqo-primary);
  padding: 0.9rem 1rem; border-radius: 0 12px 12px 0; margin: 1rem 0;
}

.legal-article {
  background: #fff; border: 1px solid var(--bahiqo-border); border-radius: 14px;
  padding: 1.5rem 1.4rem 2rem; margin: 1.2rem 0 3rem;
}
.legal-article h2 {
  font-size: 1.25rem; margin: 1.7rem 0 0.55rem; padding-top: 0.9rem;
  border-top: 1px solid var(--bahiqo-border);
}
.legal-article h2:first-child { border-top: 0; margin-top: 0; padding-top: 0; }
.legal-article h3 { font-family: var(--font); font-size: 1.02rem; margin: 1.1rem 0 0.35rem; }
.legal-article p, .legal-article li { color: #2a322e; font-size: 0.98rem; }
.legal-article ul, .legal-article ol { padding-left: 1.2rem; }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.blog-grid-more { grid-template-columns: repeat(3, 1fr); }
.blog-card {
  background: #fff; border: 1px solid var(--bahiqo-border);
  border-radius: var(--bahiqo-radius-card); overflow: hidden;
  box-shadow: var(--bahiqo-shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(8, 76, 55, 0.12);
  border-color: #b8d4c8;
}
.blog-card-link { display: block; color: inherit; }
.blog-card-link:hover { color: inherit; }
.blog-card-cover {
  width: 100%; height: 180px; object-fit: cover; background: #e7f6ef;
}
.blog-card-body { padding: 1.05rem 1.1rem 1.2rem; }
.blog-card-body time {
  display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--bahiqo-primary); margin-bottom: 0.4rem;
}
.blog-card-body h2 {
  font-family: var(--font); font-size: 1.08rem; letter-spacing: -0.02em; margin: 0 0 0.4rem;
}
.blog-card-body p { color: var(--bahiqo-text-muted); font-size: 0.92rem; margin: 0 0 0.7rem; }
.blog-card-more { font-weight: 700; font-size: 0.88rem; color: var(--bahiqo-primary); }
.blog-empty {
  background: #fff; border: 1px dashed var(--bahiqo-border); border-radius: 14px;
  padding: 2rem 1.2rem; text-align: center; color: var(--bahiqo-text-muted);
}
.blog-pager { display: flex; gap: 0.6rem; margin-top: 1.6rem; }
.blog-meta { margin-top: 0.35rem; }
.blog-hero-cover {
  width: 100%; max-height: 420px; object-fit: cover; border-radius: 16px;
  margin: 0.4rem 0 1.2rem; border: 1px solid var(--bahiqo-border);
}
.blog-article img { border-radius: 10px; margin: 0.8rem 0; }
.blog-article a { font-weight: 600; }

.why-list { list-style: none; padding: 0; margin: 0 0 0.5rem; }
.why-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.55rem;
  font-weight: 600;
  color: var(--bahiqo-text);
}
.why-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.9rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bahiqo-primary);
}

.shot-aside {
  display: flex; justify-content: center;
}
.contact-form {
  background: var(--bahiqo-surface-card);
  border: 1px solid var(--bahiqo-border);
  border-radius: var(--bahiqo-radius-card);
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: var(--bahiqo-shadow);
}
.contact-form label {
  display: block; font-weight: 700; font-size: 0.9rem; margin: 0.85rem 0 0.35rem;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form .optional { font-weight: 500; color: var(--bahiqo-text-muted); }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--bahiqo-border); border-radius: var(--bahiqo-radius);
  padding: 0.7rem 0.85rem; background: #fff; color: var(--bahiqo-text); font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--bahiqo-primary-light); outline-offset: 1px; border-color: var(--bahiqo-primary);
}
.contact-form textarea { resize: vertical; min-height: 8rem; }
.contact-form .captcha-input { max-width: 8rem; }
.contact-form .btn { margin-top: 1.1rem; width: 100%; }
.field-error { color: var(--bahiqo-danger); font-size: 0.86rem; margin: 0.3rem 0 0; font-weight: 600; }
.form-alert { border-radius: 12px; padding: 0.85rem 1rem; margin-bottom: 1rem; font-weight: 600; }
.form-alert-ok { background: #e7f6ef; color: var(--bahiqo-primary-dark); }
.form-alert-err { background: #fde8e6; color: var(--bahiqo-danger); }
.hp {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}

.site-footer {
  background: #08281e; color: #c5d9d0; padding: 2.5rem 0 1.4rem; margin-top: 1rem;
}
.site-footer a { color: #e8f5ee; transition: color .2s ease; }
.site-footer a:hover { color: var(--bahiqo-accent); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 1.8rem; }
.foot-grid h4 { color: #fff; font-family: var(--font); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin: 0.35rem 0; font-size: 0.92rem; }
.foot-copy { border-top: 1px solid #1a4638; padding-top: 1rem; font-size: 0.82rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.w3ctrl-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 1.15rem;
  color: #c5d9d0;
}
.w3ctrl-brand:hover { color: var(--bahiqo-accent); }
.w3ctrl-brand-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9bb8ac;
}
.w3ctrl-brand img {
  height: 36px;
  width: auto;
  border-radius: 8px;
  background: #000;
  transition: transform .3s ease, opacity .3s ease;
}
.w3ctrl-brand:hover img { transform: translateY(-1px); opacity: 0.92; }

.icon-dot { transition: transform .35s ease; }
.card:hover .icon-dot { transform: scale(1.06); }

.cta-banner {
  transition: transform .35s ease, box-shadow .35s ease;
}
.cta-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(8, 76, 55, 0.22);
}

.hero-grid > div:first-child > * {
  animation: fade-up .75s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-grid > div:first-child > *:nth-child(1) { animation-delay: .04s; }
.hero-grid > div:first-child > *:nth-child(2) { animation-delay: .12s; }
.hero-grid > div:first-child > *:nth-child(3) { animation-delay: .2s; }
.hero-grid > div:first-child > *:nth-child(4) { animation-delay: .28s; }
.hero-grid > div:first-child > *:nth-child(5) { animation-delay: .36s; }
.hero-grid > div:first-child > *:nth-child(6) { animation-delay: .44s; }
.phone-wrap { animation: fade-up .9s cubic-bezier(.22, 1, .36, 1) .18s both; }
.page-hero { animation: fade-up .65s cubic-bezier(.22, 1, .36, 1) both; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.grid-3 > .reveal:nth-child(2),
.steps > .reveal:nth-child(2),
.band-row > .reveal:nth-child(2) { transition-delay: .07s; }
.grid-3 > .reveal:nth-child(3),
.steps > .reveal:nth-child(3),
.band-row > .reveal:nth-child(3) { transition-delay: .14s; }
.grid-3 > .reveal:nth-child(4),
.steps > .reveal:nth-child(4),
.band-row > .reveal:nth-child(4) { transition-delay: .21s; }
.grid-3 > .reveal:nth-child(5) { transition-delay: .08s; }
.grid-3 > .reveal:nth-child(6) { transition-delay: .15s; }
.grid-3 > .reveal:nth-child(7) { transition-delay: .22s; }
.grid-3 > .reveal:nth-child(8) { transition-delay: .29s; }
.grid-3 > .reveal:nth-child(9) { transition-delay: .36s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(36px, 18px); }
}
@keyframes soft-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

@media (max-width: 900px) {
  .hero-grid, .steps, .grid-3, .band-row, .foot-grid, .grid-2, .blog-grid, .blog-grid-more { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-panel { display: none; }
  .site-header.is-open .nav-panel {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; left: 0; right: 0; top: 68px;
    background: #fff; border-bottom: 1px solid var(--bahiqo-border);
    padding: 0.9rem 1rem 1.1rem; box-shadow: var(--bahiqo-shadow); gap: 0.85rem;
  }
  .site-header.is-open .nav-links { flex-direction: column; align-items: flex-start; }
  .hero-grid, .steps, .grid-3, .band-row, .foot-grid, .grid-2, .blog-grid, .blog-grid-more { grid-template-columns: 1fr; }
  .quotes-head { flex-direction: column; align-items: flex-start; }
  .quotes-scroller { mask-image: linear-gradient(90deg, transparent, #000 1.2rem, #000 calc(100% - 1.2rem), transparent); }
  .hero { padding-top: 2rem; }
  .device { width: min(100%, 260px); animation: none; }
  .nav-links a::after { display: none; }
}

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