@charset "UTF-8";
/* ============================================================
   DLS Technology - Brand Stylesheet (2026)
   Palette: deep teal-navy + warm tan
   ============================================================ */

:root {
  /* Brand */
  --brand-dark:        #1F4D63;   /* primary deep teal-navy */
  --brand-dark-2:      #143947;   /* darker variant */
  --brand-dark-3:      #0E2A35;   /* footer / deepest */
  --brand-mid:         #2C6480;   /* hover / gradient mid */
  --brand-tan:         #D4B190;   /* warm sand accent */
  --brand-tan-2:       #E4C8A9;   /* hover lighter */
  --brand-tan-3:       #B8946F;   /* deeper tan for text on light tan */
  --brand-cream:       #FAF5EE;   /* subtle tinted page surface */
  --brand-cream-2:     #F2E9DA;   /* light tan band */

  /* Text */
  --ink:               #14222C;
  --ink-2:             #3B4A57;
  --ink-3:             #6B7884;

  /* Neutrals */
  --line:              #E4DDD0;
  --line-2:            #D4CBBA;
  --bg:                #FFFFFF;

  /* Status / signal */
  --ok:                #2E7D5B;
  --ok-bg:             #DDEFE2;
  --warn-bg:           #F8E6CB;
  --warn-ink:          #7A4A0E;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-mid); }
h1, h2, h3, h4 {
  margin: 0 0 .6em; line-height: 1.22;
  color: var(--brand-dark); font-weight: 700; letter-spacing: -.01em;
  font-family: 'Inter', sans-serif;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--ink-2); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
section { padding: 76px 0; }
.section-tight { padding: 48px 0; }
.section-alt  { background: var(--brand-cream); }
.section-dark { background: var(--brand-dark); color: #EAE0CE; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #D5C8B0; }

.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--brand-tan-3); font-weight: 700; margin-bottom: 12px;
}
.lead { font-size: 1.125rem; color: var(--ink-2); max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 8px;
  font-weight: 600; font-size: .98rem; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-dark); color: #fff; box-shadow: 0 8px 20px -6px rgba(31,77,99,.45); }
