/* ================================================
   iGamingUK — style.css
   Bright, clean, professional. Teal accent.
   Syne (headings) + Plus Jakarta Sans (body)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --teal:        #00C48C;
  --teal-d:      #00A876;
  --teal-lt:     #E6FAF4;
  --teal-mid:    #CCF5E8;
  --blue:        #2563EB;
  --blue-lt:     #EFF6FF;
  --ink:         #0F172A;
  --ink-2:       #334155;
  --ink-3:       #64748B;
  --line:        #E2E8F0;
  --line-lt:     #F1F5F9;
  --white:       #FFFFFF;
  --off:         #F8FAFB;
  --amber:       #F59E0B;
  --red:         #EF4444;
  --green:       #22C55E;

  --h:  'Syne', system-ui, sans-serif;
  --b:  'Plus Jakarta Sans', system-ui, sans-serif;

  --max:   1180px;
  --nav-h: 68px;
  --r:     8px;
  --r-lg:  14px;
  --r-xl:  20px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 2px 8px rgba(15,23,42,.04);
  --shadow:    0 2px 8px rgba(15,23,42,.07), 0 8px 28px rgba(15,23,42,.06);
  --shadow-lg: 0 8px 24px rgba(15,23,42,.10), 0 20px 60px rgba(15,23,42,.08);
  --shadow-teal: 0 4px 20px rgba(0,196,140,.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--b);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .wrap { padding: 0 40px; } }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--h); line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: .9rem; font-weight: 700; font-family: var(--b); letter-spacing: .02em; }
p  { color: var(--ink-2); line-height: 1.75; }

.label {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .75rem;
}
.intro { font-size: 1.05rem; color: var(--ink-2); max-width: 58ch; line-height: 1.8; margin-bottom: 2.5rem; }

.lnk { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(37,99,235,.3); text-underline-offset: 3px; }
.lnk:hover { text-decoration-color: var(--blue); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--b); font-weight: 600; font-size: .875rem;
  padding: .7rem 1.6rem; border-radius: var(--r);
  border: 2px solid transparent; cursor: pointer;
  transition: all .18s; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-teal   { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-d); border-color: var(--teal-d); box-shadow: var(--shadow-teal); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink-3); background: var(--off); }

.btn-white  { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-white:hover { background: var(--off); }

.btn-lg { padding: .9rem 2rem; font-size: .95rem; }

/* ── Tags ── */
.tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 4px;
  background: var(--teal-lt); color: var(--teal-d);
}
.tag-blue { background: var(--blue-lt); color: var(--blue); }
.tag-amber { background: #FEF3C7; color: #92400E; }

/* ================================================
   NAV
   ================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(15,23,42,.07); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width:768px) { .nav-inner { padding: 0 40px; } }

.logo {
  font-family: var(--h); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; flex-shrink: 0;
  text-decoration: none;
}
.logo-ig { color: var(--ink); }
.logo-uk { color: var(--teal); }

.nav-links {
  display: none; align-items: center; gap: .15rem;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: .85rem; font-weight: 500; color: var(--ink-2);
  padding: .45rem .8rem; border-radius: var(--r);
  transition: background .15s, color .15s;
  display: block;
}
.nav-links a:hover, .nav-links a.cur { color: var(--ink); background: var(--off); }

.has-drop { position: relative; }
.has-drop:hover .drop { opacity: 1; pointer-events: all; transform: translateY(0); }
.drop {
  position: absolute; top: 100%; left: 0;
  padding-top: 10px; /* extends hitbox upward to bridge the gap */
  min-width: 220px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .15s, transform .15s;
}
.drop-inner {
  background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: .4rem;
}
.drop a { font-size: .84rem; border-radius: var(--r); display: block; }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

