/* =====================================================
   Counterlink Print Technology — styles.css
   Clean corporate light theme with CMYK accents
   ===================================================== */

:root {
  /* CMYK brand palette (sampled from logo) */
  --c-cyan: #29abe2;
  --c-magenta: #ec008c;
  --c-yellow: #ffd400;
  --c-black: #111111;

  --ink: #16181d;
  --ink-soft: #4b515c;
  --ink-faint: #7a8090;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --bg-dark: #14161b;
  --line: #e5e8ee;

  --cyan-dark: #1583b4; /* accessible cyan for text/buttons */

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 10px rgba(20, 24, 34, 0.06);
  --shadow-hover: 0 10px 28px rgba(20, 24, 34, 0.12);

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1160px;
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.13rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }

a { color: var(--cyan-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-black);
  color: #fff;
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--c-cyan);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--cyan-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(21, 131, 180, 0.35);
}
.btn-primary:hover { background: #106a94; box-shadow: 0 8px 22px rgba(21, 131, 180, 0.45); }

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-sm { padding: 9px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 14px rgba(20, 24, 34, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand img { width: 52px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
}
.site-nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-magenta));
  transition: right 0.2s ease;
  border-radius: 2px;
}
.site-nav a:hover { color: var(--ink); text-decoration: none; }
.site-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.header-phone svg { color: var(--cyan-dark); }
.header-phone:hover { text-decoration: none; color: var(--cyan-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(41, 171, 226, 0.10), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(236, 0, 140, 0.05), transparent 60%),
    var(--bg);
}

.cmyk-bars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  display: flex;
}
.cmyk-bars .bar { flex: 1; }
.bar-c { background: var(--c-cyan); }
.bar-m { background: var(--c-magenta); }
.bar-y { background: var(--c-yellow); }
.bar-k { background: var(--c-black); }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin: 0 0 14px;
}
.eyebrow-light { color: var(--c-cyan); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-points li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-cyan);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
}
.hero-points li:nth-child(2)::before { background: var(--c-magenta); }
.hero-points li:nth-child(3)::before { background: #d4af00; }

.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-visual img {
  width: min(380px, 80%);
  filter: drop-shadow(0 24px 40px rgba(20, 24, 34, 0.16));
}

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 720px;
  margin-bottom: 52px;
}
.section-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.section-cta { margin-top: 44px; text-align: center; }

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Feature cards (Why Choose Us) */
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.accent-c .feature-icon { background: rgba(41, 171, 226, 0.12); color: var(--cyan-dark); }
.accent-m .feature-icon { background: rgba(236, 0, 140, 0.10); color: var(--c-magenta); }
.accent-y .feature-icon { background: rgba(255, 212, 0, 0.18); color: #9a7d00; }
.accent-k .feature-icon { background: rgba(17, 17, 17, 0.07); color: var(--c-black); }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* Solution cards */
.solution-card { position: relative; overflow: hidden; }
.solution-tint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.tint-c { background: var(--c-cyan); }
.tint-m { background: var(--c-magenta); }
.tint-y { background: var(--c-yellow); }
.tint-k { background: var(--c-black); }
.solution-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- How We Work ---------- */
.how-card h3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 1.2rem;
}
.how-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  color: #fff;
}
.badge-c { background: var(--cyan-dark); }
.badge-m { background: var(--c-magenta); }

.steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 52px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.steps li strong { color: var(--ink); display: block; margin-bottom: 2px; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ---------- Industries chips ---------- */
.chip-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chip-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.chip-grid li:hover {
  border-color: var(--c-cyan);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ---------- Brands ---------- */
.brand-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  align-items: center;
}
.brand-strip li {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #a6adbb;
  transition: color 0.2s ease;
  cursor: default;
}
.brand-strip li:hover { color: var(--ink); }

/* ---------- About (dark band) ---------- */
.section-dark {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(41, 171, 226, 0.14), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(236, 0, 140, 0.10), transparent 60%),
    var(--bg-dark);
  color: #e8eaf0;
}
.section-dark h2 { color: #fff; }
.section-dark p { color: #b9bfcc; max-width: 68ch; }

.about-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 40px;
}
.about-stats li { display: flex; flex-direction: column; }
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.about-stats li:nth-child(1) .stat-value { color: var(--c-cyan); }
.about-stats li:nth-child(2) .stat-value { color: var(--c-magenta); }
.about-stats li:nth-child(3) .stat-value { color: var(--c-yellow); }
.stat-label {
  font-size: 0.88rem;
  color: #9aa1b0;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- Contact ---------- */
.contact { padding-bottom: 100px; }
.contact-band {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}
.cmyk-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  display: flex;
  flex-direction: column;
}
.cmyk-edge span { flex: 1; }
.e-c { background: var(--c-cyan); }
.e-m { background: var(--c-magenta); }
.e-y { background: var(--c-yellow); }
.e-k { background: var(--c-black); }

.contact-content {
  padding: 60px 64px;
}
.contact-content h2 { max-width: 22ch; }
.contact-content > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 58ch;
  margin-bottom: 30px;
}
.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.contact-details {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.contact-details a, .contact-details address {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.97rem;
}
.contact-details a:hover { color: var(--cyan-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #b9bfcc;
  padding: 56px 0 0;
  font-size: 0.92rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.footer-brand img {
  width: 44px;
  background: #fff;
  border-radius: 9px;
  padding: 5px;
}
.footer-name { font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-meta { margin: 0 0 3px; font-size: 0.85rem; color: #8d94a5; }

.footer-nav ul, .footer-legal {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a { color: #b9bfcc; font-weight: 600; }
.footer-nav a:hover, .footer-legal a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  padding-bottom: 26px;
}
.footer-bottom p { margin: 0; font-size: 0.83rem; color: #7a8194; }
.footer-disclaimer {
  margin: 0 0 14px !important;
  font-size: 0.8rem !important;
  line-height: 1.6;
  color: #6b7284 !important;
  max-width: 90ch;
}
.footer-disclaimer a { color: #9aa1b0; text-decoration: underline; }
.footer-disclaimer a:hover { color: #fff; }

/* ---------- Brand logo grid ---------- */
.brand-logo-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
.brand-logo-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 24px;
  min-height: 96px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-logo-grid li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.brand-logo-grid img {
  max-height: 40px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.brand-logo-grid li:hover img {
  filter: none;
  opacity: 1;
}

/* ---------- Subpages ---------- */
.page-hero {
  position: relative;
  padding: 64px 0 56px;
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(41, 171, 226, 0.10), transparent 60%),
    radial-gradient(600px 300px at 0% 120%, rgba(236, 0, 140, 0.05), transparent 60%),
    var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); max-width: 24ch; }
.page-hero .hero-sub { margin-bottom: 26px; }
.page-hero .hero-ctas { margin-bottom: 0; }

.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--ink-faint);
}
.breadcrumbs a { color: var(--ink-faint); }
.breadcrumbs a:hover { color: var(--cyan-dark); }
.breadcrumbs [aria-current] { color: var(--ink); }

/* Two-column content layout */
.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.content-main h2 { font-size: 1.5rem; margin-top: 1.6em; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--ink-soft); }

.aside-card { position: sticky; top: calc(var(--header-h) + 24px); }
.aside-card h3 { margin-bottom: 14px; }
.aside-card .btn { width: 100%; text-align: center; margin-bottom: 10px; }
.aside-card p { font-size: 0.9rem; color: var(--ink-faint); margin: 14px 0 0; }
.aside-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}
.aside-contact a { font-weight: 700; color: var(--ink); }
.aside-contact a:hover { color: var(--cyan-dark); }

/* Checklist */
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 20px 0 8px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-cyan);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 22px;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan-dark);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* Link cards (related solutions / hub cards) */
.card-link {
  display: block;
  color: inherit;
  height: 100%;
}
.card-link:hover { text-decoration: none; }
.card-link .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cyan-dark);
  margin-top: 14px;
}
.card-link:hover .card-arrow { text-decoration: underline; }

/* Contact page cards */
.contact-channels { margin-top: 8px; }
.contact-channels .card h3 { margin-bottom: 8px; }
.contact-channels .card p { color: var(--ink-soft); font-size: 0.94rem; }
.contact-channels .card a.channel-link {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
}
.contact-channels .card a.channel-link:hover { color: var(--cyan-dark); }

@media (max-width: 1020px) {
  .brand-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .content-split { grid-template-columns: 1fr; }
  .aside-card { position: static; }
}
@media (max-width: 600px) {
  .brand-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .check-list { grid-template-columns: 1fr; }
}

/* ---------- Landing page ---------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(41, 171, 226, 0.10), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(236, 0, 140, 0.05), transparent 60%),
    var(--bg);
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}
.lp-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}
.lp-trust li {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
  padding-left: 24px;
}
.lp-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-cyan);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / contain no-repeat;
}

/* Enquiry form */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 30px 28px;
}
.form-card h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.form-card .form-note {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-bottom: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.15);
}
.form-field textarea { resize: vertical; min-height: 84px; }
.form-card .btn { width: 100%; text-align: center; margin-top: 18px; }
.form-privacy {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin: 12px 0 0;
  line-height: 1.5;
}
.form-privacy a { color: var(--ink-faint); text-decoration: underline; }
.hidden-field { display: none !important; }

/* Hero logo strip (landing page) */
.lp-logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.lp-logo-strip img {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
}

/* Brand text chips + independence note */
.brand-chip-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brand-chip-row li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.independence-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 16px;
  max-width: 80ch;
}

/* Consent banner */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(20, 24, 34, 0.25);
  padding: 20px 22px;
  max-width: 560px;
  margin: 0 auto;
  display: none;
}
.consent-banner.visible { display: block; }
.consent-banner p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.consent-banner p a { text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions .btn { padding: 10px 22px; font-size: 0.9rem; }

/* Thank-you page */
.thanks-hero {
  padding: 110px 0 90px;
  text-align: center;
}
.thanks-hero .tick {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  color: var(--cyan-dark);
}
.thanks-hero h1 { max-width: 24ch; margin-left: auto; margin-right: auto; }
.thanks-hero p { max-width: 52ch; margin: 0 auto 30px; color: var(--ink-soft); font-size: 1.08rem; }

@media (max-width: 860px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal-group > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal-group > *.in-view {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-phone { display: none; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual img { width: min(220px, 55%); }
  .hero { padding: 56px 0 72px; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(20, 24, 34, 0.12);
    padding: 10px 24px 22px;
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav a {
    display: block;
    padding: 12px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav li:last-child a { border-bottom: none; }

  .nav-toggle { display: flex; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-content { padding: 42px 30px 42px 36px; }
  .contact-details { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .btn-sm { padding: 9px 16px; font-size: 0.85rem; }
  .brand-sub { display: none; }
  .brand-strip { gap: 12px 28px; }
  .brand-strip li { font-size: 1.1rem; }
  .about-stats { gap: 28px; }
}