.btn-primary:hover { background: var(--brand-dark-2); color: #fff; }
.btn-accent  { background: var(--brand-tan); color: var(--brand-dark-2); box-shadow: 0 8px 20px -6px rgba(212,177,144,.7); }
.btn-accent:hover  { background: var(--brand-tan-2); color: var(--brand-dark-2); }
.btn-ghost   { background: transparent; color: var(--brand-dark); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--brand-cream); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); color:#fff; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--brand-dark-3);
  color: #BFA882;
  font-size: .82rem;
  padding: 9px 0;
}
.topbar .container { display:flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #DCC9A6; }
.topbar a:hover { color: #fff; }
.topbar-social a { margin-left: 14px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; color: var(--brand-dark); text-decoration: none; flex: none; }
.brand-logo {
  width: 44px; height: 44px; flex: none;
  color: var(--brand-dark);
}
.brand-logo svg { width: 100%; height: 100%; }
.brand-logo-full {
  display: block; flex: none;
  height: 44px;
}
.brand-logo-full img {
  height: 100%; width: auto; display: block;
}
.brand-text { line-height: 1.1; }
.brand-text strong { display:block; font-weight: 800; font-size: 1.05rem; color: var(--brand-dark); letter-spacing: .01em; }
.brand-text small { display:block; font-size: .66rem; color: var(--ink-3); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 720px) {
  .brand-logo-full { height: 36px; }
}

.nav-toggle {
  display: none; background: transparent; border: 0;
  padding: 8px; border-radius: 6px; cursor: pointer;
}
.nav-toggle:focus-visible { outline: 2px solid var(--brand-tan); }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--brand-dark); margin: 5px 0; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav-menu > li { position: relative; white-space: nowrap; }
.nav-menu > li > a { white-space: nowrap; }
.nav-menu a {
  display: block; padding: 9px 11px;
  color: var(--brand-dark-2); font-weight: 500; font-size: .92rem; border-radius: 6px;
}
.nav-menu a:hover, .nav-menu a.active { background: var(--brand-cream); color: var(--brand-dark); }
.nav-menu .nav-cta { margin-left: 4px; }
.nav-menu .nav-cta a { background: var(--brand-tan); color: var(--brand-dark-2); padding: 9px 14px; border-radius: 8px; font-weight: 700; white-space: nowrap; }
.nav-menu .nav-cta a:hover { background: var(--brand-tan-2); color: var(--brand-dark-2); }

.has-sub > a::after { content: "\25BE"; font-size: .7rem; margin-left: 6px; color: var(--ink-3); }
.subnav {
  position: absolute; left: 0; top: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  min-width: 240px; padding: 8px; box-shadow: 0 14px 32px -10px rgba(20,57,71,.18);
  list-style: none; margin: 6px 0 0; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.has-sub:hover > .subnav, .has-sub:focus-within > .subnav {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.subnav a { padding: 10px 12px; border-radius: 6px; font-size: .92rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark-2) 0%, var(--brand-dark) 60%, var(--brand-mid) 100%);
  color: #fff; padding: 92px 0 100px; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px circle at 85% -10%, rgba(212,177,144,.18), transparent 50%),
    radial-gradient(720px circle at -10% 110%, rgba(44,100,128,.55), transparent 50%);
}
.hero .container { position: relative; }
.hero-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1.1fr .9fr; align-items: center;
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--brand-tan); }
.hero .lead { color: #D5C8B0; max-width: 560px; margin: 0 0 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,177,144,.12); border: 1px solid rgba(212,177,144,.32);
  padding: 8px 14px; border-radius: 999px; font-size: .8rem; color: #E4C8A9;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,177,144,.22);
  border-radius: 18px; padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card h3 { color: #fff; margin: 0 0 16px; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
.hero-stat .num { display:block; font-size: 1.75rem; font-weight: 800; color: var(--brand-tan); }
.hero-stat .lbl { display:block; font-size: .82rem; color: #C9B98D; }

/* ---------- E-Invoice strip ---------- */
.einvoice-strip {
  background: linear-gradient(90deg, var(--brand-cream-2), #EBDCC3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.einvoice-strip .container {
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: center; text-align: center;
}
.einvoice-strip strong { color: var(--brand-dark); }
.einvoice-strip .btn { padding: 10px 18px; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px; padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -18px rgba(20,57,71,.2);
  border-color: var(--brand-tan);
}
.icon-circle {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--brand-cream-2); color: var(--brand-dark);
  border-radius: 12px; margin-bottom: 16px;
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); margin: 0; }

/* ---------- Product showcase ---------- */
.product-row {
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1fr; align-items: center;
  padding: 24px 0;
}
.product-row.reverse { grid-template-columns: 1fr 1fr; }
.product-row.reverse .product-media { order: 2; }
.product-media {
  background: linear-gradient(135deg, var(--brand-cream-2), #fff 75%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  display: grid; place-items: center;
  min-height: 280px;
  overflow: hidden;
  color: var(--brand-dark);
  position: relative;
}
.product-media svg { width: 100%; max-width: 380px; height: auto; }
.product-media::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at 85% 15%, rgba(212,177,144,0.18), transparent 60%);
}
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.product-tag {
  font-size: .78rem; padding: 6px 12px; border-radius: 999px;
  background: var(--brand-cream-2); color: var(--brand-dark-2); font-weight: 600;
}
.checklist { list-style: none; padding: 0; margin: 0 0 24px; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 10px; color: var(--ink); }
.checklist li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; background: var(--ok-bg); color: var(--ok);
  display: grid; place-items: center; font-weight: 800; font-size: .8rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark-2), var(--brand-dark) 55%, var(--brand-mid));
  color: #fff;
  border-radius: 20px;
  padding: 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px circle at 90% 10%, rgba(212,177,144,.18), transparent 50%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; }