.mob-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 899;
  overflow-y: auto; padding: 1.5rem 24px;
  flex-direction: column; gap: .15rem;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: .95rem; font-weight: 500; color: var(--ink-2);
  padding: .75rem .5rem; border-bottom: 1px solid var(--line); display: block;
}
.mob-nav a:hover { color: var(--teal); }
.mob-sec {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); padding: 1.25rem .5rem .4rem; display: block;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  padding-top: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,140,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
  padding: 5rem 0 4rem;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1fr 420px; gap: 5rem; padding: 6rem 0 5rem; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal-lt); color: var(--teal-d);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .4rem .9rem; border-radius: 20px; margin-bottom: 1.5rem;
}
.hero-tag::before { content: '●'; font-size: .5rem; color: var(--teal); }

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 1.1rem; max-width: 52ch; margin-bottom: 2.25rem; line-height: 1.8; }
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-proof {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--line);
}
.proof-stat .n {
  font-family: var(--h); font-size: 2rem; font-weight: 800; color: var(--ink);
  line-height: 1; display: block;
}
.proof-stat .l { font-size: .78rem; color: var(--ink-3); margin-top: .3rem; font-weight: 500; display: block; }

/* Hero card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.hc-head {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 1.25rem;
}
.hc-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 0; border-bottom: 1px solid var(--line-lt);
  font-size: .875rem; color: var(--ink-2);
}
.hc-row:last-of-type { border-bottom: none; }
.dot {
  width: 8px; height: 8px;
  flex-shrink: 0; margin-top: 3px;
  border: 2px solid var(--teal);
  transform: rotate(45deg);
  border-radius: 1px;
}
.dot-g { background: var(--teal); border-color: var(--teal); }
.dot-a { background: transparent; border-color: var(--teal); }
.hc-divider { height: 1px; background: var(--line); margin: .75rem 0; }
.hc-badge {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: var(--teal-d);
}
.hc-badge::before { content: '✓'; font-weight: 800; }

/* ================================================
   SERVICES OVERVIEW
   ================================================ */
.svc-overview {
  padding: 5.5rem 0;
  background: var(--off);
  border-bottom: 1px solid var(--line);
}
.svc-duo {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: .5rem;
}
@media (min-width: 760px) { .svc-duo { grid-template-columns: 1fr 1fr; } }

.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  text-decoration: none; color: inherit;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--teal-mid); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 24px; height: 24px; }

.svc-card h3 { font-size: 1.3rem; }
.svc-card > p { font-size: .9rem; line-height: 1.7; flex: 1; }

.svc-list {
  display: flex; flex-direction: column; gap: .4rem;
  border-top: 1px solid var(--line-lt); padding-top: 1.25rem;
}
.svc-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .82rem; color: var(--ink-2); line-height: 1.5;
}
.svc-list li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }

.svc-more {
  display: flex; align-items: center; gap: .35rem;
  font-size: .82rem; font-weight: 700; color: var(--teal-d); margin-top: auto;
}

/* ================================================
   WHY US
   ================================================ */
.why { padding: 5.5rem 0; background: var(--white); border-bottom: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0 2rem; }
.why-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9rem; color: var(--ink-2); line-height: 1.6;
}
.chk {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-lt); flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 900; color: var(--teal-d);
}

.why-panel {
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.why-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 0; border-bottom: 1px solid var(--line);
  gap: 1rem;
}
.why-stat:last-child { border-bottom: none; }
.why-stat-label { font-size: .875rem; color: var(--ink-2); }
.why-stat-val { font-family: var(--h); font-size: 1.5rem; font-weight: 800; color: var(--teal-d); flex-shrink: 0; }

.testimonial-pull {
  background: var(--teal-lt);
  border-left: 3px solid var(--teal);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
}
.testimonial-pull p { font-size: .9rem; color: var(--ink); font-style: italic; line-height: 1.7; margin-bottom: .4rem; }
.testimonial-pull cite { font-size: .78rem; color: var(--ink-3); font-style: normal; font-weight: 600; }

/* ================================================
   CLIENTS STRIP
   ================================================ */
.clients-strip {
  padding: 3.5rem 0;
  background: var(--off);
  border-bottom: 1px solid var(--line);
}
.client-pills { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.25rem; }
.pill {
  font-size: .875rem; font-weight: 600; color: var(--ink-2);
  padding: .4rem 1.1rem; border: 1.5px solid var(--line);
  border-radius: 20px; background: var(--white);
  transition: border-color .15s, color .15s;
}
.pill:hover { border-color: var(--teal); color: var(--teal-d); }

/* ================================================
   KB / NEWS TEASERS
   ================================================ */
.kb-teaser { padding: 5.5rem 0; background: var(--white); border-bottom: 1px solid var(--line); }
.news-teaser { padding: 5.5rem 0; background: var(--off); border-bottom: 1px solid var(--line); }

