/* ===========================================================
   PayZoom v2 — Square-inspired system
   One clean geometric sans (Hanken Grotesk), near-black/white
   base, pill buttons, big rounded tiles, brand blue/teal.
   =========================================================== */

:root {
  /* Core ink / surface — Texans deep steel blue base */
  --ink:    #0B1F2B;   /* deep steel blue text/sections */
  --ink-2:  #234049;
  --paper:  #FFFFFF;
  --bg:     #FFFFFF;
  --cream:  #F2F1EA;   /* warm Square-ish section bg */
  --mist:   #EEF3F2;   /* cool green-tinted light bg */
  --line:   #E3E7E6;
  --line-2: #D2D8D7;
  --muted:  #54616A;
  --muted-2:#86919A;

  /* Brand — Seahawks green + Texans steel blue */
  --green:    #69BE28;   /* Seahawks action green — primary accent */
  --green-700:#3F7C16;   /* legible green on white */
  --teal:     #69BE28;   /* alias: accent fills */
  --teal-700: #3F7C16;
  --brand:    #2F7DA8;   /* complementary steel blue (secondary) */
  --brand-600:#246587;
  --navy:     #03202F;   /* Texans deep steel blue — darkest */

  /* Category tile palette */
  --t-cafe:   #D86A43;   /* warm terracotta */
  --t-retail: #2F7DA8;   /* steel blue */
  --t-dining: #03202F;   /* deep steel navy */
  --t-grocery:#5AA82A;   /* action green */
  --t-gov:    #3C5A6E;   /* slate steel */
  --t-petro:  #D49A2A;   /* amber */
  --t-lvl:    #0E8C7F;   /* (gradient set in .tc-lvl) */

  --radius:   16px;
  --radius-l: 28px;
  --radius-xl:36px;
  --shadow-s: 0 1px 2px rgba(20,24,31,.05), 0 4px 14px rgba(20,24,31,.05);
  --shadow-m: 0 10px 34px -10px rgba(20,24,31,.22);
  --shadow-l: 0 30px 80px -24px rgba(14,27,46,.45);
  --ring: 0 0 0 4px rgba(47,125,168,.20);

  --container: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
}

h1,h2,h3,h4 {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 30px; }

/* ---------- Type scale ---------- */
.display { font-size: clamp(46px, 7vw, 96px); letter-spacing: -0.045em; line-height: .98; }
.h1 { font-size: clamp(38px, 5.2vw, 68px); letter-spacing: -0.04em; }
.h2 { font-size: clamp(30px, 3.8vw, 50px); letter-spacing: -0.038em; }
.h3 { font-size: clamp(21px, 2vw, 27px); letter-spacing: -0.03em; font-weight: 700; }
.eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--brand); display: inline-flex; align-items: center; gap: 9px;
  text-transform: none;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }
.eyebrow.on-dark { color: #fff; }
.eyebrow.on-dark::before { background: var(--teal); }
.lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--muted); line-height: 1.5; font-weight: 450; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  padding: 15px 28px; border-radius: 999px; background: var(--bg); color: var(--fg);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), background .16s, color .16s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn--lg { padding: 18px 34px; font-size: 18px; }
.btn--brand { --bg: var(--brand); }
.btn--teal  { --bg: var(--teal); --fg: var(--navy); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--outline-light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.link-arrow { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; letter-spacing: -0.02em; }
.link-arrow svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow.brand { color: var(--brand); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s; }
.site-header.solid { background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid var(--line); }
.site-header.overlay { background: transparent; border-bottom: 1px solid transparent; }
.site-header.overlay.scrolled { background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 30px; height: 78px; }
.brand { display: flex; align-items: center; }
/* logo chip: white backing so the dark-navy logo reads on the video; fades out once header is solid */
.logo-chip { display: inline-flex; align-items: center; background: transparent; border-radius: 11px; padding: 5px 0; transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease); }
.logo-chip img { height: 46px; width: auto; display: block; }
.site-header.overlay:not(.scrolled) .logo-chip { background: #fff; padding: 8px 14px; box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 10px; }
.nav-links a { font-size: 16px; font-weight: 600; color: var(--ink-2); padding: 9px 14px; border-radius: 10px; transition: background .15s, color .15s; letter-spacing: -0.02em; }
.nav-links a:hover, .nav-links a.active { background: var(--mist); color: var(--ink); }
/* white nav text while transparent over the video */
.site-header.overlay:not(.scrolled) .nav-links a { color: rgba(255,255,255,.92); }
.site-header.overlay:not(.scrolled) .nav-links a:hover,
.site-header.overlay:not(.scrolled) .nav-links a.active { background: rgba(255,255,255,.16); color: #fff; }
.site-header.overlay:not(.scrolled) .nav-phone { color: #fff; }
.site-header.overlay:not(.scrolled) .nav-phone svg { color: var(--green); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-phone { font-weight: 700; font-size: 16px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; letter-spacing: -0.02em; }
.nav-phone svg { width: 17px; height: 17px; color: var(--brand); }
.menu-toggle { display: none; padding: 12px; }
.site-header.overlay:not(.scrolled) .menu-toggle { border-color: rgba(255,255,255,.5); color: #fff; }

.mobile-drawer { position: fixed; inset: 78px 0 0 0; z-index: 49; background: #fff; padding: 24px 30px; display: none; flex-direction: column; gap: 4px; }
.mobile-drawer.open { display: flex; }
.mobile-drawer a { font-weight: 700; font-size: 20px; padding: 15px 4px; border-bottom: 1px solid var(--line); letter-spacing: -0.03em; }
.mobile-drawer a.btn { border-bottom: none; color: #fff; justify-content: center; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin: 18px 0 18px; }
.bg-cream { background: var(--cream); }
.bg-mist { background: var(--mist); }
.bg-ink { background: var(--ink); color: #fff; }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 32px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: transparent; }
.card .ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--mist); color: var(--brand); margin-bottom: 22px; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }

.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: var(--mist); color: var(--ink); font-weight: 600; font-size: 15px; border: 1px solid var(--line); letter-spacing: -0.02em; }
.chip svg { width: 16px; height: 16px; color: var(--brand); }

/* placeholder */
.ph { background: repeating-linear-gradient(45deg, rgba(20,24,31,.035) 0 12px, transparent 12px 24px), var(--mist); border: 1px dashed var(--line-2); border-radius: var(--radius-l); display: grid; place-items: center; color: var(--muted); font-size: 13.5px; letter-spacing: .01em; text-align: center; padding: 20px; font-weight: 600; }
.ph.on-color { background: repeating-linear-gradient(45deg, rgba(255,255,255,.1) 0 12px, transparent 12px 24px), rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.92); }

/* ---------- Category tiles (Square signature) ---------- */
.tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius-l);
  color: #fff; padding: 30px; min-height: 250px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); }
.tile .t-ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.18); display: grid; place-items: center; backdrop-filter: blur(2px); }
.tile .t-ic svg { width: 26px; height: 26px; color: #fff; }
.tile h3 { font-size: 25px; margin-bottom: 7px; }
.tile p { color: rgba(255,255,255,.86); font-size: 15.5px; font-weight: 500; max-width: 32ch; }
.tile .t-go { margin-top: 18px; font-weight: 700; display: inline-flex; align-items: center; gap: 7px; font-size: 15.5px; }
.tile .t-go svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.tile:hover .t-go svg { transform: translateX(4px); }
.tile .watermark { position: absolute; right: -20px; bottom: -28px; opacity: .14; pointer-events: none; }
.tile .watermark svg { width: 200px; height: 200px; color: #fff; }
.tile.span2 { grid-column: span 2; }
.tile.span3 { grid-column: span 3; }
.tile.span4 { grid-column: span 4; }
.tile.tall { min-height: 300px; }

.tc-cafe   { background: var(--t-cafe); }
.tc-retail { background: var(--t-retail); }
.tc-dining { background: var(--t-dining); }
.tc-grocery{ background: var(--t-grocery); }
.tc-gov    { background: var(--t-gov); }
.tc-petro  { background: var(--t-petro); }
.tc-lvl    { background: linear-gradient(135deg, #053240 0%, #0E5E50 55%, #4E9E24 100%); }

/* ---------- Process / 3 ways ---------- */
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.way { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 34px; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.way:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.way .num { font-size: 15px; font-weight: 700; color: var(--brand); letter-spacing: -0.01em; margin-bottom: 14px; }
.way.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.way.featured .muted { color: rgba(255,255,255,.74); }
.way.featured .num { color: var(--teal); }
.way h3 { margin-bottom: 12px; }
.way ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.way li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--muted); font-weight: 500; }
.way.featured li { color: rgba(255,255,255,.82); }
.way li svg { width: 18px; height: 18px; flex: none; color: var(--teal); margin-top: 2px; }
.way .badge-warn { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: #B5471F; background: #FCEAE2; border-radius: 999px; padding: 6px 13px; margin-top: 18px; align-self: flex-start; letter-spacing: -0.01em; }

/* ---------- Feature row ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row.flip .fr-media { order: 2; }
.fr-media { min-height: 360px; border-radius: var(--radius-xl); }

/* ---------- Stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.stat-band .s .n { font-size: clamp(40px,5vw,60px); font-weight: 800; letter-spacing: -0.05em; color: var(--ink); }
.stat-band .s .l { color: var(--muted); font-size: 16px; margin-top: 4px; font-weight: 500; }

/* ---------- Logo strip ---------- */
.logos { padding: 36px 0 6px; }
.logos .label { text-align: center; font-size: 15px; color: var(--muted-2); font-weight: 600; margin-bottom: 24px; letter-spacing: -0.01em; }
.logo-track { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: center; }
.logo-chip { font-weight: 700; color: #6a7280; font-size: 19px; letter-spacing: -0.03em; display: flex; align-items: center; gap: 8px; }
.logo-chip .dot { width: 8px; height: 8px; border-radius: 3px; background: var(--line-2); }

/* ---------- Pricing band ---------- */
.price-band { background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: clamp(40px,5vw,68px); display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.price-tag .big { font-size: clamp(52px,7vw,86px); font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.price-tag .big small { font-size: .4em; opacity: .8; font-weight: 700; }
.price-tag .sub { font-size: 17px; color: rgba(255,255,255,.78); margin-top: 16px; max-width: 44ch; }
.no-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.no-list li { display: flex; align-items: center; gap: 13px; font-weight: 600; font-size: 18px; }
.no-list .x { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.12); display: grid; place-items: center; flex: none; }
.no-list .x svg { width: 16px; height: 16px; color: var(--teal); }

/* ---------- Calculator ---------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-m); }
.calc-controls { padding: clamp(30px,3.6vw,48px); }
.calc-result { background: var(--ink); color: #fff; padding: clamp(30px,3.6vw,48px); display: flex; flex-direction: column; }
.ctrl { margin-bottom: 28px; }
.ctrl-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 13px; }
.ctrl-head label { font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }
.ctrl-head .out { font-weight: 800; font-size: 22px; color: var(--brand); letter-spacing: -0.03em; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 99px; background: var(--line-2); outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 6px solid var(--brand); box-shadow: var(--shadow-s); cursor: grab; }
input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 6px solid var(--brand); cursor: grab; }
.calc-result .r-label { font-size: 14px; letter-spacing: -0.01em; color: #9aa6b4; font-weight: 700; }
.calc-result .save-big { font-size: clamp(48px,6vw,72px); font-weight: 800; color: var(--teal); letter-spacing: -0.05em; line-height: 1; margin: 10px 0 4px; }
.compare { margin-top: auto; display: grid; gap: 16px; padding-top: 28px; }
.cmp-row .cmp-top { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 8px; color: #c2cad4; }
.cmp-row .cmp-top b { color: #fff; font-weight: 800; }
.track { height: 10px; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; }
.track > span { display: block; height: 100%; border-radius: 99px; }
.track.cur > span { width: 100%; background: rgba(255,255,255,.34); }
.track.pz > span { background: var(--teal); transition: width .4s var(--ease); }
.calc-foot { font-size: 13px; color: #8893a0; margin-top: 20px; line-height: 1.5; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: var(--cream); padding: clamp(48px,6vw,84px) 0 clamp(52px,6vw,84px); position: relative; overflow: hidden; }
.page-hero.dark { background: var(--ink); color: #fff; }
.page-hero .breadcrumb { font-size: 15px; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
.page-hero.dark .breadcrumb { color: #9aa6b4; }
.page-hero .breadcrumb a:hover { color: var(--ink); }
.page-hero.dark .breadcrumb a:hover { color: #fff; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { max-width: 640px; }
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 860px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px; transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow-s); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; font-size: 18.5px; letter-spacing: -0.03em; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 24px; height: 24px; flex: none; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; top: 11px; left: 4px; width: 16px; height: 2.4px; transition: transform .25s var(--ease); }
.faq summary .pm::after { transform: rotate(90deg); }
.faq details[open] summary .pm::after { transform: rotate(0); }
.faq .faq-body { padding: 0 0 22px; color: var(--muted); line-height: 1.6; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 22px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step .num { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 19px; letter-spacing: -0.03em; }
.step h3 { margin-bottom: 6px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 15px; margin-bottom: 8px; letter-spacing: -0.02em; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: var(--radius); font-family: inherit; font-size: 16px; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 120px; }
.contact-card { background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: clamp(30px,4vw,48px); }
.contact-card .ci { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 24px; }
.contact-card .ci .ic { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--teal); flex: none; }
.contact-card .ci .ic svg { width: 22px; height: 22px; }
.contact-card .ci .t { font-weight: 700; font-size: 17.5px; letter-spacing: -0.02em; }
.contact-card .ci .s { color: #b6c0cc; font-size: 15px; }

/* ---------- Big CTA ---------- */
.cta-final { background: var(--ink); color: #fff; border-radius: var(--radius-xl); padding: clamp(52px,7vw,96px); text-align: center; position: relative; overflow: hidden; }
.cta-final h2 { color: #fff; }
.cta-final .lead { color: #b6c0cc; max-width: 560px; margin: 18px auto 0; }
.cta-actions { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #aeb8c4; padding: 76px 0 36px; }
.site-footer a { color: #aeb8c4; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-grid h5 { font-size: 14px; color: #76828f; margin: 0 0 18px; font-weight: 700; letter-spacing: -0.01em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-grid ul a { font-size: 16px; color: #aeb8c4; }
.site-footer ul li a { display: inline-block; padding: 6px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; gap: 20px; flex-wrap: wrap; font-size: 14px; color: #76828f; }

.footer-logo { background: #fff; padding: 10px 16px; border-radius: 12px; }
.footer-logo img { height: 46px; width: auto; display: block; }

/* ---------- Reveal (capture-safe: transform only) ---------- */
[data-reveal] { transform: translateY(20px); opacity: 1; transition: transform .7s var(--ease); }
[data-reveal].in { transform: none; }
[data-reveal-delay="1"] { transition-delay: .07s; }
[data-reveal-delay="2"] { transition-delay: .14s; }
[data-reveal-delay="3"] { transition-delay: .21s; }
[data-reveal-delay="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Utility ---------- */
.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2,1fr); }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-4 { grid-template-columns: repeat(4,1fr); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .tile.span2, .tile.span3, .tile.span4 { grid-column: span 1; }
  .tile.span4 { grid-column: span 2; }
  .nav-links, .nav-phone { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 920px) {
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .cols-3, .ways { grid-template-columns: 1fr; }
  .feature-row, .price-band, .calc, .contact-grid { grid-template-columns: 1fr; }
  .feature-row.flip .fr-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-band { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .cols-2, .cols-4 { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .tile.span4 { grid-column: span 1; }
  .container { padding-inline: 20px; }
  body { font-size: 17px; }
}

/* ===================================================================
   v3 additions — dropdown nav, photo industry tiles, testimonials,
   partners, brochures, richer Solutions. Larger logo above.
   =================================================================== */

/* Dropdown navigation */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { width: 13px; height: 13px; opacity: .65; transition: transform .2s var(--ease); }
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: -6px; padding-top: 12px; display: none; z-index: 60; }
.nav-item:hover .dropdown { display: block; }
.dropdown-inner { min-width: 238px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-m); padding: 8px; display: flex; flex-direction: column; gap: 2px; }
.dropdown-inner a { font-size: 15px; font-weight: 700; color: var(--ink) !important; padding: 11px 14px; border-radius: 10px; white-space: nowrap; background: transparent !important; letter-spacing: -.02em; }
.dropdown-inner a:hover { background: var(--mist) !important; }
.dropdown-inner a .d-sub { display: block; font-weight: 500; font-size: 12.5px; color: var(--muted-2); margin-top: 1px; }

/* Mobile drawer sub-links */
.mobile-drawer a.sub { font-size: 16px; padding-left: 22px; color: var(--muted); font-weight: 600; }

/* Photo industry tiles */
.tile.photo { background-size: cover; background-position: center 22%; }
.tile.photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,18,28,.10) 0%, rgba(3,18,28,.42) 50%, rgba(3,18,28,.84) 100%); z-index: 0; }
.tile.photo > * { position: relative; z-index: 1; }
.tile.photo .t-ic { background: rgba(255,255,255,.24); }

.eyebrow.green { color: var(--green); }
.eyebrow.green::before { background: var(--green); }

/* Testimonials masonry */
.tmason { columns: 3; column-gap: 22px; }
.tcard { break-inside: avoid; margin-bottom: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 30px 30px 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.tcard .mark { font-family: Georgia, serif; font-size: 56px; line-height: .5; color: var(--green); height: 26px; }
.tcard .quote { font-size: 16.5px; color: var(--ink-2); line-height: 1.62; font-weight: 450; }
.tcard .by { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.tcard .by b { font-size: 16px; letter-spacing: -.02em; display: block; }
.tcard .by span { font-size: 14px; color: var(--muted); }
@media (max-width: 1000px) { .tmason { columns: 2; } }
@media (max-width: 640px) { .tmason { columns: 1; } }

/* Partner logo cards */
.plogos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.plogo { aspect-ratio: 3 / 2; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; text-align: center; padding: 16px; font-weight: 800; color: var(--ink); font-size: 16px; letter-spacing: -.03em; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.plogo:hover { transform: translateY(-3px); box-shadow: var(--shadow-s); border-color: var(--line-2); }
.plogo small { display: block; font-weight: 600; color: var(--muted-2); font-size: 11.5px; margin-top: 5px; letter-spacing: 0; }
@media (max-width: 900px) { .plogos { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) { .plogos { grid-template-columns: repeat(2,1fr); } }

/* Ministry partners */
.ministry { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.mcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 26px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.mcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-s); }
.mcard .mi { width: 46px; height: 46px; border-radius: 12px; background: var(--mist); display: grid; place-items: center; color: var(--green-700); margin-bottom: 16px; }
.mcard .mi svg { width: 22px; height: 22px; }
.mcard b { font-size: 16.5px; letter-spacing: -.02em; }
.mcard p { color: var(--muted); font-size: 14px; margin-top: 6px; }
@media (max-width: 900px) { .ministry { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .ministry { grid-template-columns: 1fr; } }

/* Brochures */
.brochures { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.broch { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.broch:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.broch .bi { width: 44px; height: 54px; border-radius: 8px; background: var(--mist); display: grid; place-items: center; color: var(--brand); flex: none; }
.broch .bi svg { width: 22px; height: 22px; }
.broch b { font-size: 16.5px; letter-spacing: -.02em; display: block; }
.broch span { font-size: 13.5px; color: var(--muted); }
@media (max-width: 800px) { .brochures { grid-template-columns: 1fr; } }

/* Solutions: rich POS cards */
.poscards { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.poscard { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 26px 28px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.poscard:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: transparent; }
.poscard .pc-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--mist); display: grid; place-items: center; color: var(--brand); flex: none; }
.poscard .pc-ic svg { width: 26px; height: 26px; }
.poscard h3 { font-size: 20px; margin-bottom: 4px; }
.poscard p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 760px) { .poscards { grid-template-columns: 1fr; } }

/* Solutions hero showcase */
.sol-hero { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.sol-hero .shot { border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(160deg, #0B1F2B, #234049); aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 48px; box-shadow: var(--shadow-l); }
.sol-hero .shot img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(0,0,0,.4)); }
@media (max-width: 920px) { .sol-hero { grid-template-columns: 1fr; gap: 36px; } }

/* Convenience-fee promo banner */
.promo { background: linear-gradient(135deg, #053240 0%, #0E5E50 60%, #4E9E24 130%); color: #fff; border-radius: var(--radius-xl); padding: clamp(40px,5vw,64px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.promo h2 { color: #fff; }
.promo p { color: rgba(255,255,255,.9); margin-top: 14px; max-width: 52ch; }
.promo .pright { display: flex; justify-content: flex-end; }
@media (max-width: 820px) { .promo { grid-template-columns: 1fr; } .promo .pright { justify-content: flex-start; } }