.cta-banner p  { color: #D5C8B0; max-width: 640px; margin: 0 auto 24px; }
.cta-banner .eyebrow { color: var(--brand-tan); }

/* Space between stacked CTA buttons */
.cta-banner .btn + .btn {
  margin-left: 12px;
}
@media (max-width: 720px) {
  .cta-banner .btn {
    display: block; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto;
  }
  .cta-banner .btn + .btn {
    margin-left: auto; margin-top: 12px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-dark-3);
  color: #A89A7F;
  padding: 64px 0 28px;
}
.site-footer h4 {
  color: var(--brand-tan); font-size: .88rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px;
}
.site-footer a { color: #C7B68F; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 36px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: .9rem; }
.footer-brand { font-weight: 800; font-size: 1.2rem; color: #fff; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(212,177,144,.15);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(212,177,144,.1); color: var(--brand-tan);
  display: grid; place-items: center; font-size: .9rem; font-weight: 700;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.social-row a:hover { background: var(--brand-tan); color: var(--brand-dark-2); transform: translateY(-1px); }
.social-row a svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 22px 44px -32px rgba(20,57,71,.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display:block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--brand-dark); }
input, select, textarea {
  width: 100%; padding: 12px 14px; font-size: 1rem; font-family: inherit;
  border: 1px solid var(--line-2); border-radius: 8px; background: #FBFAF5;
  transition: border-color .15s ease, box-shadow .15s ease;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand-dark); box-shadow: 0 0 0 3px rgba(31,77,99,.15);
}
textarea { min-height: 130px; resize: vertical; }
.field { margin-bottom: 16px; }
.form-note { font-size: .82rem; color: var(--ink-3); margin-top: 4px; }
.form-status {
  margin-top: 14px; padding: 12px 14px; border-radius: 8px;
  font-size: .92rem; line-height: 1.5; display: none;
}
.form-status.form-status-sending {
  display: block; background: var(--brand-cream-2); color: var(--brand-dark);
  border: 1px solid var(--line-2);
}
.form-status.form-status-ok {
  display: block; background: var(--ok-bg); color: var(--ok);
  border: 1px solid rgba(46,125,91,.3); font-weight: 600;
}
.form-status.form-status-error {
  display: block; background: #FBE6E0; color: #8B2A14;
  border: 1px solid rgba(139,42,20,.25);
}
.form-status a { color: inherit; text-decoration: underline; font-weight: 700; }
/* Honeypot — hidden from real users, visible to bots */
.botcheck { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ---------- FAQ ---------- */
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color .15s ease;
}
.faq details[open] { border-color: var(--brand-tan); }
.faq summary {
  font-weight: 600; font-size: 1.02rem; cursor: pointer; color: var(--brand-dark);
  list-style: none; display: flex; justify-content: space-between; gap: 12px;
}
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--brand-tan-3); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 14px 0 0; color: var(--ink-2); }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark-2) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 76px 0 84px;
  position: relative;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px circle at 92% 0%, rgba(212,177,144,.16), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #D5C8B0; max-width: 720px; }
.crumbs { font-size: .85rem; color: #BFA882; margin-bottom: 10px; }
.crumbs a { color: var(--brand-tan); }

/* ---------- SQL partner co-brand strip ---------- */
.partner-strip {
  background: #0E2A35; padding: 26px 0; border-top: 1px solid rgba(212,177,144,.2);
}
.partner-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px;
  color: #D5C8B0; font-size: .9rem;
}
.partner-strip .divider {
  width: 1px; height: 32px; background: rgba(212,177,144,.3);
}
.partner-strip .sql-mark {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.6rem;
  color: var(--brand-tan); letter-spacing: .02em;
}
.partner-strip .tiers { display: flex; gap: 10px; flex-wrap: wrap; }
.partner-strip .tier {
  background: rgba(212,177,144,.12); color: var(--brand-tan);
  padding: 5px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .08em;
}