.card-grid-3 {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: .5rem;
}
@media (min-width: 640px) { .card-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .card-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--teal-mid); transform: translateY(-2px); }
.card h3 { font-size: 1rem; margin: .65rem 0 .5rem; line-height: 1.4; }
.card p  { font-size: .85rem; line-height: 1.65; }
.card-more { font-size: .8rem; font-weight: 700; color: var(--teal-d); margin-top: 1rem; display: block; }
.card-meta { font-size: .75rem; color: var(--ink-3); margin-top: .75rem; }

.news-featured {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: .5rem; margin-bottom: 1.25rem;
}
@media (min-width: 760px) { .news-featured { grid-template-columns: 1.4fr 1fr; } }

.card-feat {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem;
  transition: box-shadow .2s, border-color .2s;
}
.card-feat:hover { box-shadow: var(--shadow); border-color: var(--teal-mid); }
.card-feat h3 { font-size: 1.25rem; margin: .75rem 0 .65rem; line-height: 1.35; }
.card-feat p { font-size: .875rem; line-height: 1.7; }

.news-grid-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem;
}

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  background: var(--teal-lt);
  border-top: 2px solid var(--teal-mid);
  border-bottom: 2px solid var(--teal-mid);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--ink-2); max-width: 52ch; margin: 0 auto 2rem; line-height: 1.8; }
.cta-band-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: var(--off);
  border-bottom: 1px solid var(--line);
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
}
.page-hero .label { font-size: .7rem; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: .85rem; }
.page-hero p { font-size: 1.05rem; color: var(--ink-2); max-width: 58ch; line-height: 1.8; }

/* ================================================
   SERVICE DETAIL
   ================================================ */
.svc-detail { padding: 4rem 0 6rem; }
.svc-detail-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: start;
}
@media (min-width: 900px) { .svc-detail-grid { grid-template-columns: 1fr 320px; } }

.svc-body h2 { font-size: 1.55rem; margin: 2.25rem 0 .75rem; }
.svc-body h2:first-child { margin-top: 0; }
.svc-body h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.svc-body p { margin-bottom: 1.2rem; font-size: .95rem; }
.svc-body > ul { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.svc-body > ul li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--ink-2); }
.svc-body > ul li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* Sidebar */
.svc-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 900px) { .svc-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); } }

.aside-box {
  background: var(--off); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem;
}
.aside-box h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: 1rem; }
.aside-box ul { display: flex; flex-direction: column; gap: .5rem; }
.aside-box ul a { font-size: .875rem; color: var(--blue); display: block; padding: .2rem 0; }
.aside-box ul a:hover { text-decoration: underline; }

.aside-cta {
  background: var(--teal); border-radius: var(--r-lg); padding: 1.75rem;
  border: none;
}
.aside-cta h4 { color: rgba(255,255,255,.7); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.aside-cta p { font-size: .875rem; color: rgba(255,255,255,.85); margin-bottom: 1.25rem; line-height: 1.7; }
.aside-cta a.btn { background: var(--white); color: var(--teal-d); border-color: var(--white); width: 100%; justify-content: center; }
.aside-cta a.btn:hover { background: var(--off); }

/* Callout inside body */
.callout {
  background: var(--teal-lt); border: 1px solid var(--teal-mid);
  border-radius: var(--r-lg); padding: 1.5rem 1.75rem; margin: 2rem 0;
}
.callout h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--teal-d); }
.callout p { font-size: .875rem; margin: 0; }

/* Full-width service list grid */
.svc-full-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .6rem .5rem;
  margin: 1rem 0 1.5rem;
}
@media (min-width: 640px) { .svc-full-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-full-grid li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .84rem; color: var(--ink-2); line-height: 1.5;
  padding: .4rem 0;
}
.svc-full-grid li::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; }

/* ================================================
   ARTICLE (news / KB)
   ================================================ */
.article-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; padding: 4rem 0 6rem; align-items: start;
}
@media (min-width: 900px) { .article-layout { grid-template-columns: 1fr 280px; } }

