/* ==========================================================================
   OneScale POS — marketing site
   Visual identity carried over from MKE WebWorks: deep teal-navy + coral accent,
   warm cream sections, Anton display + Poppins/Open Sans. Single, deliberate
   light theme with dark teal feature/CTA/footer bands (matches the agency site).
   ========================================================================== */

:root {
  /* Brand */
  --ink:      #153243;   /* deep teal-navy — dark sections, headings */
  --ink-2:    #1a3d52;   /* gradient partner */
  --ink-3:    #0f2531;   /* deepest */
  --accent:   #f55542;   /* coral — primary CTA & highlights */
  --accent-d: #ec503d;   /* coral hover */
  --gold:     #f8c136;   /* secondary highlight (ratings, ticks) */
  --cream:    #f5f9ec;   /* warm section background */
  --cream-2:  #f2f0e9;
  --paper:    #ffffff;

  /* Ink ramp */
  --text:   #2b3a42;
  --muted:  #5c6b73;
  --line:   #e4e8dd;      /* hairlines on cream */
  --line-d: rgba(255,255,255,.14);

  /* System */
  --container: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px -20px rgba(21,50,67,.35);
  --shadow-sm: 0 8px 24px -12px rgba(21,50,67,.28);
  --ease: cubic-bezier(.22,.61,.36,1);

  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Anton", "Poppins", sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg, figure { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--sans); color: var(--ink); line-height: 1.14; text-wrap: balance; font-weight: 700; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: rgba(255,255,255,.82); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.section--ink .eyebrow { color: var(--gold); }
.section--ink .eyebrow::before { background: var(--gold); }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 47px); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 18px; }
.section--ink .section-head p { color: rgba(255,255,255,.68); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15.5px;
  padding: 15px 30px; border-radius: 60px; border: 2px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -12px rgba(245,85,66,.9); }