/* ---------- About: At-a-glance enhanced card ---------- */
.glance-card {
  background: linear-gradient(135deg, var(--brand-cream), #FFFFFF);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.glance-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(280px circle at 100% 0%, rgba(212,177,144,.18), transparent 60%),
    radial-gradient(220px circle at 0% 100%, rgba(31,77,99,.06), transparent 60%);
}
.glance-card > * { position: relative; }
.glance-card h3 {
  display: flex; align-items: center; gap: 10px;
  color: var(--brand-dark); font-size: 1.1rem; margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.glance-card h3 .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand-tan);
}
.glance-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.glance-item {
  display: flex; gap: 12px; align-items: flex-start;
}
.glance-icon {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: var(--brand-cream-2); color: var(--brand-dark);
  display: grid; place-items: center;
}
.glance-icon svg {
  width: 20px; height: 20px;
  stroke: currentColor; stroke-width: 1.7; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.glance-item .glance-num {
  display: block; font-weight: 800; font-size: 1.25rem;
  color: var(--brand-dark); line-height: 1.1;
}
.glance-item .glance-lbl {
  display: block; font-size: .82rem; color: var(--ink-2); margin-top: 4px;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 16px 0;
}
.timeline::before {
  content: ""; position: absolute;
  left: 100px; top: 0; bottom: 0;
  width: 2px; background: var(--brand-tan); opacity: .55;
}
.tl-row {
  position: relative;
  display: grid;
  grid-template-columns: 88px 40px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
}
.tl-year {
  text-align: right; padding-top: 14px;
  font-weight: 800; font-size: 1.15rem;
  color: var(--brand-dark); letter-spacing: .01em;
}
.tl-dot {
  position: relative; height: 100%;
  display: flex; justify-content: center;
}
.tl-dot::after {
  content: ""; position: absolute; top: 18px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brand-tan);
  box-shadow: 0 0 0 4px rgba(212,177,144,0.22);
}
.tl-row.is-now .tl-dot::after {
  background: var(--brand-tan); border-color: var(--brand-dark);
}
.tl-row.is-future .tl-dot::after {
  background: #fff; border-color: var(--brand-tan-3); border-style: dashed;
}
.tl-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 20px;
  transition: border-color .15s ease, transform .15s ease;
}
.tl-card:hover { border-color: var(--brand-tan); transform: translateY(-1px); }
.tl-card h3 {
  margin: 0 0 6px; font-size: 1.02rem; color: var(--brand-dark);
}
.tl-card .tl-tag {
  display: inline-block;
  font-size: .68rem; padding: 3px 9px; border-radius: 999px;
  background: var(--brand-cream-2); color: var(--brand-tan-3);
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.tl-card.now .tl-tag { background: var(--brand-tan); color: var(--brand-dark-2); }
.tl-card.future .tl-tag { background: rgba(31,77,99,.08); color: var(--brand-dark); }
.tl-card p {
  margin: 0; color: var(--ink-2); font-size: .92rem; line-height: 1.55;
}
@media (max-width: 720px) {
  .timeline::before { left: 24px; }
  .tl-row { grid-template-columns: 0 40px 1fr; gap: 8px; }
  .tl-year {
    text-align: left; padding-top: 0; font-size: 1rem;
    grid-column: 3; grid-row: 1; margin-bottom: -8px; color: var(--brand-tan-3);
  }
  .tl-card { grid-column: 3; }
  .tl-dot { grid-column: 2; }
}

/* ---------- Product cards with visual preview ---------- */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -22px rgba(20,57,71,.25);
  border-color: var(--brand-tan);
}
.product-preview {
  height: 140px;
  background: linear-gradient(135deg, var(--brand-dark-2), var(--brand-dark) 65%, var(--brand-mid));
  display: grid; place-items: center;
  color: var(--brand-tan);
  position: relative;
  overflow: hidden;
}
.product-preview::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px circle at 80% 20%, rgba(212,177,144,.18), transparent 60%);
}
.product-preview svg {
  width: 56px; height: 56px;
  stroke: currentColor; stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  position: relative; z-index: 1;
}
.product-preview .product-tagline {
  position: absolute; bottom: 12px; left: 16px; right: 16px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(212,177,144,.72); font-weight: 600;
}
.product-body {
  padding: 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-name {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 10px;
  font-size: 1.18rem; font-weight: 700; color: var(--brand-dark);
}
.product-name svg {
  width: 22px; height: 22px;
  stroke: var(--brand-tan-3); stroke-width: 1.8; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}
.product-name .badge-new {
  display: inline-block; padding: 2px 8px; font-size: .68rem;
  background: var(--brand-tan); color: var(--brand-dark-2);
  border-radius: 999px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-left: auto;
}
.product-desc { color: var(--ink-2); font-size: .92rem; margin: 0 0 14px; }
.product-highlights {
  list-style: none; padding: 0; margin: 0 0 18px;
}
.product-highlights li {
  position: relative; padding-left: 22px; margin-bottom: 6px;
  color: var(--ink); font-size: .88rem; line-height: 1.45;
}
.product-highlights li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 12px; height: 2px;
  background: var(--brand-tan);
  border-radius: 1px;
}
.product-cta { margin-top: auto; }
.product-cta .btn { width: 100%; justify-content: center; }