.article h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: .75rem; }
.article .art-meta { font-size: .78rem; color: var(--ink-3); margin-bottom: 2rem; }
.article h2 { font-size: 1.4rem; margin: 2rem 0 .7rem; }
.article h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.article p { font-size: .95rem; margin-bottom: 1.2rem; line-height: 1.8; }
.article ul { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.article ul li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--ink-2); }
.article ul li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ================================================
   BREADCRUMB
   ================================================ */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--ink-3);
  padding-top: calc(var(--nav-h) + 1.5rem); padding-bottom: .5rem;
}
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--teal-d); }
.breadcrumb .sep { color: var(--line); }

/* ================================================
   KNOWLEDGE INDEX
   ================================================ */
.kb-section { padding: 3.5rem 0; border-bottom: 1px solid var(--line); }
.kb-section:last-child { border-bottom: none; padding-bottom: 5rem; }
.kb-grid-4 {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: .75rem;
}
@media (min-width: 640px) { .kb-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .kb-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ================================================
   CLIENTS PAGE
   ================================================ */
.clients-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; padding: 4rem 0;
}
@media (min-width: 640px) { .clients-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }

.client-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: box-shadow .2s, border-color .2s;
}
.client-card:hover { box-shadow: var(--shadow); border-color: var(--teal-mid); }
.client-name { font-family: var(--h); font-size: 1.2rem; font-weight: 700; margin-bottom: .35rem; }
.client-card p { font-size: .875rem; line-height: 1.65; color: var(--ink-2); margin-top: .75rem; }

.testimonial-card {
  background: var(--off); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem;
  margin-top: 1rem;
}
.tq { font-size: .9rem; color: var(--ink); font-style: italic; line-height: 1.75; margin-bottom: .5rem; }
.tq::before { content: '"'; color: var(--teal); font-size: 1.5rem; font-family: var(--h); line-height: 0; vertical-align: -6px; margin-right: .2rem; }
.tc { font-size: .78rem; font-weight: 700; color: var(--ink-3); }

/* ================================================
   ABOUT / STATS
   ================================================ */
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; margin: 3rem 0;
}
@media (min-width: 640px) { .about-stats { grid-template-columns: repeat(4, 1fr); } }
.about-stat { background: var(--white); padding: 1.75rem; text-align: center; }
.about-stat-n { font-family: var(--h); font-size: 2.4rem; font-weight: 800; color: var(--teal-d); line-height: 1; }
.about-stat-l { font-size: .78rem; color: var(--ink-3); margin-top: .4rem; font-weight: 500; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; padding: 4rem 0 6rem;
}
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.ci h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }
.ci-block { margin-bottom: 2rem; }
.ci-block h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: .4rem; }
.ci-block a, .ci-block p { font-size: .95rem; color: var(--ink-2); }
.ci-block a { color: var(--blue); }
.ci-block a:hover { text-decoration: underline; }
.contact-note {
  background: var(--teal-lt); border: 1px solid var(--teal-mid);
  border-radius: var(--r-lg); padding: 1.5rem;
}
.contact-note h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--teal-d); margin-bottom: .75rem; }
.contact-note ul { display: flex; flex-direction: column; gap: .5rem; }
.contact-note li { display: flex; gap: .5rem; font-size: .875rem; color: var(--ink-2); }
.contact-note li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--ink);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.foot-brand .logo { margin-bottom: .75rem; }
.foot-brand .logo .logo-ig { color: var(--white); }
.foot-brand .logo .logo-uk { color: var(--teal); }
.foot-brand p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.foot-brand .foot-contact { color: rgba(255,255,255,.75) !important; margin-top: .75rem; font-size: .84rem !important; }
.foot-brand .foot-contact a { color: var(--teal); }
.foot-brand .foot-contact a:hover { text-decoration: underline; }

.foot-col h4 { font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.4); margin-bottom: 1rem; font-family: var(--b); }
.foot-col ul { display: flex; flex-direction: column; gap: .5rem; }
.foot-col a { font-size: .84rem; color: rgba(255,255,255,.55); transition: color .15s; }
.foot-col a:hover { color: var(--white); }

.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  padding: 1.25rem 0;
  font-size: .75rem; color: rgba(255,255,255,.3);
}

/* ================================================
   UTILITIES
   ================================================ */
.sec-hdr { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }

/* ================================================
   ANIMATIONS
   ================================================ */
.fade { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 639px) {
  .svc-full-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: calc(var(--nav-h) + 2.5rem); }
  .cta-band { padding: 3.5rem 0; }
  .kb-section { padding: 2.5rem 0; }
}