.btn--primary:hover { background: var(--accent-d); transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(245,85,66,.95); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(21,50,67,.22); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.section--ink .btn--ghost, .cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.section--ink .btn--ghost:hover, .cta-band .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--wa { background: #25d366; color: #0b2e1a; box-shadow: 0 12px 26px -12px rgba(37,211,102,.8); }
.btn--wa:hover { background: #1fbe5a; transform: translateY(-3px); color: #062012; }
.btn--lg { padding: 18px 38px; font-size: 16.5px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 22px -18px rgba(21,50,67,.5); }
.nav-inner { display: flex; align-items: center; gap: 26px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--sans); font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -.01em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #ff7a5c); color: #fff;
  font-family: var(--display); font-size: 21px; box-shadow: 0 8px 18px -8px rgba(245,85,66,.8);
}
.brand b { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { font-family: var(--sans); font-weight: 500; font-size: 15px; color: var(--ink); opacity: .85; transition: opacity .2s, color .2s; }
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-menu-cta { display: none; }        /* only appears inside the open mobile menu */
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

/* ---------- hero ---------- */
.hero { background: linear-gradient(180deg, var(--cream) 0%, #fbfcf6 100%); padding: clamp(52px, 7vw, 96px) 0 clamp(60px, 8vw, 104px); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -14%; right: -8%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(245,85,66,.14), transparent 62%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; position: relative; }
.hero h1 { font-size: clamp(38px, 6vw, 66px); letter-spacing: -.015em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { margin-top: 22px; font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: var(--muted); font-size: 14px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; color: #1c9c5b; }

/* ---------- image slots (owner replaces) ---------- */
.shot {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(21,50,67,.035) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #eef2e4, #e7ecdd);
  border: 1px dashed rgba(21,50,67,.22);
  display: grid; place-items: center; text-align: center; color: var(--muted);
  min-height: 300px; box-shadow: var(--shadow);
}
.shot::after {
  content: attr(data-label);
  font-family: var(--sans); font-weight: 600; font-size: 13.5px; letter-spacing: .02em;
  padding: 10px 16px; border-radius: 40px; background: rgba(255,255,255,.7);
  color: var(--ink); box-shadow: var(--shadow-sm);
}
.shot::before {
  content: "🖼"; position: absolute; top: 18px; left: 20px; font-size: 20px; opacity: .55;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
/* when a real image/mockup is dropped in, drop the placeholder chrome and let the image set its own height */
.shot.filled { min-height: 0; border: none; background: none; padding: 0; }
.shot.filled::before, .shot.filled::after { content: none; display: none; }
.shot.filled img { height: auto; object-fit: contain; }
.shot--wide { min-height: 360px; }
.shot--tall { min-height: 420px; }
.shot--sm { min-height: 190px; border-radius: var(--radius); }
.section--ink .shot { background: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px), rgba(255,255,255,.05); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); }
.section--ink .shot::after { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- trust / stats ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 0; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--display); font-size: clamp(34px, 4.4vw, 52px); color: var(--ink); line-height: 1; letter-spacing: .01em; font-variant-numeric: tabular-nums; }
.stat b i { font-style: normal; color: var(--accent); }
.stat span { display: block; margin-top: 8px; font-size: 14px; color: var(--muted); font-family: var(--sans); font-weight: 500; }
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; padding-bottom: 40px; }
.logo-slot { height: 46px; min-width: 120px; border-radius: 12px; background: var(--cream); border: 1px dashed var(--line); display: grid; place-items: center; font-family: var(--sans); font-size: 12px; color: var(--muted); font-weight: 600; }

/* ---------- problem/solution ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.pain-list { display: grid; gap: 14px; margin-top: 26px; }
.pain-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.pain-list .x, .pain-list .y { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
.pain-list .x { background: rgba(245,85,66,.12); color: var(--accent); }
.pain-list .y { background: rgba(28,156,91,.14); color: #1c9c5b; }
.pain-list svg { width: 15px; height: 15px; }

/* ---------- capability grid ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cap {
  background: rgba(255,255,255,.045); border: 1px solid var(--line-d);
  border-radius: var(--radius); padding: 26px 24px; transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.cap:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(248,193,54,.4); }
.cap-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(245,85,66,.9), #ff7a5c); color: #fff; margin-bottom: 18px; }
.cap-ico svg { width: 24px; height: 24px; }
.cap h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.cap p { color: rgba(255,255,255,.66); font-size: 14.5px; line-height: 1.6; }

/* ---------- spotlights ---------- */
.spot { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.spot + .spot { margin-top: clamp(56px, 7vw, 96px); }
.spot:nth-child(even) .spot-media { order: -1; }
.spot h3 { font-size: clamp(24px, 3vw, 33px); }
.spot p { margin-top: 15px; color: var(--muted); }
.spot-points { display: grid; gap: 11px; margin-top: 22px; }
.spot-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.spot-points .tick { flex: none; width: 23px; height: 23px; border-radius: 50%; background: rgba(21,50,67,.08); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.spot-points svg { width: 13px; height: 13px; }
.spot-tag { display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }

/* ---------- benefits ---------- */
.ben-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ben { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform .3s var(--ease), box-shadow .3s; }
.ben:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ben-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--cream); color: var(--accent); margin-bottom: 16px; }
.ben-ico svg { width: 23px; height: 23px; }
.ben h3 { font-size: 17px; margin-bottom: 8px; }
.ben p { font-size: 14.5px; color: var(--muted); }

/* ---------- integrations / compliance ---------- */
.int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.int { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.int:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.int.feature { border-color: rgba(245,85,66,.4); box-shadow: 0 18px 44px -24px rgba(245,85,66,.5); }
.int-ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; background: linear-gradient(135deg, var(--ink), var(--ink-2)); }
.int.feature .int-ico { background: linear-gradient(135deg, var(--accent), #ff7a5c); }
.int-ico svg { width: 25px; height: 25px; }
.int h3 { font-size: 18px; margin-bottom: 9px; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.int p { font-size: 14.5px; color: var(--muted); line-height: 1.62; }
.badge { font-family: var(--sans); font-weight: 700; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: rgba(245,85,66,.12); padding: 3px 9px; border-radius: 40px; }
.badge.pk { color: #1c9c5b; background: rgba(28,156,91,.13); }
.int-logos { text-align: center; margin-top: 46px; }
.int-logos-label { display: block; font-family: var(--sans); font-weight: 600; font-size: 12.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.logo-chip { width: 168px; height: 78px; background: #fff; border: 1px solid var(--line); border-radius: 14px; display: flex; align-items: center; justify-content: center; padding: 16px 22px; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.logo-chip:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
/* logos scale to fit the padded box, aspect ratio always preserved (never stretched/squashed) */
.logo-chip img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
@media (max-width: 520px) { .logo-chip { width: 44%; height: 68px; } }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 34px 26px 30px; border-radius: var(--radius-lg); background: var(--cream); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--display); font-size: 46px; color: var(--accent); opacity: .9; line-height: 1; }
.step h3 { font-size: 19px; margin: 14px 0 9px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.tst .stars { display: flex; gap: 3px; color: var(--gold); }
.tst .stars svg { width: 17px; height: 17px; }
.tst blockquote { font-size: 15.5px; color: var(--text); line-height: 1.65; }
.tst-who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; background: repeating-linear-gradient(45deg, rgba(21,50,67,.06) 0 8px, transparent 8px 16px), var(--cream); border: 1px dashed var(--line); display: grid; place-items: center; font-size: 15px; color: var(--muted); overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.tst-who b { font-family: var(--sans); font-size: 15px; color: var(--ink); display: block; }
.tst-who span { font-size: 13px; color: var(--muted); }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--ink); }
.qa summary::-webkit-details-marker { display: none; }
.qa .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: var(--accent); transition: transform .3s; }
.qa[open] .plus { transform: rotate(45deg); }
.qa .plus svg { width: 16px; height: 16px; }
.qa-body { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.qa[open] .qa-body { max-height: 320px; }
.qa-body p { padding: 0 4px 24px; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 55%, #123f3a 100%); color: #fff; border-radius: 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 20%, rgba(245,85,66,.28), transparent 45%); }
.cta-inner { position: relative; text-align: center; max-width: 760px; margin-inline: auto; }
.cta-inner h2 { color: #fff; font-size: clamp(30px, 4.4vw, 48px); }
.cta-inner p { margin-top: 16px; color: rgba(255,255,255,.75); font-size: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }

/* ---------- MKE band ---------- */
.mke { background: var(--cream-2); }
.mke-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.mke-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, #123f3a 100%); padding: 60px 44px; min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; box-shadow: var(--shadow); }
.mke-card::before { content: ""; position: absolute; top: -30%; right: -15%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(245,85,66,.32), transparent 66%); }
.mke-card::after { content: ""; position: absolute; bottom: -28%; left: -16%; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(248,193,54,.2), transparent 66%); }
.mke-card-logo { position: relative; width: 72%; max-width: 280px; height: auto; }
.mke-card-tag { position: relative; color: rgba(255,255,255,.82); font-size: 16px; text-align: center; }
.mke-card-url { position: relative; color: #8f9ca3; font-size: 13.5px; letter-spacing: .04em; }
.mke-services { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.mke-services span { font-family: var(--sans); font-weight: 600; font-size: 13.5px; padding: 8px 16px; border-radius: 40px; background: #fff; border: 1px solid var(--line); color: var(--ink); }

/* ---------- footer ---------- */
.footer { background: var(--ink-3); color: rgba(255,255,255,.62); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer p { font-size: 14.5px; max-width: 300px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: 14.5px; opacity: .78; transition: opacity .2s, color .2s; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-contact a { display: flex; align-items: center; gap: 10px; font-size: 14.5px; margin-bottom: 12px; opacity: .82; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13.5px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }

/* ---------- floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.7); transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }

/* ---------- contact page ---------- */
.contact-hero { background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: #fff; padding: clamp(56px, 8vw, 96px) 0; text-align: center; }
.contact-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 54px); }
.contact-hero p { margin-top: 16px; color: rgba(255,255,255,.72); max-width: 560px; margin-inline: auto; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: -60px; position: relative; z-index: 2; }
.ccard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px; text-align: center; box-shadow: var(--shadow); transition: transform .3s var(--ease); }
.ccard:hover { transform: translateY(-6px); }
.ccard-ico { width: 58px; height: 58px; border-radius: 16px; margin: 0 auto 18px; display: grid; place-items: center; color: #fff; }
.ccard-ico svg { width: 28px; height: 28px; }
.ccard-ico.wa { background: #25d366; } .ccard-ico.call { background: var(--accent); } .ccard-ico.mail { background: var(--ink); }
.ccard h3 { font-size: 19px; margin-bottom: 6px; }
.ccard p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.ccard .big { font-family: var(--sans); font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 18px; word-break: break-word; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; margin-top: clamp(56px, 7vw, 90px); }
.info-list { display: grid; gap: 20px; margin-top: 22px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list .i { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--cream); color: var(--accent); display: grid; place-items: center; }
.info-list svg { width: 20px; height: 20px; }
.info-list b { font-family: var(--sans); color: var(--ink); display: block; font-size: 15px; }
.info-list span { color: var(--muted); font-size: 14.5px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .spot, .mke-grid, .contact-info { grid-template-columns: 1fr; }
  .spot:nth-child(even) .spot-media { order: 0; }
  .cap-grid, .ben-grid, .int-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; margin-top: -40px; }
}
@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 22px 18px; box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .35s var(--ease); margin-left: 0; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-inner { gap: 12px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-menu-cta { display: block; margin-top: 12px; text-align: center; background: var(--accent); color: #fff !important; border-radius: 60px !important; padding: 15px 20px !important; border-bottom: none !important; font-family: var(--sans); font-weight: 600; box-shadow: 0 12px 26px -12px rgba(245,85,66,.9); }
  .nav-menu-cta:hover { background: var(--accent-d); }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .steps, .tst-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .cap-grid, .ben-grid, .int-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; }
  .contact-info { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .cap:hover, .ben:hover, .ccard:hover, .wa-float:hover { transform: none; }
  .wa-float::after { animation: none; }
}