/* ---------- Horizontal product cards (icon left, story right) ---------- */
.product-card-h {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 132px 1fr;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card-h:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -20px rgba(20,57,71,.25);
  border-color: var(--brand-tan);
}
.pc-badge {
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
  color: #fff;
  padding: 12px;
}
.pc-badge::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(140px circle at 80% 20%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.pc-badge svg {
  width: 64px; height: 64px;
  stroke: currentColor; stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  position: relative;
}
.pc-badge .pc-tag {
  position: absolute; bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,.6);
}
/* Per-product accent colour palette */
.pc-badge.b-coral  { background: linear-gradient(135deg, #6B2A1B, #D85A30); }
.pc-badge.b-blue   { background: linear-gradient(135deg, #143E66, #378ADD); }
.pc-badge.b-green  { background: linear-gradient(135deg, #2B4A11, #639922); }
.pc-badge.b-purple { background: linear-gradient(135deg, #2C2566, #7F77DD); }
.pc-badge.b-sky    { background: linear-gradient(135deg, #0C2B46, #5DACE7); }
.pc-badge.b-teal   { background: linear-gradient(135deg, #0F4A38, #1D9E75); }
.pc-badge.b-amber  { background: linear-gradient(135deg, #4F3107, #BA7517); }
.pc-badge.b-indigo { background: linear-gradient(135deg, #1A1652, #534AB7); }
.pc-badge.b-brand  { background: linear-gradient(135deg, #143947, #1F4D63 60%, #2C6480); color: var(--brand-tan); }
.pc-body {
  padding: 22px;
  display: flex; flex-direction: column;
}
.pc-name {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 8px;
  font-size: 1.18rem; font-weight: 700; color: var(--brand-dark);
}
.pc-name .pc-new {
  display: inline-block; padding: 2px 8px; font-size: .68rem;
  background: var(--brand-tan); color: var(--brand-dark-2);
  border-radius: 999px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-left: auto;
}
.pc-desc { color: var(--ink-2); font-size: .92rem; margin: 0 0 12px; }
.pc-highlights {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.pc-highlights li {
  position: relative; padding-left: 22px; margin-bottom: 6px;
  color: var(--ink); font-size: .88rem; line-height: 1.45;
}
.pc-highlights li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 12px; height: 2px;
  background: var(--brand-tan);
  border-radius: 1px;
}
.pc-cta { margin-top: auto; }

@media (max-width: 720px) {
  .product-card-h { grid-template-columns: 88px 1fr; }
  .pc-badge svg { width: 44px; height: 44px; }
  .pc-badge .pc-tag { font-size: .5rem; letter-spacing: .12em; }
  .pc-body { padding: 16px; }
}

/* Add-on small cards */
.addon-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 22px;
  transition: border-color .15s ease, transform .15s ease;
}
.addon-card:hover { border-color: var(--brand-tan); transform: translateY(-2px); }
.addon-card .addon-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--brand-cream-2); color: var(--brand-dark);
  border-radius: 10px; margin-bottom: 12px;
}
.addon-card .addon-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.addon-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.addon-card p { color: var(--ink-2); font-size: .88rem; margin: 0; }

/* ---------- Trust stats band ---------- */
.stats-band {
  background: var(--brand-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-tile {
  text-align: center;
  padding: 14px 12px;
  border-right: 1px solid var(--line);
}
.stat-tile:last-child { border-right: 0; }
.stat-tile .stat-num {
  display: block; font-size: 2.4rem; font-weight: 800;
  color: var(--brand-dark); line-height: 1.05; letter-spacing: -.02em;
}
.stat-tile .stat-num small { font-size: 1.3rem; color: var(--brand-tan-3); font-weight: 700; }
.stat-tile .stat-lbl {
  display: block; margin-top: 6px;
  color: var(--ink-2); font-size: .92rem; line-height: 1.4;
}
.stat-tile .stat-pop {
  display: inline-block; margin-top: 8px; padding: 4px 10px;
  background: var(--brand-tan); color: var(--brand-dark-2);
  border-radius: 999px; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}

/* ---------- Client logo wall ---------- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.logo-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 92px;
  display: grid; place-items: center;
  padding: 14px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}
.logo-tile:hover {
  border-color: var(--brand-tan);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -12px rgba(20,57,71,0.18);
}
.logo-tile .client-name {
  width: 100%; text-align: center;
  font-weight: 700; font-size: .92rem;
  color: var(--brand-dark);
  letter-spacing: .01em;
  line-height: 1.2;
}
.logo-tile .client-name span {
  display: block; font-size: .66rem; color: var(--brand-tan-3);
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-top: 6px;
}
.logo-tile img { max-height: 56px; width: auto; filter: grayscale(1); opacity: .85; transition: filter .2s, opacity .2s; }
.logo-tile:hover img { filter: grayscale(0); opacity: 1; }
.logo-placeholder-note {
  text-align: center; font-size: .82rem; color: var(--ink-3);
  font-style: italic; margin-top: 18px;
}

@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-tile:nth-child(2) { border-right: 0; }
  .stat-tile:nth-child(1), .stat-tile:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 22px; }
  .stat-tile:nth-child(3), .stat-tile:nth-child(4) { padding-top: 22px; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .stat-tile .stat-num { font-size: 2rem; }
}

/* ---------- Lead-capture modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14, 42, 53, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 18px;
  width: 100%; max-width: 760px;
  padding: 32px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(14,42,53,0.4);
  animation: modal-pop .2s ease;
}
@keyframes modal-pop { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-cream-2); color: var(--brand-dark);
  border: 0; cursor: pointer; font-size: 1.3rem; line-height: 1;
  display: grid; place-items: center;
  transition: background .15s ease;
}
.modal-close:hover { background: var(--brand-tan); color: var(--brand-dark-2); }
.modal-eyebrow {
  display: inline-block;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--brand-tan-3); font-weight: 700;
  margin-bottom: 8px;
}
.modal-title { margin: 0 0 4px; color: var(--brand-dark); font-size: 1.4rem; }
.modal-subtitle { color: var(--ink-2); font-size: .92rem; margin: 0 0 22px; }
.modal-divider { border: 0; border-top: 1px solid var(--line); margin: 4px 0 22px; }

/* Demo-mode pill toggle */
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-row input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.pill-row label {
  cursor: pointer; padding: 10px 16px;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-weight: 600; font-size: .9rem; color: var(--ink-2);
  background: #fff;
  transition: all .15s ease; margin-bottom: 0;
  user-select: none;
}
.pill-row label:hover { border-color: var(--brand-tan); color: var(--brand-dark); }
.pill-row input[type="radio"]:checked + label {
  background: var(--brand-tan); color: var(--brand-dark-2);
  border-color: var(--brand-tan);
  box-shadow: 0 4px 12px -4px rgba(212,177,144,.6);
}

.modal-footer-note {
  font-size: .78rem; color: var(--ink-3);
  margin-top: 12px; line-height: 1.5;
}

@media (max-width: 720px) {
  .modal-box { padding: 24px 20px; }
  .modal-title { font-size: 1.2rem; }
}

/* ---------- Download form: alt send routes ---------- */
.dl-alt-routes { margin-top: 14px; }
.dl-alt-divider {
  text-align: center; position: relative; margin: 14px 0 12px;
}
.dl-alt-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--line);
}
.dl-alt-divider span {
  position: relative; background: #fff; padding: 0 12px;
  font-size: .78rem; color: var(--ink-3); font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
}
.dl-alt-grid {
  display: grid; gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}
.dl-alt-grid .btn { padding: 10px 12px; font-size: .85rem; }
.dl-alt-grid .btn.copied { background: var(--ok); color: #fff; border-color: var(--ok); }
@media (max-width: 720px) {
  .dl-alt-grid { grid-template-columns: 1fr; }
}

/* ---------- Copy-to-clipboard mini button ---------- */
.copy-mini {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--brand-cream); color: var(--brand-dark);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 10px 3px 7px; margin-left: 6px;
  font-size: .72rem; font-weight: 700; cursor: pointer;
  vertical-align: middle;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.copy-mini:hover { background: var(--brand-tan); color: var(--brand-dark-2); border-color: var(--brand-tan); }
.copy-mini.copied { background: var(--ok); color: #fff; border-color: var(--ok); }
.copy-mini svg { width: 13px; height: 13px; stroke-width: 2.2; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 20px; right: 20px;
  background: #25D366; color: #fff;
  height: 42px; padding: 0 14px 0 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px; z-index: 100;
  box-shadow: 0 10px 24px -8px rgba(37,211,102,.55);
  text-decoration: none; font-weight: 600; font-size: .85rem;
  line-height: 1; max-width: calc(100vw - 40px);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 28px -10px rgba(37,211,102,.7); }
.wa-float svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.wa-float .wa-label { white-space: nowrap; }

@media (max-width: 720px) {
  .wa-float { height: 48px; width: 48px; padding: 0; border-radius: 50%; justify-content: center; bottom: 16px; right: 16px; }
  .wa-float .wa-label { display: none; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .product-row, .product-row.reverse { grid-template-columns: 1fr; }
  .product-row.reverse .product-media { order: 0; }
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 22px; }

  /* ===== Mobile navigation ===== */
  .nav-toggle {
    display: block;
    background: var(--brand-cream); border: 1px solid var(--line);
    width: 44px; height: 44px;
    z-index: 60;
  }
  .nav-toggle:hover { background: var(--brand-cream-2); }

  .nav-menu {
    position: fixed; left: 0; right: 0; top: 72px;
    flex-direction: column; align-items: stretch;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px -12px rgba(20,57,71,0.18);
    padding: 8px 8px 24px;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav-menu.open { display: flex; }
  /* Lock body scroll when menu is open so users can scroll the menu itself */
  body.nav-open { overflow: hidden; }
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--brand-cream-2);
  }
  .nav-menu > li:last-child { border-bottom: 0; }
  /* Bigger tap targets + contrast */
  .nav-menu a {
    padding: 14px 16px; border-radius: 8px;
    font-size: 1rem; font-weight: 600;
    color: var(--brand-dark);
  }
  .nav-menu a:hover, .nav-menu a:active, .nav-menu a.active {
    background: var(--brand-cream); color: var(--brand-dark);
  }
  .nav-menu .nav-cta a {
    background: var(--brand-tan); color: var(--brand-dark-2);
    text-align: center; margin-top: 6px;
  }
  /* Tap-toggleable submenus on mobile */
  .has-sub > a::after {
    content: "+"; font-size: 1.2rem; line-height: 1;
    margin-left: auto; color: var(--brand-tan-3); font-weight: 700;
    transition: transform .2s ease;
  }
  .has-sub.open > a::after { content: "−"; }
  .has-sub > a {
    display: flex !important; align-items: center; justify-content: space-between;
  }
  .subnav {
    position: static; box-shadow: none; border: none;
    padding: 4px 0 8px 14px; margin: 0;
    background: transparent;
    opacity: 1; visibility: visible; transform: none; min-width: 0;
    display: none;
  }
  .has-sub.open > .subnav { display: block; }
  .subnav a {
    padding: 10px 12px; font-size: .92rem; font-weight: 500;
    color: var(--ink-2); border-radius: 6px;
  }
  .subnav a:hover { background: var(--brand-cream); color: var(--brand-dark); }

  .topbar { display: none; }
  .hero { padding: 64px 0 72px; }
  .topbar .container { justify-content: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .btn { padding: 12px 20px; font-size: .92rem; }
  .partner-strip .container { gap: 14px; }
  .partner-strip .divider { display: none; }
}
