/* ============================================================
   360 WEB & IT SOLUTIONS — PREMIUM DIGITAL AGENCY WEBSITE
   Brand palette
   ------------------------------------------------------------
   --navy     #0F2A4A   Luxury base
   --blue     #1A5FBF   Trust accent
   --coral    #FF4D3A   Energetic CTA highlight
   --soft     #F5F7FA   Soft background
   --white    #FFFFFF   White
   ============================================================ */

:root {
  --navy: #0F2A4A;
  --navy-2: #0A1E38;
  --navy-3: #071629;
  --blue: #1A5FBF;
  --coral: #FF4D3A;
  --coral-2: #FF6A5A;
  --soft: #F5F7FA;
  --white: #FFFFFF;

  --ink: #0F2A4A;
  --ink-2: #2A3B55;
  --ink-3: #5B6A82;
  --ink-4: #8A97AE;
  --line: #E5EAF2;
  --line-2: #D7DEEB;
  --peach-soft: #FFF1F0;
  --peach-ring: rgba(255, 77, 58, .18);
  --grad-accent: linear-gradient(135deg, #FF4D3A 0%, #FF8A5A 100%);

  --shadow-sm: 0 2px 8px rgba(15, 42, 74, .06);
  --shadow-md: 0 10px 30px rgba(15, 42, 74, .08);
  --shadow-lg: 0 30px 80px rgba(15, 42, 74, .14);
  --shadow-coral: 0 20px 60px rgba(255, 77, 58, .35);
  --shadow-blue: 0 20px 60px rgba(26, 95, 191, .35);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --btn-radius: 15px;

  --font-display: var(--font-sora), "Sora", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: var(--font-inter), "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* H2 gradient text (high contrast, readable on light backgrounds) */
  /* H2 on dark sections / banners */

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --container: 1240px;
}

/* ------------------ RESET ------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; margin: 0; padding: 0; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: rgba(26, 95, 191, .22); color: var(--navy); }

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

/* ------------------ SHARED TYPOGRAPHY ------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

/* Title case: first letter of each word capitalized (H1 + H2 only) */
h1,
h2 {
  text-transform: capitalize;
}

.section { padding: 80px 0; position: relative; }
.section--sm { padding: 80px 0; }

.section__head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.section__head.reveal.is-visible {
  max-width: 1200px;
}
.section__head--split {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  text-align: left; max-width: 100%;
}
.section__head--split h2 { max-width: 640px; }
.section__head--light p { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow__line {
  width: 28px; height: 1px; background: var(--blue); display: inline-block;
}
.eyebrow--light { color: rgba(255, 255, 255, .85); }
.eyebrow--light .eyebrow__line { background: var(--coral); }
.eyebrow--center {
  justify-content: center;
  width: 100%;
}

.section__title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  margin-bottom: 20px;
}

.section__lede {
  font-size: 17px;
  color: var(--ink-3);
  margin: 0 auto;
}
.section__lede--light { color: rgba(255, 255, 255, .7); }

/* Solid accent (no gradient); H2 uses navy + coral only */
.grad {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--coral);
  color: var(--coral);
}
.grad-coral {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--coral);
  color: var(--coral);
}

/* ------------------ BUTTONS ------------------ */
.btn {
  --btn-py: 14px; --btn-px: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  font-weight: 600; font-size: 15px;
  border-radius: var(--btn-radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(255, 77, 58, .4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 60px rgba(255, 77, 58, .55); }

.btn--coral { background: var(--coral); color: var(--white); }
.btn--coral:hover { background: var(--coral-2); transform: translateY(-2px); box-shadow: var(--shadow-coral); }

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .3); }

.btn--ghost-dark {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn--ghost-dark:hover { background: var(--soft); border-color: var(--line-2); }

.btn--outline-light {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .55); }

.btn--link {
  padding: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 600;
  position: relative;
}
.btn--link::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--blue); transition: width .3s var(--ease);
}
.btn--link:hover::after { width: 100%; }
.btn--link span { transition: transform .3s var(--ease); display: inline-block; }
.btn--link:hover span { transform: translateX(4px); }

.btn--compact { padding: 11px 18px; font-size: 14px; }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--block { width: 100%; }

.btn__play {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  padding-left: 2px;
}

/* ------------------ ANNOUNCEMENT ------------------ */
.announcement {
  background: var(--navy-3);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.announcement__inner {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 28px; flex-wrap: wrap;
}
.announcement__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 77, 58, .25);
  animation: pulse 1.8s var(--ease) infinite;
}
.announcement p { margin: 0; flex: 1; }
.announcement__cta { color: var(--coral); font-weight: 600; }
.announcement__cta:hover { color: var(--coral-2); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 58, .45); }
  50% { box-shadow: 0 0 0 7px rgba(255, 77, 58, 0); }
}

/* ------------------ NAVIGATION ------------------ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-bottom: 1px solid rgba(15, 42, 74, .06);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 1px 0 rgba(15, 42, 74, .06), var(--shadow-sm);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 16px 28px;
}

.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 44px; width: auto; }

.nav__menu > ul {
  display: flex; gap: 36px; align-items: center;
}
.nav__menu a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--coral); transition: width .3s var(--ease);
}
.nav__menu a:hover { color: var(--navy); }
.nav__menu a:hover::after { width: 100%; }

/* Services dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ink-3);
  margin-top: 2px;
}
.nav__dropdown:hover .nav__caret,
.nav__dropdown:focus-within .nav__caret {
  border-top-color: var(--navy);
}
.nav__dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 8px;
  min-width: 280px;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(229, 234, 242, .98);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 56px rgba(15, 42, 74, .1),
    0 8px 20px rgba(15, 42, 74, .04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 120;
}
.nav__dropdown-panel li + li {
  margin-top: 2px;
}
.nav__dropdown-sublist {
  list-style: none;
  margin: 4px 0 2px 12px;
  padding: 0 0 0 10px;
  border-left: 1px dashed rgba(26, 95, 191, .3);
}
.nav__dropdown-sublist li + li {
  margin-top: 2px;
}
.nav__dropdown-sublist a {
  font-size: 13px;
  color: var(--ink-3);
  padding-top: 9px;
  padding-bottom: 9px;
}
.nav__dropdown:hover .nav__dropdown-panel,
.nav__dropdown:focus-within .nav__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-panel a {
  display: block;
  padding: 11px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--btn-radius);
  transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.nav__dropdown-panel a::after {
  display: none;
}
.nav__dropdown-panel a:hover,
.nav__dropdown-panel a:focus-visible {
  background: rgba(245, 247, 250, .95);
  color: var(--navy);
  box-shadow: inset 3px 0 0 var(--coral);
}
.nav__dropdown-panel a[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
  background: rgba(26, 95, 191, .08);
  box-shadow: inset 3px 0 0 var(--blue);
}

.nav__actions {
  display: flex; align-items: center; gap: 18px;
}
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.nav__phone svg { color: var(--blue); }
.nav__phone:hover { color: var(--navy); }

.nav__toggle {
  display: none; width: 42px; height: 42px;
  border-radius: var(--btn-radius); background: var(--soft);
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav__toggle span {
  display: block; width: 18px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------ HERO (LIGHT) ------------------ */
.hero {
  position: relative; overflow: hidden;
  color: var(--navy);
  padding: 80px 0 70px;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(26, 95, 191, .10), transparent 60%),
    radial-gradient(700px 450px at -5% 100%, rgba(255, 77, 58, .08), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%);
  isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: -1; }

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 42, 74, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 42, 74, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, black 15%, transparent 75%);
}

.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
}
.hero__orb--blue {
  width: 420px; height: 420px; background: rgba(26, 95, 191, .22);
  top: -100px; right: -60px;
  animation: float 12s ease-in-out infinite;
}
.hero__orb--coral {
  width: 340px; height: 340px; background: rgba(255, 77, 58, .18);
  bottom: -120px; left: -80px;
  animation: float 14s ease-in-out infinite reverse;
}

.hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26, 95, 191, .14) 1.2px, transparent 1.6px);
  background-size: 24px 24px;
  opacity: .35;
  mask-image: radial-gradient(ellipse 50% 50% at 90% 80%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 90% 80%, black, transparent 70%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center;
  padding: 40px 28px 0px;
}

.hero__chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px; border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 12.5px; letter-spacing: .02em; font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.hero__chip-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), #FF8A5A);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero__title .grad {
  background: linear-gradient(120deg, #1A5FBF 0%, #4C8AE0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero__title .grad-coral {
  background: linear-gradient(120deg, #FF4D3A 0%, #FF8A5A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--ink-3);
  max-width: 580px;
  margin: 0 0 36px;
  line-height: 1.6;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

/* Trust row — avatars + stars */
.hero__trust {
  display: flex; align-items: center; gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__trust-avatars {
  display: flex;
}
.hero__trust-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg, var(--blue));
  color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid var(--white);
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}
.hero__trust-avatar:first-child { margin-left: 0; }
.hero__trust-stars {
  display: flex; align-items: center; gap: 3px;
  color: var(--coral);
  margin-bottom: 4px;
}
.hero__trust-stars svg { width: 14px; height: 14px; }
.hero__trust-stars strong {
  margin-left: 8px; color: var(--navy); font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
}
.hero__trust-copy p {
  font-size: 13.5px; color: var(--ink-3); margin: 0;
}
.hero__trust-copy p strong { color: var(--navy); font-weight: 600; }

/* Hero visual */
.hero__visual { position: relative; height: 540px; }

/* Floating channel chips */
.hero__channels {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
}
.hero__channel {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: 12px; font-weight: 600; color: var(--navy);
  animation: floatUp 7s ease-in-out infinite;
}
.hero__channel svg { color: var(--blue); }
.hero__channel--1 { top: 10px; left: -30px; animation-delay: 0s; }
.hero__channel--2 { top: 0; right: 40px; animation-delay: .5s; }
.hero__channel--2 svg { color: #56D68D; }
.hero__channel--3 { bottom: 60px; right: -30px; animation-delay: 1s; }
.hero__channel--3 svg { color: var(--coral); }
.hero__channel--4 { bottom: 10px; left: 30px; animation-delay: 1.5s; }
.hero__channel--4 svg { color: #8B5CF6; }

/* Light card (replaces dark glass) */

/* Keep legacy .glass-card usable for dark sections (dashboard, pricing featured) */
.glass-card__label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .6); display: block; margin-bottom: 6px; }
.glass-card__title { font-size: 17px; color: var(--white); font-weight: 600; }

/* Main dashboard card */
.hero__card--main {
  position: absolute; top: 10px; right: 0; width: 100%;
  max-width: 460px;
  animation: floatUp 6s ease-in-out infinite;
  z-index: 1;
}
.hero__card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  padding: 22px 26px 10px;
}
.hero__card-stats > div span {
  font-size: 11px; color: var(--ink-4); letter-spacing: .05em; text-transform: uppercase;
  display: block; margin-bottom: 6px; font-weight: 600;
}
.hero__card-stats > div strong {
  font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy);
  display: block; letter-spacing: -.01em;
}
.hero__card-stats em {
  display: inline-block; margin-top: 6px; font-style: normal;
  font-size: 11px; font-weight: 600;
  padding: 3px 7px; border-radius: 999px;
}
.up { background: rgba(31, 167, 99, .1); color: #1FA763; }
.down { background: rgba(255, 77, 58, .1); color: var(--coral); }

.hero__chart {
  padding: 4px 14px 8px;
}
.hero__chart svg { width: 100%; height: 150px; }
.hero__chart-line { stroke-dasharray: 700; stroke-dashoffset: 700; animation: drawLine 2.4s var(--ease-out) .8s forwards; }
.hero__chart-line-2 { stroke-dasharray: 700; stroke-dashoffset: 700; animation: drawLine 2.4s var(--ease-out) 1.1s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.hero__card-legend {
  display: flex; gap: 18px;
  padding: 0 26px 22px;
  font-size: 11.5px; color: var(--ink-3); font-weight: 500;
}
.hero__card-legend span { display: inline-flex; align-items: center; gap: 6px; }
.hero__card-legend em { display: inline-block; width: 10px; height: 3px; border-radius: 2px; font-style: normal; }

/* Small floating cards */
.hero__card--sm {
  position: absolute; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center;
  padding: 16px 18px; width: 250px;
  animation: floatUp 7s ease-in-out infinite;
}
.hero__card--sm span {
  font-size: 11px; color: var(--ink-4); letter-spacing: .04em; text-transform: uppercase;
  display: block; margin-bottom: 4px; font-weight: 600;
}
.hero__card--sm strong {
  font-family: var(--font-display); font-size: 20px; color: var(--navy); font-weight: 700;
  letter-spacing: -.01em;
}

.mini-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26, 95, 191, .1); color: var(--blue);
}
.mini-icon--blue { background: rgba(26, 95, 191, .1); color: var(--blue); }
.mini-icon--coral { background: rgba(255, 77, 58, .1); color: var(--coral); }
@keyframes barGrow { to { transform: scaleY(1); } }

/* SEO ring card */
.hero__card--ring {
  display: flex; align-items: center; gap: 14px; width: auto;
  padding: 14px 18px;
}
.hero__ring {
  position: relative; width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__ring svg { width: 100%; height: 100%; }
.hero__ring-bar {
  stroke-dashoffset: 106.8;
  animation: ringFill 2s var(--ease-out) .6s forwards;
}
@keyframes ringFill { to { stroke-dashoffset: 16; } }
.hero__ring strong {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--navy);
}
.hero__card--ring em { font-style: normal; font-size: 11px; font-weight: 600; padding: 3px 7px; border-radius: 999px; margin-top: 4px; display: inline-block; }

/* Card positions */
.hero__card--float1 { top: 40%; left: -50px; animation-delay: .3s; z-index: 3; }
.hero__card--float2 { bottom: 40px; right: -20px; animation-delay: .6s; z-index: 3; }
.hero__card--float3 { bottom: -10px; left: 50px; animation-delay: .9s; z-index: 3; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Standalone strip below hero */
.trusted-section {
  padding: clamp(28px, 4vw, 48px) 0;
  background: var(--soft);
  position: relative;
  z-index: 1;
}

/* Social proof strip — premium card + marquee */
.trusted {
  margin-top: 0;
  margin-bottom: 0;
  padding: clamp(28px, 4vw, 48px) clamp(22px, 3.5vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  z-index: 1;
}

.trusted__head {
  max-width: 760px;
  margin: 0 auto clamp(22px, 3vw, 36px);
}

.trusted__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.9vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 12px;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--navy);
  color: var(--navy);
}

.trusted__subtitle {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
  font-weight: 500;
  max-width: 560px;
  margin-inline: auto;
}

.trusted__marquee-viewport {
  overflow: hidden;
  padding: 10px 0 6px;
  margin: 0 -8px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.trusted__marquee-track {
  display: flex;
  width: max-content;
  animation: trustedMarquee 42s linear infinite;
}

.trusted__marquee-viewport:hover .trusted__marquee-track {
  animation-play-state: paused;
}

.trusted__marquee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0 clamp(16px, 3vw, 40px) 0 0;
  flex-shrink: 0;
}

.trusted__marquee-row li {
  flex: 0 0 auto;
}

.trusted__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 6px 4px;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: .04em;
  color: #000;
  transition:
    color .35s var(--ease),
    transform .35s var(--ease);
  cursor: default;
}

.trusted__logo em {
  font-style: normal;
  color: inherit;
  letter-spacing: .04em;
}

.trusted__logo:hover {
  color: var(--coral);
  transform: translateY(-2px);
}

.trusted__logo:hover em {
  color: var(--coral);
}

@keyframes trustedMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .trusted__marquee-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .trusted__marquee-row--dup {
    display: none !important;
  }
  .trusted__marquee-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trusted__marquee-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
    padding-right: 0;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted__marquee-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .trusted__marquee-row--dup {
    display: none !important;
  }
  .trusted__marquee-track {
    animation: none !important;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trusted__marquee-row {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
    gap: 14px 22px;
  }
  .trusted__logo {
    transition: none;
  }
  .trusted__logo:hover {
    transform: none;
  }
}

/* ------------------ SERVICES (ANIMATED) ------------------ */
.services {
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 10% 10%, rgba(26, 95, 191, .07), transparent 60%),
    radial-gradient(500px 400px at 90% 90%, rgba(255, 77, 58, .05), transparent 60%);
  pointer-events: none;
}

/* Card shell */

/* Soft hover background gradient */

/* Diagonal shine sweep */
.service-card:hover .service-card__shine {
  animation: cardShine 1.1s var(--ease-out);
}
@keyframes cardShine {
  0% { left: -60%; opacity: 0; }
  15% { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* Animated gradient border frame (shows on hover) */

/* Card hover state */
.service-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow:
    0 30px 60px rgba(15, 42, 74, .12),
    0 8px 20px rgba(15, 42, 74, .06);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; animation-play-state: running; }

/* Ghost number badge */
.service-card:hover .service-card__num {
  -webkit-text-stroke: 1px rgba(26, 95, 191, .25);
  transform: scale(1.08) translateY(-2px);
}

/* Icon container + rotating ring */

/* Rotating dashed ring around the icon */
.service-card:hover .service-card__ring {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  animation: ringSpin 8s linear infinite;
}
@keyframes ringSpin {
  to { transform: scale(1) rotate(360deg); }
}

/* Icon hover transformation */
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--blue), #4C8AE0);
  color: var(--white);
  box-shadow:
    0 20px 40px rgba(26, 95, 191, .35),
    0 0 0 6px rgba(26, 95, 191, .08);
  animation-play-state: paused;
  transform: scale(1.08) rotate(-6deg);
}
.service-card:hover .service-card__icon svg {
  transform: scale(1.12) rotate(6deg);
}

/* Headings */

/* Feature list */
.service-card:hover .service-card__list li::after { opacity: 1; transform: rotate(45deg) scale(1); }
.service-card:hover .service-card__list li::before { background: rgba(26, 95, 191, .18); }
.service-card:hover .service-card__list li:nth-child(1) { transition-delay: .05s; }
.service-card:hover .service-card__list li:nth-child(2) { transition-delay: .1s; }
.service-card:hover .service-card__list li:nth-child(3) { transition-delay: .15s; }

/* CTA link with animated arrow */
.service-card:hover .service-card__link { color: var(--coral); }
.service-card:hover .service-card__link-text::after { width: 100%; }
.service-card:hover .service-card__arrow {
  background: var(--coral);
  color: var(--white);
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(255, 77, 58, .35);
}
.service-card:hover .service-card__arrow svg { transform: rotate(45deg); }

/* ---------- FEATURED CARD ---------- */
.service-card--featured:hover::before { opacity: 1; }
.service-card--featured:hover .service-card__num {
  -webkit-text-stroke: 1px rgba(255, 77, 58, .5);
}
.service-card--featured:hover .service-card__icon {
  background: linear-gradient(135deg, var(--coral), #FF8A5A);
  color: var(--white);
  box-shadow:
    0 20px 40px rgba(255, 77, 58, .45),
    0 0 0 6px rgba(255, 77, 58, .12);
}
.service-card--featured:hover .service-card__link { color: var(--coral); }
.service-card--featured:hover .service-card__arrow {
  background: var(--coral); color: var(--white);
}

/* Flagship badge pill */

/* ------------------ PROCESS (ANIMATED TIMELINE) ------------------ */
.process {
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.process__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.process__bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26, 95, 191, .12) 1.2px, transparent 1.6px);
  background-size: 28px 28px;
  opacity: .6;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 55%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 55%, black, transparent 75%);
}

.process__timeline {
  position: relative;
  padding: 20px 0 10px;
}

/* Connecting horizontal progress line (desktop) */
.process__line {
  position: absolute;
  top: 60px;              /* centered on 120px orb (60px radius) */
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  z-index: 0;
}
.process__line-track {
  position: absolute; inset: 0;
  background-image: linear-gradient(90deg, var(--line-2) 50%, transparent 50%);
  background-size: 12px 2px;
  opacity: .8;
}
.process__line-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--blue) 0%, #4C8AE0 50%, var(--coral) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(26, 95, 191, .3);
}
.process__timeline.is-animating .process__line-fill {
  animation: drawProcessLine 3.6s var(--ease-out) forwards;
}
@keyframes drawProcessLine {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 1;
}

.process__step {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

/* Circle visual */
.process__visual {
  position: relative;
  width: 120px; height: 120px;
  margin: 0 auto 28px;
  display: inline-flex; align-items: center; justify-content: center;
}

.process__orb {
  position: relative; z-index: 3;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue);
  box-shadow: 0 10px 30px rgba(15, 42, 74, .08);
  transform: scale(.4);
  opacity: 0;
  transition: all .7s var(--ease-out);
}
.process__orb svg {
  width: 34px; height: 34px;
  transform: scale(.5) rotate(-30deg);
  opacity: 0;
  transition: transform .5s var(--ease-out) .2s, opacity .5s var(--ease-out) .2s;
}

.process__badge {
  position: absolute; z-index: 4;
  bottom: 2px; right: 2px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: .04em;
  border: 3px solid var(--white);
  transform: scale(0);
  transition: transform .5s var(--ease-out) .35s;
}

/* Rotating dashed orbit */
.process__dashed {
  position: absolute; inset: -4px; z-index: 2;
  color: var(--blue);
  opacity: 0;
  transition: opacity .5s var(--ease);
  animation: rotateDashed 18s linear infinite;
}
.process__dashed svg { width: 100%; height: 100%; }

@keyframes rotateDashed {
  to { transform: rotate(360deg); }
}

/* Pulse rings */
.process__pulse {
  position: absolute; top: 50%; left: 50%;
  width: 90px; height: 90px; border-radius: 50%;
  border: 2px solid var(--coral);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* ---------- ACTIVE STATE (triggered sequentially) ---------- */
.process__step.is-active .process__orb {
  opacity: 1;
  transform: scale(1);
  background: linear-gradient(145deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow:
    0 20px 40px rgba(26, 95, 191, .35),
    0 0 0 6px rgba(26, 95, 191, .08);
}
.process__step.is-active .process__orb svg {
  transform: scale(1) rotate(0);
  opacity: 1;
}
.process__step.is-active .process__badge {
  transform: scale(1);
  background: var(--coral);
  box-shadow: var(--shadow-coral);
}
.process__step.is-active .process__dashed {
  opacity: .5;
}
.process__step.is-active .process__pulse {
  animation: pulseRing 2.2s var(--ease-out) infinite;
}
.process__step.is-active .process__pulse--2 {
  animation-delay: 1.1s;
}

@keyframes pulseRing {
  0%   { transform: translate(-50%, -50%) scale(.9); opacity: .7; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Body (title + copy + tags) */
.process__body {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.process__step.is-active .process__body {
  opacity: 1;
  transform: translateY(0);
}
.process__step h4 {
  font-size: 20px; margin-bottom: 10px; color: var(--navy);
}
.process__step p {
  color: var(--ink-3); font-size: 14.5px; margin: 0 0 18px;
  max-width: 260px; margin-left: auto; margin-right: auto;
}
.process__tags {
  display: inline-flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.process__tags li {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  color: var(--blue);
  padding: 4px 10px; border-radius: 999px;
  background: rgba(26, 95, 191, .08);
}

/* Hover extras */
.process__step:hover .process__orb {
  transform: scale(1.06);
  box-shadow:
    0 26px 50px rgba(26, 95, 191, .4),
    0 0 0 8px rgba(26, 95, 191, .08);
}
.process__step:hover .process__orb svg { transform: scale(1.1) rotate(-4deg); }
.process__step:hover .process__badge {
  transform: scale(1.1);
}

/* Mobile timeline overrides (vertical) are handled in responsive section */

/* ------------------ WORK / CASE STUDIES (ENHANCED) ------------------ */
.work {
  position: relative;
  background: var(--soft);
  overflow: hidden;
}
.work__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.work__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 42, 74, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 42, 74, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 60%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 60%, black 10%, transparent 80%);
}
/* Matches .industries::before — light outlined “360”, top-right (Case Studies hero) */
.work::before {
  content: "360";
  position: absolute;
  z-index: 1;
  font-family: var(--font-display);
  letter-spacing: -0.055em;
  color: #0000;
  -webkit-text-stroke: 1.05px #b2ccec8c;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  font-size: clamp(97px, 24vw, 198px);
  font-weight: 900;
  line-height: 1;
  top: clamp(-22px, 4vw, -21px);
  right: clamp(16px, 4vw, 48px);
  animation: watermark360Float 17s ease-in-out infinite;
  animation-delay: -2s;
}
.work .container { position: relative; z-index: 2; }

/* ---------- FILTER PILLS ---------- */
.work__filters {
  display: inline-flex; flex-wrap: wrap; gap: 8px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.work__filter {
  padding: 10px 18px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.work__filter em {
  font-style: normal; font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 999px;
  background: rgba(15, 42, 74, .06); color: var(--ink-3);
  letter-spacing: .04em;
  transition: all .3s var(--ease);
}
.work__filter:hover { color: var(--navy); background: var(--soft); }
.work__filter.is-active {
  background: var(--navy); color: var(--white);
}
.work__filter.is-active em {
  background: var(--coral); color: var(--white);
}

/* ---------- FEATURED CASE STUDY ---------- */
.work-feature {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 60px; align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 60px 60px 60px;
  margin-bottom: 60px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.work-feature__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 400px at 0% 0%, rgba(26, 95, 191, .35), transparent 60%),
    radial-gradient(600px 500px at 100% 100%, rgba(255, 77, 58, .22), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Content column */
.work-feature__content { position: relative; z-index: 1; max-width: 560px; }

.work-feature__header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.work-feature__logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: .08em;
  color: var(--white);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.work-feature__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 77, 58, .22);
  animation: pulseDot 1.8s var(--ease) infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 58, .45); }
  50% { box-shadow: 0 0 0 8px rgba(255, 77, 58, 0); }
}

.work-feature__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 22px;
}
.work-feature__tags span {
  font-size: 11px; letter-spacing: .08em; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .12);
  text-transform: uppercase;
}

.work-feature__title {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}
.work-feature__title .grad-coral {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: none;
}

.work-feature__desc {
  color: rgba(255, 255, 255, .72);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.work-feature__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 24px 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.work-feature__stats strong {
  display: block;
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--white); letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.work-feature__stats span {
  font-size: 11.5px; color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
}

.work-feature__quote {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  margin: 0 0 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.work-feature__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), #FF8A5A);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  flex-shrink: 0;
}
.work-feature__quote blockquote {
  margin: 0 0 6px;
  font-size: 14.5px; color: rgba(255, 255, 255, .92);
  line-height: 1.5; font-style: italic;
  font-weight: 500;
}
.work-feature__quote figcaption {
  font-size: 12px; color: rgba(255, 255, 255, .55);
  letter-spacing: .02em;
}

/* ---------- FEATURED VISUAL (BROWSER MOCKUP) ---------- */
.work-feature__visual {
  position: relative;
  height: 100%;
  min-height: 440px;
}

.browser-mockup {
  position: absolute; inset: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  animation: floatUp 6s ease-in-out infinite;
  display: flex; flex-direction: column;
  z-index: 1;
}
.browser-mockup__bar {
  height: 36px; flex-shrink: 0;
  background: #F5F7FA;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  padding: 0 14px;
}
.browser-mockup__dots { display: flex; gap: 6px; }
.browser-mockup__dots em {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.browser-mockup__dots em:nth-child(1) { background: #FF5F56; }
.browser-mockup__dots em:nth-child(2) { background: #FFBD2E; }
.browser-mockup__dots em:nth-child(3) { background: #27C93F; }
.browser-mockup__url {
  flex: 1;
  display: inline-flex; align-items: center; gap: 8px;
  justify-content: center;
  padding: 4px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px; color: var(--ink-3);
  font-family: "SF Mono", Consolas, monospace;
  max-width: 280px; margin: 0 auto;
}
.browser-mockup__url svg { color: #1FA763; }

.browser-mockup__body {
  flex: 1;
  display: grid; grid-template-columns: 54px 1fr;
  min-height: 0;
}
.browser-mockup__sidebar {
  background: var(--navy);
  padding: 14px 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.browser-mockup__logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
}
.browser-mockup__sidebar em {
  width: 24px; height: 3px; border-radius: 2px;
  background: rgba(255, 255, 255, .2);
  display: block;
}
.browser-mockup__sidebar em:nth-child(2) { background: rgba(255, 255, 255, .35); width: 30px; }

.browser-mockup__main {
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--white);
}
.browser-mockup__kpi {
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(26, 95, 191, .06), rgba(26, 95, 191, .02));
  border: 1px solid rgba(26, 95, 191, .12);
  border-radius: 10px;
}
.browser-mockup__kpi span {
  font-size: 10px; color: var(--ink-4); letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600;
  display: block; margin-bottom: 4px;
}
.browser-mockup__kpi strong {
  font-family: var(--font-display); font-size: 22px;
  color: var(--navy); font-weight: 700;
  letter-spacing: -.015em;
  display: inline-block; margin-right: 8px;
}
.browser-mockup__kpi em {
  font-style: normal; font-size: 11px; font-weight: 600;
  padding: 2px 6px; border-radius: 999px;
}
.browser-mockup__chart { flex: 1; min-height: 0; }
.browser-mockup__chart svg { width: 100%; height: 100%; }

.browser-mockup__bars {
  display: flex; align-items: flex-end; gap: 6px;
  height: 40px;
}
.browser-mockup__bars em {
  flex: 1;
  background: linear-gradient(180deg, var(--blue), #4C8AE0);
  border-radius: 3px 3px 0 0;
  animation: barGrow 1.4s var(--ease-out) forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}
.browser-mockup__bars em:nth-child(n+4) {
  background: linear-gradient(180deg, var(--coral), #FF8A5A);
}
.browser-mockup__bars em:nth-child(1) { animation-delay: .8s; }
.browser-mockup__bars em:nth-child(2) { animation-delay: .9s; }
.browser-mockup__bars em:nth-child(3) { animation-delay: 1.0s; }
.browser-mockup__bars em:nth-child(4) { animation-delay: 1.1s; }
.browser-mockup__bars em:nth-child(5) { animation-delay: 1.2s; }
.browser-mockup__bars em:nth-child(6) { animation-delay: 1.3s; }
.browser-mockup__bars em:nth-child(7) { animation-delay: 1.4s; }

/* Floating chips around the mockup */
.work-feature__chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  animation: floatUp 7s ease-in-out infinite;
}
.work-feature__chip em {
  display: block; font-style: normal;
  font-size: 10px; color: #000000;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 2px;
}
.work-feature__chip strong {
  display: block;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--navy); letter-spacing: -.01em;
}
.work-feature__chip--1 { top: -12px; left: -28px; animation-delay: .4s; }
.work-feature__chip--2 { top: 40%; right: -32px; animation-delay: .8s; }
.work-feature__chip--3 { bottom: -14px; left: 50px; animation-delay: 1.2s; }
.mini-icon--green {
  background: rgba(31, 167, 99, .12); color: #1FA763;
  border: 1px solid rgba(31, 167, 99, .25);
}

/* ---------- SUPPORTING GRID CARDS ---------- */
.work__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.work-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  display: flex; flex-direction: column;
}
.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(15, 42, 74, .15);
  border-color: transparent;
}

.work-card__media {
  position: relative; aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.work-card__media--photo {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.work-card__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.02);
}
.work-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 56, .08) 0%, rgba(10, 30, 56, .45) 100%);
}
.work-card__media--gradient-a { background: linear-gradient(135deg, #0F2A4A 0%, #1A5FBF 100%); }
.work-card__media--gradient-b { background: linear-gradient(135deg, #1A5FBF 0%, #0F2A4A 60%, #FF4D3A 130%); }
.work-card__media--gradient-c { background: linear-gradient(135deg, #0A1E38 0%, #1A5FBF 120%); }

.work-card__shape {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: .6;
  transition: transform .9s var(--ease), opacity .5s var(--ease);
}
.work-card__shape--a { width: 240px; height: 240px; background: #FF4D3A; top: -60px; right: -40px; }
.work-card__shape--b { width: 180px; height: 180px; background: #4C8AE0; bottom: -40px; left: -20px; opacity: .5; }
.work-card__shape--c { width: 260px; height: 260px; background: #FF4D3A; bottom: -80px; right: -40px; opacity: .55; }
.work-card__shape--d { width: 220px; height: 220px; background: #FF4D3A; top: -40px; left: -40px; opacity: .45; }
.work-card:hover .work-card__shape { transform: scale(1.2) translate(12px, -12px); opacity: .8; }

.work-card__brand {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 800;
  font-size: 38px; letter-spacing: .06em;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  transition: transform .5s var(--ease);
}
.work-card:hover .work-card__brand { transform: scale(1.05); }
.work-card__brand em { font-style: normal; color: var(--coral); }

.work-card__mini-chart {
  position: absolute; z-index: 1;
  bottom: 18px; right: 20px;
  width: 80px; height: 32px;
  opacity: .8;
}
.work-card__mini-chart svg { width: 100%; height: 100%; }

.work-card__body {
  padding: 26px 28px 28px;
  display: flex; flex-direction: column;
  flex: 1;
}
.work-card__top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.work-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.work-card__tags span {
  font-size: 11px; letter-spacing: .06em; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(26, 95, 191, .08); color: #000000;
  transition: all .3s var(--ease);
}
.work-card:hover .work-card__tags span:first-child {
  background: var(--coral); color: var(--white);
}
.work-card__year {
  font-size: 11px; font-weight: 700; color: #000000;
  padding: 5px 10px; border-radius: 999px;
  background: #e9eef5; letter-spacing: .04em;
  flex-shrink: 0;
}

.work-card__body h3 {
  font-size: 21px; margin-bottom: 10px; line-height: 1.25;
  transition: color .3s var(--ease);
}
.work-card:hover .work-card__body h3 { color: var(--navy); }
.work-card__body > p {
  color: var(--ink-3); font-size: 14.5px; margin: 0 0 20px;
  line-height: 1.55;
}

/* Hero stat callout */
.work-card__hero-stat {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(26, 95, 191, .06), rgba(26, 95, 191, .02));
  border: 1px solid rgba(26, 95, 191, .12);
  border-radius: 14px;
  margin-bottom: 18px;
  transition: all .4s var(--ease);
}
.work-card__hero-stat strong {
  font-family: var(--font-display); font-size: 30px; font-weight: 800;
  color: var(--blue); letter-spacing: -.025em; line-height: 1;
  transition: color .3s var(--ease);
}
.work-card__hero-stat span {
  font-size: 12.5px; color: var(--ink-3); font-weight: 500;
}
.work-card:hover .work-card__hero-stat {
  background: linear-gradient(135deg, rgba(255, 77, 58, .08), rgba(255, 77, 58, .02));
  border-color: rgba(255, 77, 58, .2);
}
.work-card:hover .work-card__hero-stat strong { color: var(--coral); }

.work-card__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding-top: 18px; border-top: 1px solid var(--line);
  margin-bottom: 22px;
}
.work-card__stats strong {
  display: block; font-family: var(--font-display); font-size: 18px;
  font-weight: 700; color: var(--navy); letter-spacing: -.01em;
  margin-bottom: 2px;
}
.work-card__stats span { font-size: 11px; color: #000000; letter-spacing: .02em; }

/* CTA link with arrow pill */
.work-card__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  margin-top: auto;
  position: relative;
  padding: 2px 0;
  align-self: flex-start;
}
.work-card__link::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px; background: var(--coral);
  transition: width .35s var(--ease);
}
.work-card__arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(26, 95, 191, .08); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .4s var(--ease);
}
.work-card:hover .work-card__link { color: var(--coral); }
.work-card:hover .work-card__link::after { width: calc(100% - 36px); }
.work-card:hover .work-card__arrow {
  background: var(--coral); color: var(--white);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(255, 77, 58, .35);
}

/* ------------------ DASHBOARD (Results — solid white canvas) ------------------ */
.dashboard {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--navy);
  background-color: #ffffff;
}
/* Same light outline “360” as industries/work — upper left (Results dashboard) */
.dashboard::before {
  content: "360";
  position: absolute;
  z-index: 1;
  font-family: var(--font-display);
  letter-spacing: -0.055em;
  color: #0000;
  -webkit-text-stroke: 1.05px #b2ccec8c;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  font-size: clamp(97px, 24vw, 198px);
  font-weight: 900;
  line-height: 1;
  top: clamp(-22px, 4vw, -21px);
  left: clamp(16px, 4vw, 48px);
  right: auto;
  animation: watermark360Float 16s ease-in-out infinite;
  animation-delay: -5s;
}
.dashboard .container {
  position: relative;
  z-index: 2;
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 8px 28px rgba(15, 42, 74, 0.06);
  transition:
    transform .35s var(--ease),
    border-color .35s var(--ease),
    box-shadow .35s var(--ease);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 95, 191, .22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .98) inset,
    0 20px 48px rgba(15, 42, 74, 0.12),
    0 0 0 1px rgba(26, 95, 191, .08);
}
.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card__label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 14px;
}
.stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1;
}
.stat-card__trend {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(26, 95, 191, 0.1);
  color: var(--blue);
}

.dashboard__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .92) inset,
    0 14px 40px rgba(15, 42, 74, 0.08);
  transition:
    transform .35s var(--ease),
    border-color .35s var(--ease),
    box-shadow .35s var(--ease);
}
.dashboard__panel:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 42, 74, .12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .96) inset,
    0 28px 64px rgba(15, 42, 74, 0.12),
    0 0 0 1px rgba(255, 77, 58, .1);
}
.dashboard__panel .glass-card__label {
  color: var(--ink-4);
}
.dashboard__panel .glass-card__title {
  color: var(--navy);
}
.dashboard__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.dashboard__toggles {
  display: inline-flex;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 999px;
}
.dashboard__toggles button {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: 999px;
  transition: all .3s var(--ease);
}
.dashboard__toggles button:hover {
  color: var(--navy);
}
.dashboard__toggles button.is-active {
  background: var(--coral);
  color: var(--white);
}

.dashboard__panel-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: stretch;
}
.dashboard__chart {
  background: var(--soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 8px 8px 0;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.dashboard__panel:hover .dashboard__chart {
  border-color: rgba(26, 95, 191, .2);
  box-shadow: 0 0 0 1px rgba(26, 95, 191, .06);
}
.dashboard__chart svg { width: 100%; height: 260px; }
.dashboard__chart svg line {
  stroke: rgba(229, 234, 242, 0.95);
  opacity: 1 !important;
}

.dashboard__side { display: flex; flex-direction: column; gap: 14px; }
.dashboard__side-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.dashboard__side-row:hover {
  background: #fff;
  border-color: rgba(26, 95, 191, .2);
  transform: translateX(2px);
}
.dashboard__side-row span {
  font-size: 13px;
  color: var(--ink-3);
}
.dashboard__side-row strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--navy);
}
.dashboard__side-row em {
  font-style: normal;
  font-size: 11px;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
}

.dashboard__side .btn--block { margin-top: auto; }

@media (prefers-reduced-motion: reduce) {
  .stat-card:hover,
  .dashboard__panel:hover,
  .dashboard__side-row:hover {
    transform: none;
  }
}

/* ============================================================
   ============ GOOGLE REVIEWS — TESTIMONIALS ==================
   ============================================================ */
.gr-section {
  background: #ffffff;
  position: relative;
}

/* Google color palette scoped to this section */
.gr-section {
  --g-blue: #1A73E8;
  --g-yellow: #FBBC04;
  --g-text: #1F1F1F;
  --g-text-2: #5F6368;
  --g-text-3: #80868B;
  --g-border: #DADCE0;
  --g-border-soft: #E8EAED;
  --g-surface: #FFFFFF;
  --g-hover: #F1F3F4;
}

/* Same light outline “360” as industries/work — upper right */
.gr-section::before {
  content: "360";
  position: absolute;
  z-index: 1;
  font-family: var(--font-display);
  letter-spacing: -0.055em;
  color: #0000;
  -webkit-text-stroke: 1.05px #b2ccec8c;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  font-size: clamp(97px, 24vw, 198px);
  font-weight: 900;
  line-height: 1;
  top: clamp(-22px, 4vw, -21px);
  right: clamp(16px, 4vw, 48px);
  animation: watermark360Float 18s ease-in-out infinite;
  animation-delay: -6s;
}
.gr-section .container {
  position: relative;
  z-index: 2;
}

/* -------- Google business summary header card -------- */
.gr-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(60,64,67,.06), 0 1px 3px rgba(60,64,67,.08);
  margin-top: 32px;
  flex-wrap: wrap;
}
.gr-summary__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.gr-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
}
.gr-summary__info { min-width: 0; }
.gr-summary__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--g-text);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.gr-verified { flex-shrink: 0; }
.gr-summary__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.gr-summary__score {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--g-text);
}
.gr-stars {
  display: inline-flex;
  gap: 1px;
}
.gr-stars svg { width: 18px; height: 18px; }
.gr-summary__count {
  font-size: 14px;
  color: var(--g-blue);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.gr-summary__count:hover { text-decoration: underline; }

.gr-summary__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  border-radius: var(--btn-radius);
  transition: all .2s var(--ease);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
}
.gr-btn--ghost {
  background: var(--g-surface);
  color: var(--g-blue);
  border-color: var(--g-border);
}
.gr-btn--ghost:hover {
  background: rgba(26,115,232,.04);
  border-color: rgba(26,115,232,.4);
}
.gr-btn--primary {
  background: var(--g-blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(60,64,67,.15);
}
.gr-btn--primary:hover {
  background: #1765CC;
  box-shadow: 0 2px 6px rgba(60,64,67,.2);
}

/* -------- Rating breakdown + filter bar -------- */
.gr-breakdown {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 24px;
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  margin-top: -12px;
  margin-bottom: 28px;
}
.gr-summary + .gr-breakdown { margin-top: -1px; border-top: 1px solid var(--g-border-soft); border-radius: 12px; }
.gr-breakdown__bars {
  display: grid;
  gap: 6px;
  max-width: 540px;
}
.gr-bar {
  display: grid;
  grid-template-columns: 12px 1fr 36px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--g-text-2);
}
.gr-bar__label {
  font-weight: 600;
  color: var(--g-text);
  text-align: right;
}
.gr-bar__track {
  display: block;
  width: 100%;
  height: 8px;
  background: var(--g-border-soft);
  border-radius: 999px;
  overflow: hidden;
}
.gr-bar__fill {
  display: block;
  width: var(--w, 0%);
  height: 100%;
  background: var(--g-yellow);
  border-radius: 999px;
  transform-origin: left center;
  animation: grBarGrow 1.1s var(--ease) both;
}
@keyframes grBarGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.gr-bar__count {
  font-size: 12px;
  color: var(--g-text-3);
  text-align: left;
}

.gr-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gr-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--g-text);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.gr-chip:hover { background: var(--g-hover); border-color: #BDC1C6; }
.gr-chip.is-active {
  background: #E8F0FE;
  border-color: #E8F0FE;
  color: var(--g-blue);
}

/* -------- Review cards grid -------- */
.gr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gr-card {
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-radius: 12px;
  padding: 22px 24px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.gr-card:hover {
  box-shadow: 0 4px 12px rgba(60,64,67,.12);
  border-color: #BDC1C6;
}

/* Header: avatar + name + menu */
.gr-card__head {
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.gr-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg, #4285F4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  flex-shrink: 0;
}
.gr-card__user { min-width: 0; }
.gr-card__name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--g-text);
  line-height: 1.3;
  letter-spacing: -0.005em;
  flex-wrap: wrap;
}
.gr-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: #E8F0FE;
  color: var(--g-blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}
.gr-card__sub {
  font-size: 12px;
  color: var(--g-text-3);
  margin-top: 2px;
}
.gr-card__menu {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--g-text-3);
  background: transparent;
  transition: background .2s var(--ease);
  cursor: pointer;
}
.gr-card__menu:hover { background: var(--g-hover); color: var(--g-text-2); }
.gr-card__menu svg { width: 18px; height: 18px; }

/* Rating + time */
.gr-card__rate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.gr-card__rate .gr-stars svg { width: 15px; height: 15px; }
.gr-card__time {
  font-size: 13px;
  color: var(--g-text-3);
}

/* Review body text */
.gr-card__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--g-text);
  margin: 0 0 14px;
  font-weight: 400;
}

/* Tag chips under review body */
.gr-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.gr-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--g-hover);
  color: var(--g-text-2);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .01em;
}

/* Action bar */
.gr-card__foot {
  display: flex;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--g-border-soft);
  margin: 0 -4px;
}
.gr-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: transparent;
  color: var(--g-text-2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
a.gr-action:hover { background: var(--g-hover); color: var(--g-text); }
.gr-action svg { width: 16px; height: 16px; flex-shrink: 0; }
.gr-action em {
  font-style: normal;
  color: var(--g-text-3);
  font-weight: 500;
}

/* Owner response panel */
.gr-response {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--g-hover);
  border-radius: 8px;
  border-left: 3px solid var(--g-blue);
}
.gr-response__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  margin-bottom: 4px;
}
.gr-response__head strong {
  color: var(--g-text);
  font-weight: 600;
}
.gr-response__head span { color: var(--g-text-3); }
.gr-response p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--g-text-2);
}

/* Filtering state — dim non-matching (actual filtering can be done in JS) */
.gr-grid.is-filtering .gr-card { opacity: .38; transition: opacity .3s var(--ease); }
.gr-grid.is-filtering .gr-card.is-match { opacity: 1; }

/* Load more footer */
.gr-more {
  margin-top: 30px;
  text-align: center;
}
.gr-more__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #ff4d3a;
  border: 1px solid var(--g-border);
  border-radius: var(--btn-radius);
  color:#ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s var(--ease);
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
}
.gr-more__link:hover {
 background: var(--coral-2);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(255, 77, 58, .5);
}
.gr-more__note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--g-text-3);
}
.gr-more__note a { color: var(--g-blue); text-decoration: none; }
.gr-more__note a:hover { text-decoration: underline; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .gr-bar__fill { animation: none; }
}

/* Responsive */
@media (max-width: 1024px) {
  .gr-grid { grid-template-columns: repeat(2, 1fr); }
  .gr-breakdown { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 640px) {
  .gr-grid { grid-template-columns: 1fr; }
  .gr-summary { padding: 18px; gap: 16px; }
  .gr-summary__brand { gap: 14px; }
  .gr-g { width: 48px; height: 48px; }
  .gr-g svg { width: 30px; height: 30px; }
  .gr-summary__title { font-size: 17px; }
  .gr-summary__score { font-size: 18px; }
  .gr-summary__actions { width: 100%; }
  .gr-btn { flex: 1; justify-content: center; }
  .gr-breakdown { padding: 18px; }
  .gr-card { padding: 18px; }
  .gr-card__head { grid-template-columns: 36px 1fr 28px; gap: 12px; }
  .gr-avatar { width: 36px; height: 36px; font-size: 13px; }
}

/* ------------------ PRICING ------------------ */
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card--featured:hover { transform: translateY(-16px); }

/* ------------------ CTA BANNER ------------------ */

/* ------------------ CONTACT — TGM-style booking card ------------------ */
.contact { background: #f0f3f8; }
.contact__strip {
  max-width: 1080px;
  margin: 0 auto;
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.02fr);
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, .8) inset;
  overflow: hidden;
}

.contact__panel-aside {
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.contact__brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(15, 42, 74, .08);
}

.contact__brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact__brand-line {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-3);
}

.contact__duration {
  margin: 12px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
}

.contact__duration svg {
  flex-shrink: 0;
  color: var(--ink-4);
}

.contact__session-lede {
  margin-bottom: 20px !important;
  color: var(--ink-3);
}

.contact__bullets--compact {
  margin: 0 0 28px;
}

.contact__panel-aside .section__title {
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.024em;
  line-height: 1.15;
}

.contact__privacy {
  margin-top: auto;
  padding-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
}

.contact__privacy:hover {
  color: var(--coral-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__copy h2 { font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 6px; }
.contact__bullets { margin: 0; display: grid; gap: 12px; }
.contact__bullets li {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-2); font-size: 15px;
}
.contact__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(26, 95, 191, .1); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg { width: 14px; height: 14px; }
.contact__meta a:hover { color: var(--blue); }

.contact__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 22px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.contact__socials-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
}
.contact__socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #f3f7fd;
  border: 1px solid rgba(15, 42, 74, .08);
  transition: color .22s var(--ease), background-color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.contact__social:hover,
.contact__social:focus-visible {
  color: #fff;
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
  outline: none;
}
.contact__social:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 77, 58, .25);
}

.contact__form {
  padding: clamp(26px, 3vw, 40px);
  position: relative;
  background: var(--white);
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.contact__booking-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact__booking-head--stack {
  align-items: flex-start;
}

.contact__progress {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
}

.contact__progress-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-4);
}

.contact__progress-item.is-active {
  background: var(--peach-soft);
  color: var(--coral);
}

.contact__progress-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15, 42, 74, .08);
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: var(--font-display);
}

.contact__progress-item.is-active .contact__progress-num {
  background: var(--coral);
  color: var(--white);
}

.contact__step-footer {
  margin-top: 22px;
  padding-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.contact__step-footer .btn--primary {
  min-width: 200px;
  justify-content: center;
}

.contact__step-footer--split {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact__btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  font-weight: 600;
}

.contact__privacy-inline {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--ink-4);
  text-align: center;
}

.contact__privacy-inline a {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: rgba(255, 77, 58, .35);
  text-underline-offset: 3px;
}

.contact__booking-title {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
}

.contact__secure--floating {
  flex-shrink: 0;
}

/* Timezone row: avoid double contact__form select chrome */

.contact__form .contact__tz-inner select:focus {
  box-shadow: none !important;
}

.contact__cal {
  margin-bottom: 20px;
}

.contact__cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.contact__cal-month {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}

.contact__cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ink-4);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.contact__cal-nav-btn:disabled {
  opacity: .35;
  cursor: default;
}

.contact__cal-nav-btn--accent:not(:disabled) {
  background: var(--peach-soft);
  color: var(--coral);
}

.contact__cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.contact__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px 4px;
}

.contact__cal-pad {
  min-height: 36px;
}

.contact__cal-day {
  position: relative;
  min-height: 36px;
  width: 100%;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  cursor: pointer;
}

.contact__cal-day--muted {
  color: var(--ink-4);
  opacity: .65;
}

.contact__cal-day--pick {
  background: var(--peach-soft);
  color: var(--coral);
}

.contact__cal-day--dot:not(.is-selected)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-4);
  opacity: .55;
}

.contact__cal-day.is-selected {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 16px var(--peach-ring);
}

.contact__cal-day.is-selected.contact__cal-day--dot::after {
  background: rgba(255, 255, 255, .85);
  opacity: 1;
}

.contact__cal-day:hover:not(.is-selected) {
  background: rgba(26, 95, 191, .08);
  color: var(--navy);
}

.contact__cal-day:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.contact__cal-day:disabled {
  cursor: default;
  pointer-events: none;
}

.contact__time-field {
  margin-bottom: 18px;
}

.contact__secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-4);
}
.contact__secure svg { color: var(--blue); flex-shrink: 0; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.contact__form label {
  display: block;
}
.form-field { margin-bottom: 16px; }
.form-field__optional {
  display: inline;
  margin-left: 4px;
  font-weight: 500;
  color: var(--ink-4);
  text-transform: none;
  letter-spacing: 0;
}

.contact__form label > span {
  display: block; font-size: 12px; font-weight: 600; color: var(--ink-2);
  letter-spacing: .06em; margin-bottom: 8px; text-transform: uppercase;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  color: var(--navy);
  font-size: 15px;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 95, 191, .12);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px;
  background: var(--soft); border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  cursor: pointer; transition: all .25s var(--ease);
}
.chip input { display: none; }
.chip:hover { border-color: var(--line-2); background: var(--white); }
.chip:has(input:checked) {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

.contact__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 28px 52px;
  min-height: 220px;
  justify-content: center;
}
.contact__success:not([hidden]) {
  display: flex;
}
.contact__success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(86, 214, 141, .14); color: #56D68D;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact__success h3 { margin-bottom: 8px; font-size: 22px; }
.contact__success p { color: var(--ink-3); margin: 0; }

/* ============================================================
   FOOTER — Light gray, premium, unique
   - Soft #F2F4F8 backdrop + gradient top accent bar
   - Large decorative "360" watermark
   - Newsletter: premium boxed card + modern email row
   - Brand card w/ "accepting new clients" status chip
   - Squircle social icons with rotate-on-hover
   - Column headings with coral marker
   - Animated underline links
   - "Made in UK" pill with real Union Jack SVG
   ============================================================ */
.footer {
  --f-bg:      #f2f4f8;
  --f-surface: #FFFFFF;
  --f-ink:     #0F2A4A;
  --f-ink-2:   #5A6A80;
  --f-ink-3:   #8E99AC;
  --f-line:    rgba(15, 42, 74, .08);

  background: var(--f-bg);
  color: var(--f-ink-2);
  position: relative;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

/* Gradient top accent bar */
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral) 30%, var(--blue) 70%, var(--blue) 100%);
  z-index: 3;
}

/* Decorative "360" watermark */
.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.footer__watermark {
  position: absolute;
  bottom:  38px;
  right: -70px;
  font-family: var(--font-display);
  font-size: clamp(242px, 34vw, 203px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(15, 42, 74, .05);
  user-select: none;
  white-space: nowrap;
}

/* ----- Newsletter / CTA — luxury boxed card ----- */
.footer__newsletter-shell {
  padding: 64px 0 24px;
  position: relative;
  z-index: 2;
}

.footer__newsletter-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px) clamp(24px, 3.5vw, 44px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .97) 0%, rgba(245, 248, 252, .98) 48%, rgba(236, 242, 250, .95) 100%);
  border: 1px solid rgba(26, 95, 191, .14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .85) inset,
    0 4px 20px rgba(15, 42, 74, .05),
    0 28px 56px -32px rgba(15, 42, 74, .14);
  overflow: hidden;
}

.footer__newsletter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 95, 191, .22), transparent);
  pointer-events: none;
}

.footer__newsletter-card::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -55%;
  right: -18%;
  background: radial-gradient(circle at center, rgba(26, 95, 191, .08) 0%, transparent 68%);
  pointer-events: none;
}

.footer__cta {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: end;
  padding: 0;
  position: relative;
  z-index: 1;
}

.footer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.footer__eyebrow-line {
  width: 24px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}

.footer__cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--f-ink);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  max-width: 520px;
}
.footer__cta-copy p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--f-ink-2);
  max-width: 480px;
  margin: 0;
}

/* Newsletter form */
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.footer__form-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.footer__input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  padding: 4px 4px 4px 18px;
  background: var(--f-surface);
  border: 1px solid rgba(15, 42, 74, .1);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 6px 20px rgba(15, 42, 74, .04);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.footer__input-wrap:focus-within {
  border-color: rgba(26, 95, 191, .45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .95) inset,
    0 0 0 3px rgba(26, 95, 191, .12),
    0 12px 28px rgba(26, 95, 191, .1);
  transform: translateY(-1px);
}

.footer__form-icon {
  color: var(--blue);
  flex: none;
  opacity: .85;
}

.footer__input-wrap input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--f-ink);
  padding: 14px 12px 14px 0;
  letter-spacing: -0.01em;
}

.footer__input-wrap input::placeholder {
  color: var(--f-ink-3);
  font-weight: 400;
}

.footer__form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #FF4D3A 0%, #E63B2A 55%, #FF6A5A 100%);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .2);
  white-space: nowrap;
  transition:
    transform .35s var(--ease-out),
    box-shadow .35s var(--ease-out),
    filter .35s var(--ease-out);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .25) inset,
    0 10px 28px rgba(255, 77, 58, .32);
}

.footer__form-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .3) inset,
    0 16px 36px rgba(255, 77, 58, .42);
}

.footer__form-btn:active {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .2) inset,
    0 8px 20px rgba(255, 77, 58, .28);
}

.footer__form-btn svg {
  transition: transform .35s var(--ease-out);
  flex-shrink: 0;
}

.footer__form-btn:hover svg {
  transform: translateX(4px);
}

.footer__form-note {
  font-size: 12px;
  color: var(--f-ink-3);
  padding-left: 2px;
  letter-spacing: 0;
  line-height: 1.45;
}

/* ----- Main grid ----- */
.footer__inner {
  display: grid;
  grid-template-columns: 1.25fr 2.1fr;
  gap: 80px;
  padding: 60px 0 56px;
  border-top: 1px solid var(--f-line);
  position: relative;
  z-index: 2;
}

/* Brand column */
.footer__brand { max-width: 360px; }
.footer__logo {
  height: 44px;
  width: auto;
  display: block;
  filter: none;
}
.footer__tagline {
  margin: 20px 0 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--f-ink-2);
}

.footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.footer__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: var(--f-surface);
  border: 1px solid var(--f-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--f-ink);
  letter-spacing: 0;
  box-shadow: 0 4px 14px rgba(15, 42, 74, .04);
}
.footer__chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 3px rgba(43, 182, 115, .18);
  animation: footerPulse 2s var(--ease) infinite;
}
@keyframes footerPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(43, 182, 115, .18); }
  50%      { box-shadow: 0 0 0 6px rgba(43, 182, 115, .06); }
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--f-surface);
  border: 1px solid var(--f-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--f-ink);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 4px 12px rgba(15, 42, 74, .04);
}
.footer__socials a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 14px 26px rgba(255, 77, 58, .3);
}

/* Columns */
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer__col h3 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--f-ink);
  margin: 0 0 15px;
  padding-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.footer__col h3::before {
  content: "";
  width: 14px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  display: inline-block;
}
.footer__col ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.footer__col li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--f-ink-2);
}
.footer__col a {
  color: var(--f-ink-2);
  display: inline-block;
  position: relative;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer__col a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--coral);
  transition: width .25s var(--ease);
}
.footer__col a:hover {
  color: var(--f-ink);
  transform: translateX(3px);
}
.footer__col a:hover::after { width: 100%; }

/* Contact column with labels */
.footer__contact li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 13.5px;
  color: var(--f-ink);
}
.footer__contact-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #000000;
}
.footer__contact a { color: var(--f-ink); }
.footer__contact a:hover { color: var(--coral); }

/* ----- Bottom bar ----- */
.footer__bottom {
  border-top: 1px solid var(--f-line);
  padding: 22px 0;
  font-size: 13px;
  color: var(--f-ink-3);
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .35);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__bottom-left p {
  margin: 0;
  color: var(--f-ink-2);
}

.footer__made {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: var(--f-surface);
  border: 1px solid var(--f-line);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--f-ink);
  letter-spacing: .01em;
  box-shadow: 0 3px 10px rgba(15, 42, 74, .04);
}
.footer__flag {
  display: inline-block;
  border-radius: 2px;
  overflow: hidden;
  flex: none;
}

.footer__legal {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__legal a {
  color: var(--f-ink-3);
  font-size: 13px;
  transition: color .25s var(--ease);
}
.footer__legal a:hover { color: var(--f-ink); }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .footer__newsletter-shell { padding: 52px 0 20px; }
  .footer__cta {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 0;
  }
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 40px;
  }
  .footer__watermark { font-size: 280px; bottom: -50px; right: -40px; }
}

@media (max-width: 640px) {
  .footer__newsletter-shell { padding: 44px 0 16px; }
  .footer__newsletter-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }
  .footer__form-row {
    flex-direction: column;
    gap: 12px;
  }
  .footer__input-wrap {
    padding: 4px 4px 4px 14px;
  }
  .footer__input-wrap input {
    padding: 12px 10px 12px 0;
  }
  .footer__form-btn {
    width: 100%;
    padding: 15px 20px;
  }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer__legal { flex-wrap: wrap; gap: 14px 18px; }
  .footer__watermark { font-size: 220px; }
}

@media (max-width: 460px) {
  .footer__cols { grid-template-columns: 1fr; }
  .footer__contact li { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .footer__chip-dot { animation: none !important; }
  .footer__socials a,
  .footer__form-btn,
  .footer__input-wrap,
  .footer__col a { transition: none !important; }
  .footer__form-btn:hover,
  .footer__input-wrap:focus-within { transform: none !important; }
  .footer__form-btn:hover svg { transform: none !important; }
}

/* ------------------ LIVE CHAT (floating — brand: navy / coral / blue) ------------------ */

.livechat__fab:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 24px 48px rgba(255, 77, 58, .4);
}

.livechat__fab:active {
  transform: translateY(-1px);
}

.livechat.is-open .livechat__fab {
  background: var(--navy);
  box-shadow: var(--shadow-blue);
}

.livechat.is-open .livechat__fab-pulse {
  animation: none;
  opacity: 0;
}

.livechat__close:hover {
  background: rgba(255, 255, 255, .22);
}

.livechat__cta:hover {
  background: var(--coral-2);
  color: var(--white);
  transform: translateY(-1px);
}

.livechat__link:hover {
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  .livechat__fab:hover,
  .livechat__cta:hover {
    transform: none;
  }
}

/* ------------------ BACK TO TOP ------------------ */
.to-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 90;
  width: 46px; height: 46px; border-radius: var(--btn-radius);
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--coral); }

@media (max-width: 520px) {
  .to-top {
    bottom: 88px;
    right: 16px;
  }
}

/* ------------------ REVEAL ANIMATION ------------------ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cta-final__360 {
    transform: translate(-50%, -50%) !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
  h1 {
    font-size: 32px !important;
    line-height: 1.12 !important;
  }
  h2 {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }
  h3 {
    font-size: 20px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { height: 440px; max-width: 520px; }
  
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .work-feature { grid-template-columns: 1fr; gap: 40px; padding: 48px 40px; }
  .work-feature__visual { min-height: 380px; }
  .work-feature__stats { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .process__line { display: none; }
  .dashboard__stats { grid-template-columns: repeat(2, 1fr); }
  .dashboard__panel-body { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 50px; }
  .contact__panel { grid-template-columns: 1fr; gap: 0; }
  .contact__panel-aside { border-right: none; border-bottom: 1px solid var(--line); }
  .price-card--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 820px) {
  .announcement { display: none; }

  .section { padding: 64px 0; }
  .section__head { margin-bottom: 50px; }
  .section__head--split { flex-direction: column; align-items: flex-start; }

  .nav__menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 24px 28px; box-shadow: var(--shadow-lg);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: all .3s var(--ease);
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__menu > ul { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav__dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid rgba(26, 95, 191, .16);
    border-radius: 0;
    padding: 6px 0 8px 12px;
    margin: 6px 0 0 2px;
    min-width: auto;
    background: transparent;
  }
  .nav__dropdown-panel a {
    padding: 10px 12px;
  }
  .nav__dropdown-panel a:hover,
  .nav__dropdown-panel a:focus-visible {
    box-shadow: inset 3px 0 0 var(--coral);
  }
  .nav__dropdown-panel a[aria-current="page"] {
    box-shadow: inset 3px 0 0 var(--blue);
  }
  .nav__dropdown-sublist {
    margin-left: 10px;
    padding-left: 10px;
  }
  .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }

  .hero { padding: 60px 0 60px; }
  .hero__inner { padding: 20px 28px 40px; }
  .hero__meta { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero__meta-stat strong { font-size: 22px; }
  .hero__visual { height: auto; display: none; }

  
  .work__grid,
  .process__steps,
  .dashboard__stats { grid-template-columns: 1fr; }

  .work-feature { padding: 36px 26px; border-radius: var(--radius-lg); }
  .work-feature__stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .work-feature__visual { min-height: 340px; }
  .work-feature__chip--1 { left: -12px; top: -14px; }
  .work-feature__chip--2 { right: -12px; }
  .work-feature__chip--3 { left: 20px; bottom: -14px; }
  .work__filters { overflow-x: auto; flex-wrap: nowrap; width: 100%; }
  .work__filter { flex-shrink: 0; }

  /* Vertical mobile timeline with left-edge progress line */
  .process__timeline { padding-left: 60px; }
  .process__line {
    display: block;
    top: 30px; bottom: 30px;
    left: 60px; right: auto;
    width: 2px; height: auto;
  }
  .process__line-track {
    background-image: linear-gradient(180deg, var(--line-2) 50%, transparent 50%);
    background-size: 2px 12px;
  }
  .process__line-fill {
    background: linear-gradient(180deg, var(--blue) 0%, #4C8AE0 50%, var(--coral) 100%);
    transform: scaleY(0); transform-origin: top center;
  }
  .process__timeline.is-animating .process__line-fill {
    animation: drawProcessLineV 3.6s var(--ease-out) forwards;
  }
  @keyframes drawProcessLineV {
    to { transform: scaleY(1); }
  }
  .process__steps { gap: 40px; }
  .process__step {
    text-align: left;
    padding: 0;
    display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center;
    margin-left: -60px;
  }
  .process__visual { margin: 0; }
  .process__body { text-align: left; }
  .process__step p { margin-left: 0; margin-right: 0; }
  .process__tags { justify-content: flex-start; }

  .dashboard__panel { padding: 22px; }
  .dashboard__panel-head { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .announcement__inner p { font-size: 12px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .hero__title { font-size: 32px; }
  .hero__subtitle { font-size: 16px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .contact__form { padding: 26px 22px; }
  .contact__step-footer--split {
    flex-direction: column;
    align-items: stretch;
  }
  .contact__step-footer .btn {
    justify-content: center;
    width: 100%;
  }
  .contact__progress {
    gap: 8px;
  }
  .contact__progress-label {
    font-size: 11px;
  }
  .footer__cols { grid-template-columns: 1fr; }
}

/* ============================================================
   ============ V2 ADDITIONS — NEW CONTENT-DRIVEN SECTIONS ======
   ============================================================ */

/* ---------- HERO V2: micro copy + stats row ---------- */
.hero__micro {
  font-size: 13px;
  color: var(--ink-4);
  margin: -18px 0 32px;
  max-width: 480px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 560px;
}
.hero__stat strong:not(.hero__stat-value) {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #1A5FBF 0%, #0F2A4A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__stat:nth-child(2) strong:not(.hero__stat-value) {
  background: linear-gradient(135deg, #FF4D3A 0%, #FF8A5A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__stat span {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.35;
  display: block;
}

/* ---------- AI SECTION (showcase) ---------- */
.ai-sec {
  background: #000;
  color: var(--white);
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
/* Flat black vignette above photo stack */
.ai-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.2);
}
.ai-sec .container {
  position: relative;
  z-index: 3;
}
.ai-sec__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* Stock photo + black wash over image for legible type */
.ai-sec__photo {
  position: absolute;
  inset: 0;
  background-color: #000;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.72)
    ),
    url("/assets/images/ai-section-meeting-bg.png");
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
}
.ai-sec__noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
/* Colour-wash decoration removed — keep section photo + flat overlays only */
.ai-sec__beam,
.ai-sec__aurora,
.ai-sec__bokeh,
.ai-sec__glow--coral,
.ai-sec__glow--blue {
  display: none;
}

/* 1) Top block — center aligned (kicker, eyebrow, H2, pills only) */
.ai-sec__intro {
  position: relative;
  z-index: 2;
  margin-bottom: 52px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.ai-sec__intro .eyebrow {
  margin-bottom: 14px;
}
.ai-sec__intro-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  margin-bottom: 14px;
  text-align: center;
}
.ai-sec__intro-line .eyebrow {
  margin-bottom: 0;
  width: auto;
  flex-shrink: 0;
}
.ai-sec__intro .section__title--light {
  text-shadow: 0 4px 48px rgba(0, 0, 0, .25);
}
.ai-sec__pills li:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 95, 191, .45);
  background: rgba(26, 95, 191, .12);
  color: #ffffff;
}
.ai-sec__lede--in-intro {
  margin: 22px auto 0;
  max-width: 820px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  text-align: center;
}

/* Copy left · counters right — equal width & equal column height */
.ai-sec__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: stretch;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.ai-sec__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  height: 100%;
  justify-content: flex-start;
}
.ai-sec__para {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.75;
  margin: 0;
  padding: 20px 22px 20px 24px;
  border-left: 3px solid rgba(255, 77, 58, .55);
  background: rgba(255, 77, 58, .06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.ai-sec__para strong { color: #ffffff; font-weight: 600; }

.ai-sec__cta {
  margin-top: 56px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
}
.ai-sec__cta p {
  font-size: 19px;
  color: #ffffff;
  max-width: 720px;
  margin: 0 auto 22px;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .ai-sec__beam,
  .ai-sec__glow--coral,
  .ai-sec__glow--blue,
  .ai-sec__aurora,
  .ai-sec__bokeh,
  .ai-stats__ambient--1,
  .ai-stats__ambient--2,
  .ai-stat::after,
  .ai-stat__value::after {
    animation: none !important;
  }
  .ai-sec__aurora { opacity: .45; }
  .ai-sec__bokeh { opacity: .28; transform: none; }
  .ai-stats__ambient--1,
  .ai-stats__ambient--2 { opacity: .38; transform: none; }
  .ai-stat::after { opacity: .55; transform: none; }
}

.ai-stats {
  position: relative;
  z-index: 2;
}
/* Column-level glow orbs (Itzone-style animated backdrop behind counters) */
.ai-stats__ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(48px);
  opacity: .55;
}
.ai-stats__ambient--1 {
  width: min(280px, 72vw);
  height: min(280px, 72vw);
  top: -6%;
  right: -12%;
  background: radial-gradient(circle, rgba(26, 95, 191, .45) 0%, transparent 68%);
  animation: aiStatsAmbientDrift 14s ease-in-out infinite;
}
.ai-stats__ambient--2 {
  width: min(240px, 65vw);
  height: min(240px, 65vw);
  bottom: 8%;
  left: -18%;
  background: radial-gradient(circle, rgba(255, 77, 58, .32) 0%, transparent 70%);
  animation: aiStatsAmbientDrift 18s ease-in-out infinite reverse;
  animation-delay: -4s;
}
@keyframes aiStatsAmbientDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .45; }
  50%      { transform: translate(-4%, 6%) scale(1.12); opacity: .62; }
}
.ai-stats--stack {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-height: 100%;
}
.ai-stats--stack .ai-stat {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px;
}
.ai-stat__metric {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.ai-stat__metric .ai-stat__icon {
  margin-bottom: 0;
}
.ai-stat__metric .ai-stat__value {
  margin-bottom: 0;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 1;
}
.ai-stats--stack .ai-stat__metric {
  margin-bottom: 12px;
  gap: 12px;
}
.ai-stats--stack .ai-stat__metric .ai-stat__value {
  font-size: clamp(28px, 5.5vw, 42px);
}
.ai-stats--stack .ai-stat p {
  margin-top: 0;
  flex-grow: 0;
  font-size: 13px;
  color: var(--ink-3);
}
.ai-stat {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden;
}
/* Inner wash + orb (template-style motion behind each stat) */
.ai-stat::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 120%;
  left: -22%;
  top: -10%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  background: radial-gradient(ellipse 55% 50% at 18% 42%, rgba(26, 95, 191, .28) 0%, transparent 58%);
  animation: aiStatOrbFloat 9s ease-in-out infinite;
}
.ai-stats--stack > .ai-stat:last-of-type::after {
  animation-delay: -2s;
  background: radial-gradient(ellipse 55% 50% at 78% 38%, rgba(255, 255, 255, .12) 0%, rgba(26, 95, 191, .14) 45%, transparent 62%);
}
.ai-stats--stack .ai-stat.ai-stat--featured::after {
  background: radial-gradient(ellipse 58% 52% at 72% 35%, rgba(255, 77, 58, .32) 0%, transparent 60%);
  animation-duration: 11s;
  animation-delay: -3.5s;
}
@keyframes aiStatOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: .75; }
  33%      { transform: translate(4%, -3%) scale(1.06) rotate(2deg); opacity: 1; }
  66%      { transform: translate(-3%, 4%) scale(1.02) rotate(-1.5deg); opacity: .82; }
}
.ai-stat > * {
  position: relative;
  z-index: 1;
}
.ai-stat::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(26, 95, 191, .8), transparent);
  opacity: 0; transition: opacity .4s var(--ease);
  z-index: 2;
}
.ai-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 95, 191, .4);
  background: rgba(26, 95, 191, .08);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .22), 0 0 0 1px rgba(26, 95, 191, .12);
}
.ai-stat:hover::before { opacity: 1; }
.ai-stat--featured {
  background: linear-gradient(135deg, rgba(255, 77, 58, .18) 0%, rgba(255, 77, 58, .04) 100%);
  border-color: rgba(255, 77, 58, .35);
}
.ai-stat--featured::before {
  background: linear-gradient(90deg, transparent, rgba(255, 77, 58, .9), transparent);
  opacity: 1;
}
.ai-stat--featured:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, .22), 0 0 48px rgba(255, 77, 58, .12);
}

/* AI section — full white stat cards (icon + number + copy in one box) */
.ai-stats--stack .ai-stat {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 10px 32px rgba(15, 42, 74, 0.1),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}
.ai-stats--stack .ai-stat::after {
  display: none;
}
.ai-stats--stack .ai-stat--featured {
  background: #ffffff;
  border-color: rgba(255, 77, 58, 0.32);
  box-shadow:
    0 10px 32px rgba(255, 77, 58, 0.12),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}
.ai-stats--stack .ai-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 95, 191, .4);
  background: rgba(26, 95, 191, .08);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .22), 0 0 0 1px rgba(26, 95, 191, .12);
}
.ai-stats--stack .ai-stat--featured:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, .22), 0 0 48px rgba(255, 77, 58, .12);
}

/* Hover: invert copy + counters to white (overrides brand / nth-child value colors) */
.ai-stats--stack .ai-stat:hover .ai-stat__title,
.ai-stats--stack .ai-stat:hover p {
  color: #ffffff;
}
.ai-stats--stack > .ai-stat:nth-child(3):hover .ai-stat__value,
.ai-stats--stack > .ai-stat:nth-child(5):hover .ai-stat__value,
.ai-stats--stack .ai-stat--featured:hover .ai-stat__value {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}
.ai-stats--stack .ai-stat:hover .ai-stat__icon {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

/* Stat icons — unique mark per metric */
.ai-stat__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--btn-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), color .25s var(--ease);
}
.ai-stat__icon svg {
  display: block;
}
.ai-stat__icon--traffic {
  background: rgba(26, 95, 191, .22);
  border: 1px solid rgba(26, 95, 191, .4);
  color: #B8D4F5;
}
.ai-stat__icon--conversion {
  background: rgba(255, 77, 58, .2);
  border: 1px solid rgba(255, 77, 58, .45);
  color: #FFC9C0;
}
.ai-stat__icon--overview {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .88);
}
.ai-stat:hover .ai-stat__icon {
  transform: scale(1.05);
}
.ai-stat--featured:hover .ai-stat__icon--conversion {
  border-color: rgba(255, 77, 58, .6);
}
.ai-stats--stack .ai-stat--featured:hover .ai-stat__icon--conversion {
  border-color: rgba(255, 255, 255, 0.42);
}
.ai-stats--stack .ai-stat__icon--traffic {
  background: rgba(26, 95, 191, 0.12);
  border-color: rgba(26, 95, 191, 0.35);
  color: var(--blue);
}
.ai-stats--stack .ai-stat__icon--conversion {
  background: rgba(255, 77, 58, 0.12);
  border-color: rgba(255, 77, 58, 0.4);
  color: var(--coral);
}
.ai-stats--stack .ai-stat__icon--overview {
  background: rgba(15, 42, 74, 0.06);
  border-color: rgba(15, 42, 74, 0.18);
  color: var(--navy);
}

/* Number + brand ink (no separate chip — card is white) */
.ai-stat__value {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  -webkit-text-fill-color: var(--navy);
  border: none;
  box-shadow: none;
}
.ai-stat__value::after {
  display: none;
}
.ai-stats--stack > .ai-stat:nth-child(3) .ai-stat__value {
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}
.ai-stats--stack > .ai-stat:nth-child(5) .ai-stat__value {
  color: var(--navy);
  -webkit-text-fill-color: var(--navy);
}
.ai-stat--featured .ai-stat__value {
  color: var(--coral);
  -webkit-text-fill-color: var(--coral);
}
.ai-stat p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- PRINCIPLES ---------- */
.principles { background: var(--soft); }
.principle {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.principle::before {
  content: ""; position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 95, 191, .05) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.principle:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.principle:hover::before { opacity: 1; }
.principle:hover .principle__icon { transform: rotate(-4deg) scale(1.05); }
.principle h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.principle p {
  font-size: 14px; color: var(--ink-3);
  line-height: 1.6; margin: 0 0 16px;
}

/* ---------- SERVICES EDITORIAL (sticky sidebar) ---------- */
.services-editorial {
  background: var(--white);
  padding: 80px 0;
  position: relative;
}
/* “360” watermark — centered on seam with Principles; half in each section */
.services-editorial::before {
  content: "360";
  position: absolute;
  left: clamp(8px, 4vw, 48px);
  top: 0;
  z-index: 1;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(75px, 15vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  color: transparent;
  -webkit-text-stroke: 0.95px rgba(160, 187, 226, 0.45);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.services-editorial__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  clip-path: inset(0);
  z-index: 0;
}
.services-editorial__watermark {
  position: absolute;
  top: 50%; right: -6%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(260px, 40vw, 540px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 42, 74, .05);
  line-height: 1;
  letter-spacing: -0.04em;
}

.services-editorial__container {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.svc-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-right: 10px;
}
.svc-sidebar__title {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.svc-nav { display: flex; flex-direction: column; gap: 4px; }
.svc-nav__item {
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 13px 16px 13px 14px;
  border-radius: 10px;
  text-align: left;
  color: var(--ink-3);
  transition: all .3s var(--ease);
  position: relative;
}
.svc-nav__item::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--coral);
  border-radius: 0 3px 3px 0;
  transition: height .3s var(--ease);
}
.svc-nav__n {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}
.svc-nav__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .3s var(--ease);
}
.svc-nav__arrow {
  font-size: 14px;
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  color: var(--coral);
}
.svc-nav__item:hover { background: var(--soft); }
.svc-nav__item:hover .svc-nav__name { color: var(--navy); }
.svc-nav__item.is-active {
  background: linear-gradient(90deg, rgba(255, 77, 58, .06), transparent);
}
.svc-nav__item.is-active::before { height: 70%; }
.svc-nav__item.is-active .svc-nav__n { color: var(--coral); }
.svc-nav__item.is-active .svc-nav__name { color: var(--navy); font-weight: 600; }
.svc-nav__item.is-active .svc-nav__arrow { opacity: 1; transform: translateX(2px); }

.svc-panels {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.svc-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  scroll-margin-top: 110px;
  opacity: 1;
}
.svc-panel__visual {
  --grad: linear-gradient(135deg, #1A5FBF 0%, #0F2A4A 100%);
  position: relative;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius-lg);
  background: var(--grad);
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 30px 70px rgba(15, 42, 74, .18);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  isolation: isolate;
}
.svc-panel:hover .svc-panel__visual {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(15, 42, 74, .28);
}

/* Bright service photo fills the visual */
.svc-panel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .7s var(--ease);
}
.svc-panel:hover .svc-panel__img {
  transform: scale(1.05);
}

/* Soft gradient overlay so the number + icon stay readable on any image */
.svc-panel__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(15, 42, 74, .42) 0%,
      rgba(15, 42, 74, .08) 28%,
      rgba(15, 42, 74, .02) 60%,
      rgba(15, 42, 74, .28) 100%);
  pointer-events: none;
}

.svc-panel__num {
  position: absolute;
  top: 22px; left: 26px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .8);
  text-shadow: 0 2px 8px rgba(15, 42, 74, .18);
}

/* Small clean icon chip in the top-right corner */
.svc-panel__icon {
  position: absolute;
  top: 22px; right: 22px;
  z-index: 3;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(15, 42, 74, .22);
  transition: transform .35s var(--ease), background .3s var(--ease);
}
.svc-panel__icon svg { width: 22px; height: 22px; }
.svc-panel:hover .svc-panel__icon {
  transform: scale(1.08) rotate(-3deg);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 42, 74, .28);
}

/* Old decorative glow no longer needed */
.svc-panel__content {
  padding: 0 8px;
}
.svc-panel__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.svc-panel h3 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
  line-height: 1.15;
}
.svc-panel p {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 560px;
}
.svc-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}
.svc-panel__link span { transition: transform .3s var(--ease); display: inline-block; }
.svc-panel__link::after {
  content: ""; position: absolute;
  left: 0; bottom: -4px; height: 1.5px;
  width: 100%;
  background: var(--coral);
  transform: scaleX(.6); transform-origin: left;
  transition: transform .3s var(--ease);
}
.svc-panel__link:hover { color: var(--coral); }
.svc-panel__link:hover::after { transform: scaleX(1); }
.svc-panel__link:hover span { transform: translateX(4px); }

/* ---------- INDUSTRIES ---------- */
.industries {
  background: var(--white);
  position: relative;
}
/* Light outlined “360” — top-right watermark above grid bg, below copy */
.industries::before {
  content: "360";
  z-index: 1;
  font-family: var(--font-display);
  letter-spacing: -0.055em;
  color: #0000;
  -webkit-text-stroke: 1.05px #b2ccec8c;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  font-size: clamp(97px, 24vw, 198px);
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: clamp(-22px, 4vw, -21px);
  right: clamp(16px, 4vw, 48px);
  animation: watermark360Float 16s ease-in-out infinite;
  animation-delay: -4s;
}
.industries .container {
  position: relative;
  z-index: 2;
}
.industries__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.industries__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,42,74,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,42,74,.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* AI Marketing — four use-case cards: 2×2 from tablet up (default industries grid is 3 cols) */

/* SEO content writing — 7-card audience grid: centre last row on 3-col layout */
.ind-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px 30px;
  overflow: hidden;
  transition:
    transform .4s var(--ease),
    box-shadow .4s var(--ease),
    border-color .4s var(--ease),
    background .4s var(--ease);
}
.ind-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 95, 191, .08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.ind-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(15, 42, 74, 0.22);
  border-color: transparent;
  background: linear-gradient(145deg, #0f2a4a 0%, #132d4f 42%, #1a5fbf 110%);
}
.ind-card:hover::before {
  opacity: 0;
}

.ind-card__num {
  position: absolute;
  top: 28px; right: 30px;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 42, 74, .1);
  letter-spacing: -0.02em;
  transition: color .35s var(--ease), -webkit-text-fill-color .35s var(--ease), -webkit-text-stroke-color .35s var(--ease), -webkit-text-stroke-width .35s var(--ease);
}
.ind-card:hover .ind-card__num {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
}
.ind-card--featured .ind-card__num {
  -webkit-text-stroke-color: rgba(255, 77, 58, .22);
}

.ind-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 95, 191, .12) 0%, rgba(26, 95, 191, .02) 100%);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition:
    transform .4s var(--ease),
    background .35s var(--ease),
    color .35s var(--ease),
    border-color .35s var(--ease);
  border: 1px solid transparent;
}
.ind-card__icon svg { width: 26px; height: 26px; }
.ind-card--featured .ind-card__icon {
  background: linear-gradient(135deg, rgba(255, 77, 58, .14) 0%, rgba(255, 77, 58, .02) 100%);
  color: var(--coral);
}
.ind-card:hover .ind-card__icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.ind-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
  transition: color .35s var(--ease);
}

.ind-card__desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0 0 22px;
  transition: color .35s var(--ease);
}
.ind-card__meta span {
  transition: color .35s var(--ease);
}
.ind-card__meta strong {
  transition: color .35s var(--ease), -webkit-text-fill-color .35s var(--ease), background .35s var(--ease);
}
.ind-card:hover h3 {
  color: var(--white);
}
.ind-card:hover .ind-card__desc {
  color: rgba(255, 255, 255, .76);
}

.ind-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 20px;
  transition: border-color .35s var(--ease);
}
.ind-card:hover .ind-card__meta {
  border-color: rgba(255, 255, 255, .18);
}
.ind-card__meta span {
  font-size: 12px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.ind-card:hover .ind-card__meta span {
  color: rgba(255, 255, 255, .62);
}

.ind-card__meta strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1A5FBF 0%, #0F2A4A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ind-card:hover .ind-card__meta strong {
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

.ind-card--featured .ind-card__meta strong {
  background: linear-gradient(135deg, #FF4D3A 0%, #FF8A5A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ind-card--featured:hover .ind-card__meta strong {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

.ind-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: color .3s var(--ease);
}
.ind-card__link span { transition: transform .3s var(--ease); display: inline-block; }
.ind-card:hover .ind-card__link {
  color: rgba(255, 255, 255, .95);
}
.ind-card:hover .ind-card__link:hover {
  color: var(--coral-2);
}
.ind-card__link:hover { color: var(--coral); }
.ind-card:hover .ind-card__link:hover span { transform: translateX(4px); }
.ind-card__link:hover span { transform: translateX(4px); }

.ind-card--featured {
  background: var(--white);
  border: 1px solid rgba(255, 77, 58, 0.26);
}

.ind-card__badge {
  position: absolute;
  top: 22px; left: 22px;
  padding: 5px 10px;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}

/* ---------- PROCESS CIRCLE ---------- */
.process-circle {
  background: var(--white);
  overflow: visible;
  position: relative;
}

.proc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}
.proc-circle-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 min(20px, 3vw);
  box-sizing: border-box;
}
/* max-width: restores pre–viewBox scale (670/560 × 580 ≈ 694; round to ~700px) */
.proc-svg {
  width: 100%;
  max-width: min(700px, calc(100vw - 40px));
  height: auto;
}
.proc-center-logo {
  pointer-events: none;
  filter: brightness(0) invert(1);
}
.step-num { font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.step-label-text { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }

.step-circle { cursor: pointer; }
.step-circle.is-active #circ0,
.step-circle.is-active > circle:nth-child(2) { fill: #FF4D3A !important; stroke: #FF4D3A !important; }

/* Animated center pulse */
.center-pulse {
  transform-origin: 290px 290px;
  animation: procPulse 2.5s var(--ease) infinite;
}
@keyframes procPulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50%      { transform: scale(1.08); opacity: 0; }
}

/* Description panel */
.proc-desc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.proc-desc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--coral), var(--blue));
  z-index: 3;
}

/* Image header on the detail card */
.proc-desc__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: linear-gradient(135deg, #0F2A4A 0%, #1A5FBF 100%);
  flex-shrink: 0;
}
.proc-desc__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease), opacity .45s var(--ease);
}
.proc-desc__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15,42,74,.05) 0%, rgba(15,42,74,.0) 28%, rgba(255,255,255,.0) 52%, rgba(255,255,255,.92) 100%);
}
.proc-desc__media-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(15,42,74,.12);
}

/* Body below the image */
.proc-desc__body {
  padding: 28px 40px 36px;
  display: flex;
  flex-direction: column;
}

.proc-desc__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 14px;
  display: block;
}
.proc-desc__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.proc-desc__subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 18px;
  line-height: 1.5;
}
.proc-desc__text {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0 0 22px;
}
.proc-desc__pts {
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.proc-desc__pt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
}
.proc-desc__pt-dot {
  width: 7px; height: 7px;
  background: var(--coral);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 77, 58, .15);
}

.proc-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.pn-dot:hover { background: var(--blue); transform: scale(1.25); }
.pn-dot.is-active {
  width: 32px; height: 10px;
  border-radius: 999px;
  background: var(--coral);
}

/* Transition animation for description panel */
.proc-desc.is-flipping {
  animation: procFlip .45s var(--ease);
}
@keyframes procFlip {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.proc-desc.is-flipping .proc-desc__img {
  animation: procImgFade .7s var(--ease);
}
@keyframes procImgFade {
  0%   { opacity: 0; transform: scale(1.06); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .proc-desc.is-flipping,
  .proc-desc.is-flipping .proc-desc__img { animation: none; }
}

/* ============================================================
   ============ COMPARE TABLE — PREMIUM DARK CHALLENGER ========
   ============================================================ */
.compare {
  position: relative;
  background-color: #000;
  color: var(--white);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 140px;
}
.compare__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* Office photo + black wash for legible light text */
.compare__photo {
  position: absolute;
  inset: 0;
  background-color: #000;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.72)
    ),
    url("/assets/images/compare-section-office-bg.png");
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
}
.compare .container {
  position: relative;
  z-index: 1;
}

/* Header variants for the dark compare canvas (scoped to avoid side-effects) */
.compare .eyebrow--light { color: rgba(255,255,255,.85); }
.compare .eyebrow--light .eyebrow__line { background: rgba(255,255,255,.35); }
.compare .section__lede--light { color: rgba(255,255,255,.72); }

/* Score strip */
.compare__score {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 14px;
  max-width: 860px;
  margin: 38px auto 28px;
}
.compare-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.compare-chip:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.compare-chip__label {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.85);
}
.compare-chip__score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  font-family: var(--font-display);
}
.compare-chip__score svg { width: 14px; height: 14px; }
.compare-chip__score em {
  font-style: normal;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}
.compare-chip__score em small {
  font-size: 11px;
  font-weight: 600;
  opacity: .7;
  margin-left: 1px;
}
.compare-chip__score--bad {
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.55);
}
.compare-chip__score--bad svg {
  padding: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  box-sizing: content-box;
  width: 10px; height: 10px;
}
.compare-chip__score--good {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 77, 58, .45);
}
.compare-chip__score--good svg {
  padding: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  box-sizing: content-box;
  width: 10px; height: 10px;
}

/* The winner chip: raised and ribboned */
.compare-chip--us {
  background: linear-gradient(135deg, rgba(255,77,58,.14), rgba(26,95,191,.14));
  border-color: rgba(255, 77, 58, .4);
  box-shadow: 0 18px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.compare-chip--us .compare-chip__label { color: var(--white); font-weight: 700; }
.compare-chip__ribbon {
  position: absolute;
  top: -12px;
  left: 22px;
  padding: 5px 12px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 77, 58, .5);
}

/* Table wrapper — white canvas inside dark compare section */
.compare__table {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: visible;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(15, 42, 74, 0.1);
  margin-top: 24px;
}
.compare__head,
.compare__row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
}

/* Header row */
.compare__head {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  overflow: visible;
}
.compare__head .compare__cell {
  padding: 24px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: -0.01em;
  position: relative;
  border-right: 1px solid var(--line-2);
}
.compare__head .compare__cell:last-child { border-right: none; }
.compare__head .compare__cell--label {
  font-weight: 600;
  color: var(--ink-3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.compare__head .compare__cell--us {
  background: linear-gradient(135deg, #FF4D3A 0%, #FF6B3D 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  position: relative;
  overflow: visible;
  border-top-right-radius: var(--radius-xl);
  /* Lift only the TOP of the winner column */
  margin-top: -14px;
  padding-top: 38px;
  box-shadow: 0 -10px 30px rgba(255,77,58,.35), 0 10px 30px rgba(255,77,58,.22);
  border-right: none;
}
.compare__head .compare__cell--us::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--coral), #FF8A5C);
  border-top-left-radius: 6px;
  border-top-right-radius: var(--radius-xl);
}
.compare__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 12px;
  background: var(--white);
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  white-space: nowrap;
}

/* Rows */
.compare__row {
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
  position: relative;
}
.compare__row:hover {
  background: rgba(15, 42, 74, .045);
}
.compare__row:hover .compare__cell--label {
  background: rgba(15, 42, 74, 0.065);
}
.compare__row--last { border-bottom: none; }
.compare__row--last .compare__cell:first-child { border-bottom-left-radius: var(--radius-xl); }

/* Cell base */
.compare__cell {
  padding: 22px 24px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-3);
  display: flex;
  align-items: flex-start;
  border-right: 1px solid var(--line-2);
  position: relative;
}
.compare__cell:last-child { border-right: none; }

/* Label column */
.compare__row .compare__cell--label {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  background: var(--soft);
  gap: 14px;
  align-items: center;
}
.compare__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255, 77, 58, .12);
  border: 1px solid rgba(255, 77, 58, .28);
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

/* Competitor cells: ✕ indicator (brand primary) */
.compare__row .compare__cell:nth-child(2)::before,
.compare__row .compare__cell:nth-child(3)::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-right: 12px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 42%, var(--blue) 42%, var(--blue) 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, var(--blue) 42%, var(--blue) 58%, transparent 58%),
    rgba(26, 95, 191, 0.09);
  background-size: 12px 12px, 12px 12px, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(26, 95, 191, 0.28);
}

/* Winner column — light tint on white table */
.compare__cell--us {
  background:
    linear-gradient(180deg, rgba(255, 77, 58, .08), rgba(26, 95, 191, .04));
  color: var(--navy);
  font-weight: 500;
  position: relative;
  border-left: 1px solid rgba(255, 77, 58, .22);
  border-right: none;
}
.compare__row .compare__cell--us {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 77, 58, .07), rgba(26, 95, 191, .045));
  box-shadow: inset 1px 0 0 rgba(255, 77, 58, .16), inset -1px 0 0 rgba(255, 77, 58, .1);
}
.compare__row--last .compare__cell--us {
  border-bottom-right-radius: var(--radius-xl);
}
.compare__row .compare__cell--us::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-right: 12px;
  margin-top: 1px;
  border-radius: 50%;
  background-color: var(--coral);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 12px rgba(255, 77, 58, .5);
}

/* Row hover — same relative lift on winner strip (stronger tint) */
.compare__row:hover .compare__cell--us {
  background: linear-gradient(180deg, rgba(255, 77, 58, .2), rgba(15, 42, 74, .78));
  color: var(--white);
}

/* Stagger reveal for rows */
.compare__table.reveal.is-visible .compare__row {
  animation: compareRow .6s var(--ease) both;
}
.compare__table.reveal.is-visible .compare__row:nth-child(2) { animation-delay: .08s; }
.compare__table.reveal.is-visible .compare__row:nth-child(3) { animation-delay: .14s; }
.compare__table.reveal.is-visible .compare__row:nth-child(4) { animation-delay: .20s; }
.compare__table.reveal.is-visible .compare__row:nth-child(5) { animation-delay: .26s; }
.compare__table.reveal.is-visible .compare__row:nth-child(6) { animation-delay: .32s; }
.compare__table.reveal.is-visible .compare__row:nth-child(7) { animation-delay: .38s; }
.compare__table.reveal.is-visible .compare__row:nth-child(8) { animation-delay: .44s; }
.compare__table.reveal.is-visible .compare__row:nth-child(9) { animation-delay: .50s; }
@keyframes compareRow {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .compare__table.reveal.is-visible .compare__row { animation: none; }
}

/* CTA band below table */
.compare__cta {
  margin-top: 60px;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(255, 77, 58, .10) 0%, rgba(26, 95, 191, .10) 100%);
  border: 1px solid rgba(255, 77, 58, .22);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 40px;
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
}
.compare__cta::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,58,.3), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.compare__cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.compare__cta-sub {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 56ch;
}
.compare__cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

/* --------- Large “360” watermark — ambient transform (multiple sections) --------- */
@keyframes watermark360Float {
  0%, 100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: 0.92;
    transform: translate(1.2%, -2%) scale(1.04);
  }
}
@keyframes watermark360FloatCenter {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -53%) scale(1.04);
  }
}

/* ---------- CTA FINAL (DARK CENTERED) ---------- */
.cta-final {
  position: relative;
  padding: 96px 0 92px;
  background:
    radial-gradient(ellipse 110% 90% at 50% -10%, rgba(26, 95, 191, .14), transparent 58%),
    radial-gradient(ellipse 80% 55% at 50% 110%, rgba(255, 77, 58, .1), transparent 52%),
    linear-gradient(180deg, #0e2440 0%, #07172b 52%, #040d18 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.cta-final__360 {
  position: absolute;
  top: 50%; left: 50%;
  font-family: var(--font-display);
  font-size: clamp(200px, 36vw, 420px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.35px rgba(255, 255, 255, .11);
  text-shadow:
    0 0 38px rgba(26, 95, 191, .14),
    0 20px 52px rgba(0, 0, 0, .22),
    0 1px 0 rgba(255, 77, 58, .08);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  animation: watermark360FloatCenter 18s ease-in-out infinite;
  animation-delay: -1s;
}
.cta-final__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .09);
  pointer-events: none;
  opacity: .75;
}
.cta-final__ring--1 {
  width: 440px; height: 440px;
  animation: ctaRing 80s linear infinite;
}
.cta-final__ring--2 {
  width: 660px; height: 660px;
  border-color: rgba(255, 77, 58, .06);
  animation: ctaRing 110s linear infinite reverse;
}
@keyframes ctaRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-final__ring--1,
  .cta-final__ring--2 { animation: none; }
}
.cta-final__glow {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(580px, 90vw); height: 380px;
  background: radial-gradient(ellipse at center, rgba(255, 77, 58, .16), transparent 68%);
  filter: blur(72px);
  pointer-events: none;
  opacity: .9;
}
.cta-final__inner {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 12px;
}
.cta-final__lockup {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  margin: 0 0 0 4px;
}
.cta-final__orbit {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 0 0 1px rgba(255, 77, 58, .1),
    inset 0 0 14px rgba(255, 77, 58, .07);
  pointer-events: none;
}
.cta-final__orbit::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 77, 58, .4);
  opacity: .95;
}
.cta-final__logo {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .32), 0 0 0 1px rgba(255, 255, 255, .06);
}
.cta-final h2.cta-final__title {
  grid-column: 1 / -1;
}
.cta-final__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.72;
  margin: 8px auto 36px;
  max-width: 560px;
  grid-column: 1 / -1;
}
.cta-final__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
  grid-column: 1 / -1;
}

/* ---------- FAQ ---------- */
.faq { background: var(--soft); }
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); }
.faq__item[open] {
  border-color: rgba(26, 95, 191, .3);
  box-shadow: 0 14px 40px rgba(15, 42, 74, .08);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  list-style: none;
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue); }
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq__icon::before { width: 11px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 11px; }
.faq__item[open] .faq__icon {
  background: var(--coral);
  border-color: var(--coral);
  transform: rotate(45deg);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--white); }
.faq__body {
  padding: 0 28px 24px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.7;
  animation: faqReveal .35s var(--ease);
}
.faq__body p { margin: 0 0 12px; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body strong { color: var(--navy); font-weight: 600; }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ============ V2 RESPONSIVE OVERRIDES ========================
   ============================================================ */
@media (max-width: 1100px) {
  .services-editorial__container { grid-template-columns: 1fr; gap: 50px; }
  .svc-sidebar { position: static; }
  .svc-sidebar__title { max-width: none; }
  .svc-nav { display: none; }
  .proc-layout { grid-template-columns: 1fr; }
  .proc-circle-wrap { order: 2; }
  .proc-desc { order: 1; }
  .ai-sec__split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ai-stats--stack {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .ai-stats--stack .ai-stat {
    flex: none;
  }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { max-width: none; }
  .compare__head,
  .compare__row { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; }
}

@media (max-width: 820px) {
  .ai-sec { padding: 64px 0; }
  .ai-sec__intro { margin-bottom: 36px; }
  .ai-sec__intro-line {
    gap: 10px 14px;
  }
  .ai-sec__intro-line .eyebrow {
    font-size: 11px;
    letter-spacing: .15em;
  }
  .ai-sec__cta { padding: 28px 20px; }
  .ai-stats--stack .ai-stat { padding: 24px 20px; }

  .services-editorial { padding: 64px 0; }
  .services-editorial::before {
    -webkit-text-stroke-width: 0.85px;
    -webkit-text-stroke-color: rgba(170, 198, 235, 0.4);
  }
  .svc-panels { gap: 60px; }
  .svc-panel__num { font-size: 42px; top: 16px; left: 18px; }
  .svc-panel__icon { width: 40px; height: 40px; top: 16px; right: 16px; border-radius: 10px; }
  .svc-panel__icon svg { width: 18px; height: 18px; }

  .industries__grid { grid-template-columns: 1fr; gap: 18px; }
  .industries::before {
    font-size: clamp(42px, 18vw, 96px);
    top: clamp(8px, 3vw, 28px);
    right: clamp(10px, 5vw, 28px);
    -webkit-text-stroke-width: 0.9px;
    -webkit-text-stroke-color: rgba(188, 210, 240, 0.45);
  }
  .work::before {
    font-size: clamp(42px, 18vw, 96px);
    top: clamp(8px, 3vw, 28px);
    right: clamp(10px, 5vw, 28px);
    -webkit-text-stroke-width: 0.9px;
    -webkit-text-stroke-color: rgba(188, 210, 240, 0.45);
  }
  .dashboard::before {
    font-size: clamp(42px, 18vw, 96px);
    top: clamp(8px, 3vw, 28px);
    left: clamp(10px, 5vw, 28px);
    right: auto;
    -webkit-text-stroke-width: 0.9px;
    -webkit-text-stroke-color: rgba(188, 210, 240, 0.45);
  }
  .gr-section::before {
    font-size: clamp(42px, 18vw, 96px);
    top: clamp(8px, 3vw, 28px);
    right: clamp(10px, 5vw, 28px);
    -webkit-text-stroke-width: 0.9px;
    -webkit-text-stroke-color: rgba(188, 210, 240, 0.45);
  }
  .faq-v2::before {
    font-size: clamp(42px, 18vw, 96px);
    top: clamp(8px, 3vw, 28px);
    left: clamp(10px, 5vw, 28px);
    right: auto;
    -webkit-text-stroke-width: 0.9px;
    -webkit-text-stroke-color: rgba(188, 210, 240, 0.45);
  }

  .proc-desc { padding: 0; min-height: auto; }
  .proc-desc__media { aspect-ratio: 16 / 8; }
  .proc-desc__media-tag { left: 14px; top: 14px; padding: 6px 12px; font-size: 10px; }
  .proc-desc__body { padding: 24px 26px 30px; }

  .cta-final { padding: 76px 0 72px; }
  .cta-final__ring--1 { width: 300px; height: 300px; }
  .cta-final__ring--2 { width: 480px; height: 480px; }
  .cta-final__logo { width: 32px; height: 32px; }
  .cta-final__orbit { inset: -6px; }
  .cta-final__orbit::after { inset: 4px; border-width: 1px; }
  .cta-final__btns { gap: 12px; flex-direction: column; align-items: stretch; }
  .cta-final__btns .btn { justify-content: center; }

  /* Compare — stacked cards on section canvas (table = white on mobile) */
  .compare { padding-top: 80px; padding-bottom: 90px; }
  .compare__score { grid-template-columns: 1fr; gap: 12px; max-width: 440px; }
  .compare__table {
    border-radius: var(--radius);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
  }
  .compare__head { display: none; }
  .compare__row {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    margin-bottom: 14px;
    box-shadow: 0 16px 44px rgba(15, 42, 74, 0.06);
  }
  .compare__row:hover {
    background: rgba(15, 42, 74, 0.04);
    box-shadow: 0 18px 48px rgba(15, 42, 74, 0.09);
  }
  .compare__cell {
    padding: 12px 14px;
    border-right: none;
    border-radius: 10px;
    display: block;
    background: transparent !important;
    color: var(--ink-3);
  }
  .compare__cell:last-child { border-right: none; }
  .compare__row .compare__cell--label {
    background: linear-gradient(135deg, rgba(255,77,58,.08), rgba(26,95,191,.08)) !important;
    border: 1px solid rgba(255,77,58,.2);
    color: var(--navy) !important;
    font-size: 14px !important;
    letter-spacing: -0.01em;
    align-items: center;
    display: flex;
    gap: 12px;
  }
  .compare__row:hover .compare__cell--label {
    background: rgba(15, 42, 74, 0.055) !important;
  }
  .compare__num { width: 28px; height: 28px; font-size: 10px; }
  .compare__cell:not(.compare__cell--label)::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-display);
    font-size: 10.5px;
    color: var(--ink-4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }
  .compare__row .compare__cell:nth-child(2)::before,
  .compare__row .compare__cell:nth-child(3)::before {
    content: attr(data-label);
    display: block;
    background: transparent;
    border: none;
    width: auto; height: auto;
    margin: 0 0 6px 0;
  }
  .compare__row .compare__cell--us {
    border-left: none;
    background: linear-gradient(135deg, rgba(255,77,58,.1), rgba(26,95,191,.07)) !important;
    border: 1px solid rgba(255,77,58,.25);
    box-shadow: none;
    color: var(--navy);
  }
  .compare__row:hover .compare__cell--us {
    background: linear-gradient(180deg, rgba(255, 77, 58, .2), rgba(15, 42, 74, .78)) !important;
    color: var(--white) !important;
  }
  .compare__row .compare__cell--us::before {
    content: attr(data-label);
    color: var(--coral);
    background: transparent;
    background-image: none;
    width: auto; height: auto;
    margin: 0 0 6px 0;
    box-shadow: none;
    letter-spacing: 0.14em;
    font-weight: 800;
  }

  /* CTA band stack on mobile */
  .compare__cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 22px;
    text-align: left;
  }
  .compare__cta-actions { justify-content: flex-start; }

  .faq__item summary { padding: 18px 20px; font-size: 15px; }
  .faq__body { padding: 0 20px 20px; font-size: 14px; }

  .hero__stats { grid-template-columns: 1fr; max-width: none; padding: 20px; }
  .hero__micro { margin: -10px 0 24px; }
}

@media (max-width: 560px) {
  .cta-final__desc { font-size: 15px; }
  .proc-desc__title { font-size: 22px; }
  .proc-nav { gap: 10px; }
  .ai-sec__intro-line {
    gap: 8px 10px;
  }
  .ai-sec__intro-line .eyebrow {
    font-size: 10px;
    letter-spacing: .12em;
    gap: 8px;
  }
  .ai-sec__intro-line .eyebrow__line { width: 16px; }
  .ai-stats--stack .ai-stat__metric .ai-stat__value { font-size: 34px; }
  .principle { padding: 28px 22px 24px; }
  .ind-card { padding: 28px 24px 22px; }
}

/* ============================================================
   HERO — EDITORIAL (split layout + photo + floating badges)
   Mirrors the reference mock: 3-line stacked title with an
   italic serif accent word, coral payoff line, inline stat bar,
   hero photo with coral pill, Google-rating chip, and ROI card.
   ============================================================ */
.hero.hero--editorial {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 80px 0 80px;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(255, 77, 58, .06), transparent 65%),
    radial-gradient(700px 420px at 0% 100%, rgba(233, 214, 226, .35), transparent 70%),
    linear-gradient(180deg, #F9EEE9 0%, #FFFFFF 55%, #F6EAEF 100%);
}

.hero--editorial .hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Large coral "360" watermark at bottom-right */
.hero--editorial .hero__watermark {
  position: absolute;
  bottom: -33px;
  right: -60px;
  font-family: var(--font-display);
  font-size: clamp(238px, 44vw, 246px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 77, 58, .18);
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

.hero--editorial .hero__soft-glow {
  position: absolute;
  top: 10%; right: 20%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 77, 58, .08), transparent 70%);
  filter: blur(40px);
}

.hero--editorial .hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  min-height: 600px;
  padding-top: 20px;
}

/* Web Dev hero — copy slightly narrower (~20px effective), device mockups wider */
.hero.hero--editorial.hero--webdev-mockups .hero__inner {
  grid-template-columns: minmax(0, 1.32fr) minmax(0, 0.80fr);
  gap: clamp(44px, 4.5vw, 58px);
}

.hero--webdev-mockups .hero__subtitle:first-of-type .hero__subtitle-lead {
  display: inline;
  margin-bottom: 0;
}

/* --- Left: chip + title + subtitle + cta + stats --- */
.hero--editorial .hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(210, 220, 240, .6);
  border: 1px solid rgba(26, 95, 191, .12);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.hero--editorial .hero__chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 77, 58, .22);
  animation: pulseDot 2s var(--ease) infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 77, 58, .22); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 77, 58, .08); }
}

.hero--editorial .hero__title {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 26px;
  background: none;
  -webkit-text-fill-color: var(--navy);
}
.hero--editorial .hero__title-line {
  display: block;
}
/* "Digital Marketing" in brand blue */
.hero--editorial .hero__title-blue {
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
  font-weight: 800;
}
/* Only the word "Angle" is coral */
.hero--editorial .hero__title-coral {
  color: var(--coral);
  -webkit-text-fill-color: var(--coral);
  font-weight: 800;
}
/* Legacy class kept for safety (no longer used) */
.hero--editorial .hero__title-line--coral { color: var(--coral); }
.hero--editorial .hero__serif {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: -0.005em;
  padding: 0 2px;
}

.hero--editorial .hero__subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 560px;
  margin: 0;
  font-weight: 400;
}
.hero--editorial .hero__subtitle + .hero__subtitle {
  margin-top: 14px;
}
.hero--editorial .hero__subtitle:last-of-type {
  margin-bottom: 30px;
}
.hero--editorial .hero__subtitle-lead {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.hero--editorial .hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero--editorial .btn--coral {
  background: var(--coral);
  color: var(--white);
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--btn-radius);
  box-shadow: 0 14px 34px rgba(255, 77, 58, .28);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.hero--editorial .btn--coral:hover {
  background: var(--coral-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 77, 58, .35);
}
.hero--editorial .btn--ghost-play {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-2);
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--btn-radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero--editorial .btn--ghost-play:hover {
  background: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn__play-triangle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
}

/* Legacy divider kept inert (HTML no longer uses it) */
.hero--editorial .hero__divider { display: none; }

/* Stat row — display figures (Sora) + coral suffix, aligned with heading typography */
.hero--editorial .hero__stats {
  display: flex;
  align-items: flex-start;
  gap: clamp(36px, 5vw, 56px);
  flex-wrap: wrap;
  max-width: none;
  padding: 20px 0 0;
  margin-top: 4px;
  border-top: 1px solid var(--line-2);
  background: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
  box-shadow: none;
  border-radius: 0;
  grid-template-columns: none;
}
.hero--editorial .hero__stat {
  padding: 0;
  text-align: left;
}
.hero--editorial .hero__stat-value {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--navy);
  background: none;
  -webkit-text-fill-color: unset;
}
.hero--editorial .hero__stat-figure {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  white-space: nowrap;
  color: var(--navy);
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.hero--editorial .hero__stat-prefix {
  font: inherit;
  font-weight: inherit;
  color: inherit;
  flex-shrink: 0;
}
.hero--editorial .hero__stat-value .count {
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  flex-shrink: 0;
}
.hero--editorial .hero__stat-accent {
  color: var(--coral);
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  flex-shrink: 0;
}
.hero--editorial .hero__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.4;
  text-transform: none;
  letter-spacing: -0.01em;
}
/* Compact single-row stat strip (e.g. service pages) — numbers stay on one horizontal line */
.hero--editorial .hero__stats.hero__stats--compact {
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: clamp(12px, 2.8vw, 28px);
}
.hero--editorial .hero__stats.hero__stats--compact .hero__stat {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}
.hero--editorial .hero__stats.hero__stats--compact .hero__stat-label {
  font-size: clamp(11px, 1.05vw + 10px, 13px);
  line-height: 1.35;
}

.hero--editorial .hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  min-height: 460px;
}
.hero--editorial .hero__photo-img--webdev {
  object-position: 28% center;
}

.hero__photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(15, 42, 74, .22),
    0 4px 0 rgba(255, 255, 255, .6) inset;
  background:
    linear-gradient(135deg, #0F2A4A 0%, #1A5FBF 100%);
  isolation: isolate;
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(15, 42, 74, 0) 55%, rgba(15, 42, 74, .18) 100%);
  pointer-events: none;
}
.hero__photo-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .18), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(255, 77, 58, .28), transparent 55%),
    linear-gradient(135deg, #0F2A4A 0%, #1A5FBF 100%);
}

/* Floating pills / chips */
.hero__pill {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Legacy 360-complete pill removed from DOM — keep class inert */
.hero__pill--complete { display: none; }
.hero__pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
  animation: pulseDot 2s var(--ease) infinite;
}

/* Top-right: compact dark-navy Google Rating card */
.hero__pill--rating {
  top: 22px;
  right: -18px;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px 10px;
  background: #0F2A4A;
  color: var(--white);
  border-radius: 14px;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(15, 42, 74, .35), inset 0 1px 0 rgba(255,255,255,.06);
  animation: float2 7s var(--ease) infinite;
  min-width: 100px;
}
.hero__pill--rating strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
}
.hero__pill-star {
  display: inline-flex;
  align-items: center;
  color: #FBBC04;
}
.hero__pill--rating em {
  font-size: 10.5px;
  font-style: normal;
  color: rgba(255, 255, 255, .78);
  letter-spacing: .04em;
  font-weight: 500;
  margin-top: 2px;
}

/* Bottom-center ROI card */
.hero__photo-stat {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 14px 26px 12px;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  box-shadow:
    0 20px 44px rgba(15, 42, 74, .18),
    0 0 0 1px rgba(15, 42, 74, .04);
  min-width: 200px;
  animation: float3 8s var(--ease) infinite;
}
.hero__photo-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.hero__photo-stat > span:nth-of-type(1) {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}
/* Legacy bar graphic removed from DOM — keep inert */
.hero__photo-stat-bars { display: none; }

/* Float animations */
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ---------- Web Dev hero — serif headline + squiggle label + device mockups ---------- */
.hero--webdev-mockups .hero__label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.hero--webdev-mockups .hero__label-squiggle {
  flex-shrink: 0;
  color: var(--blue);
  opacity: .92;
}
.hero--webdev-mockups .hero__chip {
  margin-bottom: 26px;
}

.hero--webdev-mockups .hero__title.hero__title--serif {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero--webdev-mockups .hero__title--serif .hero__title-blue,
.hero--webdev-mockups .hero__title--serif .hero__title-coral {
  font-weight: 700;
}

/* ---------- AI Marketing Agency — “What is…” editorial mock layout ---------- */

/* ---------- AI Marketing Agency — modern UK agency (editorial + highlights) ---------- */

.ai-mkt-modern__hi:hover {
  border-color: color-mix(in srgb, var(--coral) 32%, var(--line));
  box-shadow: 0 16px 44px rgba(15, 42, 74, 0.09);
}

.hero--webdev-mockups .hero__title.hero__title--sentence-case {
  text-transform: none;
}

/* Social Media Marketing page — H1 sizing.
   ID raises specificity above `.hero--editorial`
   and `.hero--webdev-mockups` overrides. */

.hero--webdev-mockups .hero__photo.hero__photo--devices {
  position: relative;
  aspect-ratio: auto;
  min-height: 500px;
  padding-bottom: 0;
}
.hero--webdev-mockups .hero-devices {
  position: relative;
  width: 100%;
  height: 440px;
}

.hero-devices__glow {
  position: absolute;
  inset: 8% 4% 18%;
  background: radial-gradient(ellipse at 50% 55%, rgba(26, 95, 191, .16), transparent 68%);
  pointer-events: none;
}

.hero-devices__desk {
  position: absolute;
  left: 0;
  bottom: 14%;
  width: 76%;
  z-index: 1;
  animation: heroDevicesFloat 9s ease-in-out infinite;
}
.hero-devices__tablet {
  position: absolute;
  right: -2%;
  bottom: 24%;
  width: 36%;
  max-width: 220px;
  z-index: 2;
  animation: heroDevicesFloat 11s ease-in-out infinite reverse;
}
.hero-devices__phone {
  position: absolute;
  left: 40%;
  bottom: 8%;
  width: 19%;
  min-width: 74px;
  max-width: 112px;
  z-index: 3;
  animation: heroDevicesFloat 8s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes heroDevicesFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

.hero-devices__bezel {
  background: linear-gradient(148deg, #e9eef7 0%, #dfe7f3 42%, #cfd9eb 100%);
  border-radius: 14px;
  padding: 10px 10px 14px;
  box-shadow:
    0 28px 72px rgba(15, 42, 74, .26),
    0 2px 0 rgba(255, 255, 255, .82) inset,
    0 -1px 0 rgba(15, 42, 74, .07) inset;
}
.hero-devices__bezel--tablet {
  border-radius: 18px;
  padding: 11px;
}
.hero-devices__bezel--phone {
  border-radius: 22px;
  padding: 11px 8px 13px;
}

.hero-devices__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px 8px;
}
.hero-devices__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dce3ee;
  box-shadow: inset 0 -1px 0 rgba(15, 42, 74, .1);
}
.hero-devices__chrome span:nth-child(1) { background: #ec6b6b; }
.hero-devices__chrome span:nth-child(2) { background: #f0c75e; }
.hero-devices__chrome span:nth-child(3) { background: #6bcf7f; }

.hero-devices__chrome--dark span:nth-child(1),
.hero-devices__chrome--dark span:nth-child(2),
.hero-devices__chrome--dark span:nth-child(3) {
  background: rgba(255, 255, 255, .28);
}

.hero-devices__screen {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

.hero-devices__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-devices__shot--tablet {
  object-position: 18% top;
}
.hero-devices__shot--phone {
  object-position: top center;
}

.hero-devices__screen--desk {
  aspect-ratio: 16 / 10;
}

.hero-devices__mock--desk {
  height: 100%;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, #fafbfd 0%, #eff3fb 100%);
}
.hero-devices__mock-nav {
  height: 8px;
  width: 58%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  opacity: .92;
}
.hero-devices__mock-hero-band {
  flex: 1;
  min-height: 52px;
  border-radius: 8px;
  background: linear-gradient(118deg, rgba(26, 95, 191, .14), rgba(255, 77, 58, .09));
  border: 1px solid rgba(26, 95, 191, .16);
}
.hero-devices__mock-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-devices__mock-columns span {
  height: 38px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-devices__stand {
  display: block;
  margin: -2px auto 0;
  width: 44%;
  height: 13px;
  background: linear-gradient(180deg, #c8d1e3, #aab6cd);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 22px rgba(15, 42, 74, .18);
}

.hero-devices__screen--tablet {
  aspect-ratio: 4 / 5;
}

.hero-devices__mock--dark {
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, var(--navy) 0%, #152d52 100%);
}
.hero-devices__mock-bar {
  height: 10px;
  width: 72%;
  border-radius: 4px;
  background: rgba(255, 255, 255, .24);
}
.hero-devices__mock-stack {
  flex: 1;
  min-height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
}

.hero-devices__phone-speaker {
  display: block;
  width: 30%;
  height: 5px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #cfd6e6;
}

.hero-devices__screen--phone {
  aspect-ratio: 9 / 18;
}

.hero-devices__mock--phone {
  height: 100%;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2fa 100%);
}
.hero-devices__mock--phone > span:first-child,
.hero-devices__mock--phone > span:last-child {
  height: 11px;
  border-radius: 4px;
  background: var(--line);
}
.hero-devices__mock-accent {
  flex: 1;
  min-height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(26, 95, 191, .22), rgba(255, 77, 58, .11));
  border: 1px solid rgba(26, 95, 191, .18);
}

@media (prefers-reduced-motion: reduce) {
  .hero-devices__desk,
  .hero-devices__tablet,
  .hero-devices__phone {
    animation: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero.hero--editorial { padding: 90px 0 50px; }
  .hero--editorial .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    min-height: auto;
  }
  .hero--editorial .hero__photo {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
    min-height: 420px;
  }
  .hero--editorial .hero__title { font-size: 46px; }

  .hero--webdev-mockups .hero__photo.hero__photo--devices {
    min-height: 440px;
    padding-bottom: 0;
  }
  .hero--webdev-mockups .hero-devices {
    height: 380px;
  }
}

@media (max-width: 720px) {
  .hero.hero--editorial { padding: 64px 0 64px; }
  .hero--editorial .hero__title { font-size: 40px; }
  .hero--editorial .hero__stats { gap: 28px; }
  .hero--editorial .hero__stat-label { font-size: 14px; }
  .hero--editorial .hero__photo {
    aspect-ratio: auto;
    min-height: 340px;
  }
  .hero__photo-stat { min-width: 180px; padding: 14px 16px 12px; }
  .hero__photo-stat strong { font-size: 24px; }
  .hero__pill--complete { padding: 8px 14px; font-size: 12px; }
  .hero__pill--rating { padding: 8px 14px 6px; }
  .hero__pill--rating strong { font-size: 14px; }

  .hero--webdev-mockups .hero__photo.hero__photo--devices {
    min-height: 380px;
    padding-bottom: 0;
  }
  .hero--webdev-mockups .hero-devices {
    height: 320px;
  }
  .hero--webdev-mockups .hero-devices__tablet {
    max-width: 180px;
  }
}

@media (max-width: 520px) {
  .hero--editorial .hero__cta { flex-direction: column; align-items: stretch; }
  .hero--editorial .btn--coral,
  .hero--editorial .btn--ghost-play { justify-content: center; width: 100%; }
  .hero--editorial .hero__stats { gap: 20px; justify-content: space-between; }
  .hero--editorial .hero__stat { flex: 1 1 30%; }
  .hero--editorial .hero__photo { min-height: 300px; }
  .hero--editorial .hero__stats.hero__stats--compact { gap: 6px; flex-wrap: nowrap; }
  .hero--editorial .hero__stats.hero__stats--compact .hero__stat-value {
    font-size: clamp(20px, 5.9vw, 28px);
  }

  .hero--webdev-mockups .hero__photo.hero__photo--devices {
    min-height: 300px;
    padding-bottom: 0;
  }
  .hero--webdev-mockups .hero-devices {
    height: 260px;
  }
  .hero--webdev-mockups .hero-devices__phone {
    min-width: 62px;
    max-width: 88px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__pill--complete,
  .hero__pill--rating,
  .hero__photo-stat,
  .hero--editorial .hero__chip-dot,
  .hero__pill-dot {
    animation: none !important;
  }
}

/* ============================================================
   PRINCIPLES v2 — "Four Things That Don't Change"
   Horizontal numbered step pills + switching detail card
   ============================================================ */
.principles-v2 {
  background: #f5f7fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.principles-v2 .container {
  position: relative;
  z-index: 1;
}

/* ------------ HEAD ------------ */
.principles-v2__head {
  max-width: 820px;
  margin: 0 0 64px;
  position: relative;
  z-index: 2;
}
.eyebrow--coral-line { color: var(--blue); }
.eyebrow--coral-line .eyebrow__line { background: var(--blue); }

.serif-coral {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 0 2px;
  color: var(--coral);
}
.principles-v2__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 640px;
  margin: 0;
}

/* ------------ HORIZONTAL STEP NAV ------------ */
.pv2-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  padding: 0 6px;
  z-index: 2;
}
.pv2-nav__line {
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--line-2) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
}

.pv2-step {
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  outline: none;
  transition: opacity .3s var(--ease);
  color: inherit;
}

.pv2-step__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(15, 42, 74, .04);
  transition: all .3s var(--ease);
}

.pv2-step__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}

.pv2-step__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-4);
  transition: color .3s var(--ease);
}

/* Inactive (dimmed) */
.pv2-step:not(.is-active) .pv2-step__title,
.pv2-step:not(.is-active) .pv2-step__desc {
  opacity: .55;
}

/* Hover — undim */
.pv2-step:hover:not(.is-active) .pv2-step__title,
.pv2-step:hover:not(.is-active) .pv2-step__desc {
  opacity: .85;
}
.pv2-step:hover:not(.is-active) .pv2-step__badge {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(15, 42, 74, .08);
}

/* Active pill */
.pv2-step.is-active .pv2-step__badge {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 77, 58, .38);
  transform: translateY(-2px);
}
.pv2-step.is-active .pv2-step__title { color: var(--navy); opacity: 1; }
.pv2-step.is-active .pv2-step__desc  { color: var(--ink-3); opacity: 1; }

/* Focus ring (keyboard) */
.pv2-step:focus-visible .pv2-step__badge {
  box-shadow: 0 0 0 3px rgba(26, 95, 191, .35);
}

/* ------------ DETAIL CARD ------------ */
.pv2-card {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 40px 100px rgba(15, 42, 74, .1);
  border: 1px solid rgba(15, 42, 74, .04);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.pv2-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 380px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.pv2-panel.is-active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  animation: pv2FadeIn .45s var(--ease);
}
@keyframes pv2FadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Visual column */
.pv2-panel__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .08), transparent 60%),
    linear-gradient(135deg, #0F2A4A 0%, #1A5FBF 100%);
  overflow: hidden;
}
.pv2-panel__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 80%, rgba(255, 77, 58, .18), transparent 55%);
  pointer-events: none;
}

/* ----- PANEL 01 — Data Audit dashboard mock ----- */
.pv2-mock {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
  overflow: hidden;
}
.pv2-mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #F5F7FA;
  border-bottom: 1px solid var(--line);
}
.pv2-mock__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #E5EAF2;
}
.pv2-mock__dot:nth-child(1) { background: #FF5F57; }
.pv2-mock__dot:nth-child(2) { background: #FEBC2E; }
.pv2-mock__dot:nth-child(3) { background: #28C840; }
.pv2-mock__title {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 8px;
}
.pv2-mock__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--coral);
  padding: 3px 8px;
  background: rgba(255, 77, 58, .1);
  border-radius: 999px;
  text-transform: uppercase;
}
.pv2-mock__live em {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pv2Pulse 1.5s var(--ease) infinite;
}
.pv2-mock__live--coral { color: var(--coral); }
@keyframes pv2Pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.4); }
}
.pv2-mock__body {
  padding: 18px 18px 20px;
}
.pv2-mock__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.pv2-mock__kpis--3 { grid-template-columns: repeat(3, 1fr); }
.pv2-kpi {
  padding: 12px;
  background: #F8FAFD;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.pv2-kpi span {
  display: block;
  font-size: 10px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-weight: 500;
}
.pv2-kpi strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pv2-kpi em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
}
.pv2-kpi em.up   { color: #1BAE5C; }
.pv2-kpi em.down { color: #E04C3A; }
.pv2-kpi--sm strong { font-size: 16px; }
.pv2-mock__chart {
  width: 100%;
  height: 90px;
  display: block;
}

/* ----- PANEL 02 — Strategy Flow ----- */
.pv2-flow {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  height: 260px;
}
.pv2-flow__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pv2-flow__node {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  text-align: center;
  min-width: 130px;
}
.pv2-flow__node--1 { top:  18px; left:   0; }
.pv2-flow__node--2 { top:  18px; right:  0; }
.pv2-flow__node--3 { top: 155px; left:   0; }
.pv2-flow__node--4 { top: 155px; right:  0; border: 2px solid var(--coral); }
.pv2-flow__lbl {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.pv2-flow__node--4 .pv2-flow__lbl { color: var(--coral); }
.pv2-flow__node em {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-4);
}

/* ----- PANEL 04 — Sectors grid ----- */
.pv2-sectors {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pv2-sector {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .3s var(--ease);
}
.pv2-sector:hover { transform: translateY(-2px); }
.pv2-sector svg { color: rgba(255, 255, 255, .75); flex: none; }
.pv2-sector--active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(255, 77, 58, .42);
}
.pv2-sector--active svg { color: var(--white); }
.pv2-sector--plus {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  justify-content: center;
}
.pv2-sector--plus span {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

/* ------------ PANEL BODY (right side) ------------ */
.pv2-panel__body {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pv2-panel__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--coral);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.pv2-panel__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.pv2-panel__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0 0 22px;
  max-width: 520px;
}

/* Bullet list with coral arrows */
.pv2-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}
.pv2-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.pv2-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-weight: 700;
  flex: none;
  margin-top: 1px;
}

/* Pull quote — the punchline */
.pv2-panel__pull {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--navy);
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  line-height: 1.55;
  max-width: 520px;
}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 1024px) {
  .principles-v2 { padding: 64px 0; }
  .pv2-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
  .pv2-nav__line { display: none; }
  .pv2-panel { grid-template-columns: 1fr; }
  .pv2-panel__visual { padding: 40px; min-height: 280px; }
  .pv2-panel__body { padding: 38px 34px; }
}

@media (max-width: 640px) {
  .principles-v2 { padding: 56px 0; }
  .principles-v2__head { margin-bottom: 44px; }
  .principles-v2__title { font-size: clamp(28px, 7.5vw, 38px); }
  .pv2-nav { grid-template-columns: 1fr; gap: 16px; }
  .pv2-step { flex-direction: row; align-items: center; gap: 14px; }
  .pv2-step__badge { min-width: 52px; padding: 6px 10px; font-size: 12px; }
  .pv2-step__title { font-size: 15px; }
  .pv2-step__desc { display: none; }
  .pv2-panel__visual { padding: 28px; }
  .pv2-panel__body { padding: 30px 24px; }
  .pv2-panel__num { font-size: 38px; }
  .pv2-panel__title { font-size: 24px; }
  .pv2-flow { max-width: 320px; height: 240px; }
  .pv2-flow__node { min-width: 100px; padding: 10px 12px; }
  .pv2-mock { max-width: 360px; }
  .pv2-mock__kpis--3 { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .pv2-kpi { padding: 10px; }
  .pv2-kpi--sm strong { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .pv2-mock__live em { animation: none !important; }
  .pv2-panel.is-active { animation: none !important; transform: none; }
}

/* ============================================================
   SECTORS BRIDGE — CTA band between Services & Industries
   ("Not in one of these sectors?")
   ============================================================ */
.sectors-bridge {
  background: var(--white);
  padding: 20px 0 40px;
  position: relative;
}

.sectors-bridge__card {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 48px;
  align-items: center;
  padding: 56px 64px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 85% 0%, rgba(255, 77, 58, .22), transparent 60%),
    radial-gradient(500px 320px at 10% 100%, rgba(26, 95, 191, .28), transparent 60%),
    linear-gradient(135deg, #0F2A4A 0%, #0A1E38 100%);
  box-shadow:
    0 30px 80px rgba(15, 42, 74, .22),
    0 0 0 1px rgba(255, 255, 255, .04) inset;
  isolation: isolate;
}

/* --- Decorative layer --- */
.sectors-bridge__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.sectors-bridge__plus {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .1);
  line-height: 1;
}
.sectors-bridge__plus--1 { top: -24px;   left: -14px;   font-size: 100px; transform: rotate(-12deg); }
.sectors-bridge__plus--2 { top: 52%;     left: 52%;     font-size: 42px;  transform: rotate(18deg); opacity: .7; }
.sectors-bridge__plus--3 { bottom: -36px; right: -20px; font-size: 160px; transform: rotate(10deg); }
.sectors-bridge__glow {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255, 77, 58, .15), transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
}

/* --- Text --- */
.sectors-bridge__text {
  position: relative;
  z-index: 2;
}
.sectors-bridge__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sectors-bridge__eyebrow-line {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, .45);
  display: inline-block;
}

.sectors-bridge__title {
  max-width: 680px;
}
.sectors-bridge__em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--coral);
}

.sectors-bridge__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
  margin: 0;
  max-width: 620px;
}

/* --- CTA --- */
.sectors-bridge__cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}

.sectors-bridge__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 26px;
  background: var(--coral);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: var(--btn-radius);
  box-shadow: 0 14px 34px rgba(255, 77, 58, .42);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, .06);
}
.sectors-bridge__btn:hover {
  background: var(--coral-2);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(255, 77, 58, .5);
}
.sectors-bridge__btn svg {
  transition: transform .25s var(--ease);
}
.sectors-bridge__btn:hover svg { transform: translateX(3px); }

/* --- Responsive --- */
@media (max-width: 920px) {
  .sectors-bridge__card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 36px;
    text-align: left;
  }
  .sectors-bridge__cta {
    align-items: flex-start;
    text-align: left;
  }
  .sectors-bridge__plus--2 { display: none; }
  .sectors-bridge__plus--3 { font-size: 120px; }
}

@media (max-width: 560px) {
  .sectors-bridge { padding: 10px 0 30px; }
  .sectors-bridge__card { padding: 36px 24px; border-radius: 18px; }
  .sectors-bridge__title { font-size: clamp(22px, 6.5vw, 28px); }
  .sectors-bridge__sub { font-size: 14px; }
  .sectors-bridge__btn { width: 100%; justify-content: center; padding: 15px 20px; }
  .sectors-bridge__cta { width: 100%; align-items: stretch; text-align: center; }
  .sectors-bridge__plus--1 { font-size: 70px; top: -18px; left: -10px; }
  .sectors-bridge__plus--3 { font-size: 90px; bottom: -18px; right: -14px; }
}

/* ============================================================
   FAQ v2 — Editorial accordion rows
   Matches reference: faded number + big title + toggle (+/×)
   Active row turns coral, × circle replaces the +
   ============================================================ */
.faq-v2 {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Light outline “360” — upper left (same as dashboard / industries rhythm) */
.faq-v2::before {
  content: "360";
  position: absolute;
  z-index: 1;
  font-family: var(--font-display);
  letter-spacing: -0.055em;
  color: #0000;
  -webkit-text-stroke: 1.05px #b2ccec8c;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  font-size: clamp(97px, 24vw, 198px);
  font-weight: 900;
  line-height: 1;
  top: clamp(-22px, 4vw, -21px);
  left: clamp(16px, 4vw, 48px);
  right: auto;
  animation: watermark360Float 19s ease-in-out infinite;
  animation-delay: -8s;
}

.faq-v2::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 58, .06), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.faq-v2 .container {
  position: relative;
  z-index: 2;
}

.faq-v2__head {
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.faq-v2__head .eyebrow {
  justify-content: center;
}
.faq-v2__title {
  margin: 0 0 18px;
}
.faq-v2__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 640px;
  margin: 0 auto;
}

/* --- Accordion list --- */
.faq-v2__list {
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.faq-row {
  position: relative;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}

.faq-row__summary {
  list-style: none;
  display: grid;
  grid-template-columns: 64px 1fr 40px;
  gap: 28px;
  align-items: center;
  padding: 26px 4px;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.faq-row__summary::-webkit-details-marker { display: none; }
.faq-row__summary::marker { display: none; }

.faq-row__num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-4);
  letter-spacing: 0.1em;
  opacity: .55;
  transition: color .3s var(--ease), opacity .3s var(--ease);
  text-align: center;
}

.faq-row__q {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 20px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  transition: color .3s var(--ease);
}

/* --- Toggle (+ / ×) --- */
.faq-row__toggle {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.faq-row__plus {
  position: relative;
  width: 18px;
  height: 18px;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.faq-row__plus::before,
.faq-row__plus::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 1px;
  transition: background .3s var(--ease);
}
.faq-row__plus::before {
  top: 50%; left: 0; width: 100%; height: 2px;
  transform: translateY(-50%);
}
.faq-row__plus::after {
  top: 0; left: 50%; width: 2px; height: 100%;
  transform: translateX(-50%);
}

.faq-row__x {
  position: absolute;
  inset: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.6) rotate(-90deg);
  transition: opacity .3s var(--ease), transform .4s var(--ease);
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(255, 77, 58, .35);
}
.faq-row__x svg { width: 14px; height: 14px; }

/* --- Hover --- */
.faq-row:not([open]):hover .faq-row__q { color: var(--coral); }
.faq-row:not([open]):hover .faq-row__num { opacity: 1; color: var(--navy); }
.faq-row:not([open]):hover .faq-row__plus::before,
.faq-row:not([open]):hover .faq-row__plus::after {
  background: var(--coral);
}

/* --- Open state --- */
.faq-row[open] .faq-row__q { color: var(--coral); }
.faq-row[open] .faq-row__num { color: var(--coral); opacity: 1; }
.faq-row[open] .faq-row__plus { opacity: 0; transform: rotate(45deg); }
.faq-row[open] .faq-row__x { opacity: 1; transform: scale(1) rotate(0); }

/* Focus ring (keyboard) */
.faq-row__summary:focus-visible {
  outline: 2px solid rgba(255, 77, 58, .55);
  outline-offset: 4px;
  border-radius: 6px;
}

/* --- Body (answer) --- */
.faq-row__body {
  padding: 0 44px 32px 92px;
  max-width: 920px;
  animation: faqFadeIn .4s var(--ease);
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-row__body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-3);
  margin: 0 0 14px;
}
.faq-row__body p:last-child { margin-bottom: 0; }
.faq-row__body strong {
  color: var(--navy);
  font-weight: 600;
}

.faq-row__list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.faq-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.55;
}
.faq-row__arrow {
  color: var(--coral);
  font-weight: 700;
  flex: none;
  margin-top: 1px;
  font-size: 14px;
}

/* --- Responsive --- */
@media (max-width: 820px) {
  .faq-v2 { padding: 64px 0; }
  .faq-v2__head { margin-bottom: 44px; }
  .faq-row__summary {
    grid-template-columns: 40px 1fr 32px;
    gap: 16px;
    padding: 22px 2px;
  }
  .faq-row__q { font-size: 17px; }
  .faq-row__num { font-size: 11px; text-align: left; }
  .faq-row__toggle { width: 32px; height: 32px; }
  .faq-row__x { width: 32px; height: 32px; }
  .faq-row__x svg { width: 12px; height: 12px; }
  .faq-row__plus { width: 16px; height: 16px; }
  .faq-row__body { padding: 0 0 26px 56px; font-size: 14.5px; }
  .faq-row__body p { font-size: 14.5px; }
}

@media (max-width: 520px) {
  .faq-v2 { padding: 56px 0; }
  .faq-v2__head { margin-bottom: 36px; }
  .faq-row__summary {
    grid-template-columns: 32px 1fr 30px;
    gap: 12px;
    padding: 20px 2px;
  }
  .faq-row__q { font-size: 16px; line-height: 1.3; }
  .faq-row__body { padding: 0 0 24px 0; }
  .faq-row__body p,
  .faq-row__list li { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-row__plus,
  .faq-row__x,
  .faq-row__q,
  .faq-row__num { transition: none !important; }
  .faq-row__body { animation: none !important; }
}

/* ============================================================
   UNIFIED H2 HEADING SYSTEM (page-wide)
   Light: navy + coral accent spans. Dark bands: all white (accents included).
   ============================================================ */
h2,
.section__title,
.svc-sidebar__title,
.principles-v2__title,
.sectors-bridge__title,
.faq-v2__title,
.contact__copy h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  font-style: normal;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--navy);
  color: var(--navy);
}

h2 em {
  font-style: normal;
}

/* H2 on dark bands — base text white */
.section__head--light h2,
h2.section__title--light,
.sectors-bridge__title,
.compare .section__title--light {
  background: none;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

/* Accent words on light backgrounds — solid coral */
h2 .grad,
h2 .grad-coral,
h2 .serif-coral,
h2 .sectors-bridge__em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.025em;
  padding: 0 2px;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--coral);
  color: var(--coral);
}

/* Dark bands: full heading white (accent spans too — no orange) */
.section__head--light h2 .grad,
.section__head--light h2 .grad-coral,
.section__head--light h2 .serif-coral,
h2.section__title--light .grad,
h2.section__title--light .grad-coral,
h2.section__title--light .serif-coral,
.sectors-bridge__title .grad,
.sectors-bridge__title .grad-coral,
.sectors-bridge__title .sectors-bridge__em,
.compare .section__title--light .grad,
.compare .section__title--light .grad-coral,
.compare .section__title--light .serif-coral {
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}

/* CTA final — coral accent overrides dark-band rule for .grad-coral only */
.cta-final h2.cta-final__title .grad-coral,
.cta-final .cta-final__desc .grad-coral {
  -webkit-text-fill-color: var(--coral);
  color: var(--coral);
}

/* Responsive H2 size */
@media (max-width: 1024px) {
  h2,
  .section__title,
  .svc-sidebar__title,
  .principles-v2__title,
  .sectors-bridge__title,
  .faq-v2__title,
  .contact__copy h2,
  .cta-final h2.cta-final__title {
    font-size: 42px;
  }
}

@media (max-width: 720px) {
  /* h2 sizing — h3.section__title (AI cost CTA) stays larger via .section__title rule below */
  h2,
  .svc-sidebar__title,
  .principles-v2__title,
  .sectors-bridge__title,
  .faq-v2__title,
  .contact__copy h2,
  .cta-final h2.cta-final__title {
    font-size: 28px;
    letter-spacing: -0.02em;
  }
  .section__title {
    font-size: 34px;
    letter-spacing: -0.02em;
  }
}

/* ============================================================
   SERVICE PAGE — Social Media Marketing (shared .svc-page-*)
   Matches site palette: navy / blue / coral, soft section bg
   ============================================================ */

/* Service pages — editorial + devices hero: mobile stack = chip → title → copy → CTAs → stats → visual (matches on-page SEO) */

/* #main.svc-page editorial heroes — match home hero fold (body.html: .hero.hero--editorial) */

/* ---------- Service pages: Web Dev hero reuses home `.hero.hero--editorial` (see line ~6749) ---------- */

/* ---------- Web Dev — split showcase (overlapping imagery + features; brand accents) ---------- */
section.section.svc-transform {
  background: #f5f7fa;
}

/* AI Marketing — choose agency: single visual; image column matches copy height (desktop) */

/* Choosing agency — mobile: drop stretched column + fixed 3:4 frame so image hugs natural height (no dead space under asset) */

/* Web Dev showcase — mobile: tight photo stack (drop min-height + forced 3:4 frame that leaves a blank band above the overlapping secondary image) */
#svc-webdev-transform .svc-transform__desc a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}
.svc-transform__bullets li:hover::before {
  transform: translateY(-50%) translateX(8px);
}
.svc-transform__bullets li:hover::after {
  transform: translateY(-60%) translateX(8px) rotate(45deg);
}
@media (prefers-reduced-motion: reduce) {
  .svc-transform__bullets li:hover::before {
    transform: translateY(-50%);
  }
  .svc-transform__bullets li:hover::after {
    transform: translateY(-60%) rotate(45deg);
  }
}
@media (max-width: 992px) {
  /* Consultant section only: flex column guarantees heading → copy → bullets → imagery (no grid side-by-side) */
}

/* AI Consultancy — “What Does an AI Consultant Do?”: mobile shell matches “What Is an AI Consultancy?” (heading → copy → bullets → single image) */

/* AI Consultancy — content left, image column right (not side-by-side on mobile) */

/* ---------- AI Consultancy — trust (card split: copy | image) ---------- */

/* ---------- AI Consultancy — Do you need AI? (situation matrix + icons) ---------- */

.svc-ai-need__row:hover {
  background: rgba(26, 95, 191, 0.04);
  box-shadow: inset 3px 0 0 var(--blue);
}

.svc-ai-need__row:hover .svc-ai-need__icon-wrap {
  background: linear-gradient(145deg, rgba(26, 95, 191, 0.18) 0%, rgba(255, 77, 58, 0.12) 100%);
  border-color: rgba(26, 95, 191, 0.35);
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 22px -10px rgba(26, 95, 191, 0.45);
}

.svc-ai-need__row:hover .svc-ai-need__icon {
  animation: svcAiNeedRowIcon 0.9s ease;
}

.svc-ai-need__row:hover .svc-ai-need__rec-icon {
  background: rgba(255, 77, 58, 0.2);
  transform: translateX(4px);
  color: var(--coral);
}

.svc-ai-need__row:hover .svc-ai-need__cell--accent {
  background: linear-gradient(180deg, rgba(255, 77, 58, 0.12), rgba(26, 95, 191, 0.06));
}

.svc-ai-need__table-wrap.reveal.is-visible .svc-ai-need__row {
  animation: svcAiNeedRowIn 0.65s var(--ease) both;
}

.svc-ai-need__table-wrap.reveal.is-visible .svc-ai-need__row:nth-child(2) {
  animation-delay: 0.06s;
}
.svc-ai-need__table-wrap.reveal.is-visible .svc-ai-need__row:nth-child(3) {
  animation-delay: 0.11s;
}
.svc-ai-need__table-wrap.reveal.is-visible .svc-ai-need__row:nth-child(4) {
  animation-delay: 0.16s;
}
.svc-ai-need__table-wrap.reveal.is-visible .svc-ai-need__row:nth-child(5) {
  animation-delay: 0.21s;
}
.svc-ai-need__table-wrap.reveal.is-visible .svc-ai-need__row:nth-child(6) {
  animation-delay: 0.26s;
}
.svc-ai-need__table-wrap.reveal.is-visible .svc-ai-need__row:nth-child(7) {
  animation-delay: 0.31s;
}

@keyframes svcAiNeedRowIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes svcAiNeedRowIcon {
  0% {
    transform: rotate(0deg) scale(1);
  }
  35% {
    transform: rotate(-12deg) scale(1.08);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .svc-ai-need__table-wrap.reveal.is-visible .svc-ai-need__row {
    animation: none;
  }

  .svc-ai-need__row:hover .svc-ai-need__icon-wrap {
    transform: none;
  }

  .svc-ai-need__row:hover .svc-ai-need__rec-icon {
    transform: none;
  }

  .svc-ai-need__row:hover .svc-ai-need__icon {
    animation: none;
  }
}

/* ---------- AI Consultancy: glass closing CTA under wd-compare table ---------- */

@media (max-width: 640px) {

  .svc-ai-need__row:hover {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    box-shadow: 0 16px 40px -18px rgba(15, 42, 74, 0.22);
  }
}

.section--svc {
  padding: 72px 0;
}

.section.section--svc.svc-ai-trust {
  padding-block: clamp(64px, 9vw, 100px);
}

.section.section--svc.svc-ai-need {
  padding-block: clamp(64px, 9vw, 96px);
}

/* AI Consultancy: hype section reuses WordPress about-split layout */

/* Equal columns, equal row height; image block grows to match prose */

/* AI Marketing — agency problems: image column matches prose column height (desktop) */

/* AI Consultancy: “When not AI” — dark band, glass cards (not seo-choose layout) */

@media (hover: hover) and (pointer: fine) {
  .svc-ai-honest__card:hover {
    border-color: rgba(255, 77, 58, 0.35);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 22px 48px -24px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 77, 58, 0.12);
    transform: translateY(-2px);
  }
}

.section--svc-soft {
  background: #ffffff;
}

/* Web development page: "Types of Websites We Build" cards */
.wd-type-card:hover {
  background: #fbfdff;
  box-shadow: inset 3px 0 0 var(--blue);
}

/* AI Marketing Agency — services follows “What is…”; remove extra top inset */

/* Social Media Marketing — equal columns for service list vs image panel */
.sl.active,
.sl:hover {
  background: rgba(255, 77, 58, .05);
  border-color: rgba(255, 77, 58, .18);
}
.sl.active::before,
.sl:hover::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
}
.sl.active .sl-num,
.sl.active .sl-name,
.sl.active .sl-desc,
.sl:hover .sl-num,
.sl:hover .sl-name,
.sl:hover .sl-desc {
  color: var(--navy);
}
.svc-img.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  box-shadow: 0 28px 60px rgba(7, 22, 41, .24);
}

/* ========== Process block (proc-sec) — reference: split list + dashboard + ROI float ========== */
.proc-sec {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--soft, #f5f7fa);
}

/* SEO audit block: industries-style head (centered title + grid + 360 outline) */
.proc-sec.proc-sec--audit.industries {
  background: var(--soft, #f5f7fa);
}
.proc-sec--audit .proc-sec__head-shell {
  position: relative;
  z-index: 2;
}
.proc-sec--audit .proc-sec__head-shell .section__head {
  margin-bottom: clamp(40px, 5vw, 56px);
  max-width: min(960px, 100%);
}
.proc-sec--audit .proc-sec__head-shell #seo-audit-proc-title {
  white-space: normal;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  font-size: clamp(17px, 3.55vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.proc-sec--audit .proc-in {
  z-index: 2;
}
.proc-sec--audit .proc-sec__col-text::before {
  display: none;
}

.proc-sec .proc-360 {
  position: absolute;
  left: 62%;
  top: 38%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 26vw, 320px);
  font-weight: 900;
  line-height: 1;
  color: rgba(15, 42, 74, .045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.proc-sec .proc-c1,
.proc-sec .proc-c2 {
  display: none;
}
.proc-sec .proc-in {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(36px, 5.5vw, 64px);
  align-items: center;
}
.proc-sec .proc-sec__col-text {
  position: relative;
  padding-left: min(28px, 4vw);
  padding-right: min(28px, 4vw);
}
.proc-sec .proc-sec__col-text::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 18%;
  width: min(220px, 40vw);
  height: min(220px, 40vw);
  border: 1px solid rgba(15, 42, 74, .07);
  border-radius: 50%;
  pointer-events: none;
}
.proc-sec .proc-sec__tag-line {
  display: inline-block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
  flex-shrink: 0;
}
.proc-sec .sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.proc-sec .ttl {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 14px;
}
.proc-sec .ttl span {
  color: var(--coral);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.proc-sec .sub {
  margin: 0;
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-3);
}
.proc-sec .proc-steps {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.proc-sec .pst {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px 20px;
  align-items: start;
  padding: 22px 22px;
  border-bottom: 1px solid var(--line);
  margin: 0;
  border-radius: 0;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: default;
  outline: none;
  transition: background .2s var(--ease);
}
.proc-sec .pst:focus-visible {
  background: rgba(255, 255, 255, .65);
  box-shadow:
    inset 0 0 0 2px rgba(26, 95, 191, .35),
    inset 0 0 0 3px rgba(255, 77, 58, .2);
}
.proc-sec .pst-n {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  padding-top: 0;
  transition: color .25s var(--ease);
}
.proc-sec .pst-content h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0;
  transition: color .25s var(--ease);
}
.proc-sec .pst-content p {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink-3);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition:
    opacity .35s var(--ease),
    max-height .4s var(--ease),
    margin-top .3s var(--ease);
}
.proc-sec .pst.is-active {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(26, 95, 191, .09) 0%,
    rgba(255, 77, 58, .06) 58%,
    transparent 100%
  );
}
.proc-sec .pst.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--coral) 100%);
}
.proc-sec .pst.is-active .pst-n {
  color: var(--blue);
}
.proc-sec .pst.is-active .pst-content h3 {
  color: var(--coral);
}
.proc-sec .pst:not(.is-active) .pst-n {
  color: var(--ink-4);
}
.proc-sec .pst:not(.is-active) .pst-content h3 {
  color: var(--navy);
}
.proc-sec .pst.is-active .pst-content p {
  max-height: 560px;
  opacity: 1;
  margin-top: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .proc-sec .pst:hover:not(.is-active) {
    background: rgba(255, 255, 255, .45);
  }
}
.proc-sec .proc-steps.proc-steps--touch .pst-content p {
  max-height: none;
  opacity: 1;
  margin-top: 10px;
}
.proc-sec .proc-steps.proc-steps--touch .pst-n {
  color: var(--ink-4);
}
.proc-sec .proc-steps.proc-steps--touch .pst-content h3 {
  color: var(--navy);
}
.proc-sec .proc-steps.proc-steps--touch .pst.is-active .pst-n {
  color: var(--blue);
}
.proc-sec .proc-steps.proc-steps--touch .pst.is-active .pst-content h3 {
  color: var(--coral);
}
.proc-sec .proc-right {
  position: relative;
}
.proc-sec .proc-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 42, 74, .16);
  aspect-ratio: 1 / 1;
  max-height: 520px;
}
.proc-sec .proc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.proc-sec .proc-float {
  position: absolute;
  right: -6px;
  bottom: 22px;
  max-width: min(248px, 90%);
  padding: 20px 22px 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(15, 42, 74, .14);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
}
.proc-sec .pf-v {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 8px;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.proc-sec .pf-l {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-3);
}
@media (max-width: 980px) {
  .proc-sec .proc-in {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .proc-sec .proc-360 {
    left: 72%;
    top: 62%;
  }
  .proc-sec .proc-right {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .proc-sec .proc-float {
    right: 8px;
    bottom: 14px;
  }
  .proc-sec .proc-sec__col-text::before {
    left: -40px;
    opacity: .85;
  }
}
@media (max-width: 560px) {
  .proc-sec .pst {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px 14px;
    padding: 18px 22px;
  }
  .proc-sec .pst-n {
    font-size: 20px;
  }
  .proc-sec .pst-content h3 {
    font-size: 17px;
  }
  .proc-sec .sub {
    font-size: 16px;
  }
  .proc-sec .proc-float {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    max-width: none;
  }
  .proc-sec .proc-sec__col-text {
    padding-left: 0;
    padding-right: 0;
  }
  .proc-sec .proc-sec__col-text::before {
    display: none;
  }
}
.svc-best-card:hover {
  transform: translateY(-7px);
  border-color: rgba(26, 95, 191, .28);
  box-shadow: 0 22px 42px rgba(15, 42, 74, .14);
}
.svc-best-card:hover::before,
.svc-best-card.is-active::before {
  transform: translateX(120%);
}
.svc-best-card.is-active {
  border-color: rgba(255, 77, 58, .28);
  box-shadow:
    0 18px 42px rgba(15, 42, 74, .14),
    0 0 0 1px rgba(255, 77, 58, .1);
}
.svc-best-card:hover .svc-best-card__media img {
  transform: scale(1.08);
  filter: brightness(.65);
}
.svc-best-card.is-active .svc-best-card__media img {
  transform: scale(1.04);
  filter: brightness(.72);
}
.svc-best-card:hover .svc-best-card__icon {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-2) 100%);
  box-shadow: 0 14px 30px rgba(255, 77, 58, .34);
}
.svc-best-card.is-active .svc-best-card__icon {
  animation: svcBestIconPulse 1.6s var(--ease-out) infinite;
}
@keyframes svcBestIconPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 24px rgba(26, 95, 191, .32);
  }
  50% {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 14px 34px rgba(255, 77, 58, .28);
  }
}
.svc-offer-card:hover {
  border-color: rgba(26, 95, 191, .25);
  box-shadow: var(--shadow-md);
}

/* ---------- Web Development Services ---------- */
.svc-split-card:hover {
  border-color: rgba(26, 95, 191, 0.22);
  box-shadow: var(--shadow-md);
}

/* Web development page: WooCommerce + migration redesign */

/* ---------- Web Dev: Classic comparison redesign ---------- */

/* SEO content writing + SEO audit services: unified score + criteria box + table spacing */

/* AI Marketing Agency — compare hero photo (Prompt Engineering / team collaboration) */

/* SEO Audit vs Free Website Audit — professional review backdrop */

/* AI Consultancy vs AI Automation Agency — AUTOMATION workshop backdrop */

/* SEO audit compare: two-column chip strip (free vs professional) */

/* SEO audit: table is only Free vs Professional (no criteria column) */

/* Clear 3-col X on 2nd cell; pro column checkmark only */
/* ---------- SEO content: search + AI dual section (hover motion) ---------- */
.seo-ai-dual__stat:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 77, 58, 0.45);
  box-shadow:
    0 20px 48px rgba(15, 42, 74, 0.1),
    0 0 0 1px rgba(255, 77, 58, 0.12),
    0 12px 40px rgba(255, 77, 58, 0.12);
  background: rgba(255, 255, 255, 0.95);
}
.seo-ai-dual__stat:hover .seo-ai-dual__stat-val {
  background: linear-gradient(135deg, var(--blue) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.seo-ai-card:hover,
.seo-ai-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(255, 77, 58, 0.35);
  box-shadow:
    0 28px 64px rgba(15, 42, 74, 0.12),
    0 0 0 1px rgba(255, 77, 58, 0.1),
    0 16px 48px rgba(26, 95, 191, 0.08);
}
.seo-ai-card:hover .seo-ai-card__shine,
.seo-ai-card:focus-within .seo-ai-card__shine {
  transform: translateX(120%);
}
.seo-ai-card:hover .seo-ai-card__tag,
.seo-ai-card:focus-within .seo-ai-card__tag {
  background: rgba(26, 95, 191, 0.16);
}
.seo-ai-card:hover .seo-ai-card__tag--ai,
.seo-ai-card:focus-within .seo-ai-card__tag--ai {
  background: rgba(255, 77, 58, 0.18);
}
.seo-ai-card:hover .seo-ai-card__title,
.seo-ai-card:focus-within .seo-ai-card__title {
  color: var(--blue);
}
.seo-ai-card:has(.seo-ai-card__tag--ai):hover .seo-ai-card__title,
.seo-ai-card:has(.seo-ai-card__tag--ai):focus-within .seo-ai-card__title {
  color: var(--coral);
}
.seo-ai-dual__geo:hover .seo-ai-dual__geo-inner {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 58, 0.25);
  box-shadow: 0 20px 52px rgba(15, 42, 74, 0.1);
}
.seo-ai-dual__geo:hover .seo-ai-dual__geo-inner::before {
  transform: scaleY(1.06);
}
.seo-ai-dual__cta .btn:hover svg,
.seo-ai-dual__cta .btn:focus-visible svg {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .seo-ai-dual__stat:hover {
    transform: none;
  }
  .seo-ai-card:hover,
  .seo-ai-card:focus-within {
    transform: none;
  }
  .seo-ai-dual__geo:hover .seo-ai-dual__geo-inner {
    transform: none;
  }
}

/* On-page SEO: 4-column educational table — hide challenger ✕ markers on desktop only
   (mobile compare layout reuses nth-child labels via ::before). */

/* WordPress sub-service page: distinct but brand-consistent visuals */

/* WordPress page: about / company two-column block */
.wp-about-split__figure:hover .wp-about-split__img {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 36px 72px rgba(15, 42, 74, 0.16),
    0 16px 36px rgba(26, 95, 191, 0.14);
  filter: saturate(1.06);
}
.wp-about-split__figure:hover .wp-about-split__figure-bg {
  transform: translate(-8px, -8px) scale(1.04);
  opacity: 0.97;
}
@media (prefers-reduced-motion: reduce) {
  .wp-about-split__figure:hover .wp-about-split__img,
  .wp-about-split__figure:hover .wp-about-split__figure-bg {
    transform: none;
    filter: none;
  }
  .wp-about-split__figure:hover .wp-about-split__img {
    box-shadow: none;
  }
  .wp-about-split__figure:hover .wp-about-split__figure-bg {
    opacity: 1;
  }
}

/* Stagger scroll-in for feature rows (each row has own .reveal) */
.wp-about-split__feature:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 14px 40px rgba(15, 42, 74, 0.09),
    0 0 0 1px rgba(26, 95, 191, 0.12);
  border-bottom-color: transparent;
}
.wp-about-split__feature:hover .wp-about-split__feature-body {
  transform: translateX(2px);
}
.wp-about-split__feature:hover .wp-about-split__ico {
  animation-play-state: paused;
  transform: scale(1.08) rotate(-5deg) translateY(-4px);
  background: linear-gradient(145deg, var(--coral) 0%, var(--coral-2) 100%);
  color: var(--white);
  box-shadow:
    0 16px 40px rgba(255, 77, 58, 0.38),
    0 0 0 2px rgba(255, 255, 255, 0.35) inset;
  filter: saturate(1.05);
}
.wp-about-split__feature:hover .wp-about-split__ico svg {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .wp-about-split__feature:hover,
  .wp-about-split__feature:hover .wp-about-split__feature-body,
  .wp-about-split__feature:hover .wp-about-split__ico,
  .wp-about-split__feature:hover .wp-about-split__ico svg {
    transform: none;
  }
}
.wp-about-split__feature:hover .wp-about-split__feature-title {
  color: var(--coral);
}
.wp-about-split__phone:hover {
  color: var(--navy);
}
.wp-about-split__phone:hover .wp-about-split__phone-ico {
  background: linear-gradient(145deg, var(--coral) 0%, var(--coral-2) 100%);
  color: var(--white);
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 14px 36px rgba(255, 77, 58, 0.42),
    0 6px 16px rgba(255, 77, 58, 0.22);
  filter: saturate(1.05);
}
.wp-about-split__phone:hover .wp-about-split__phone-ico svg {
  transform: scale(1.08);
}
.wp-about-split__phone:hover .wp-about-split__phone-label {
  color: var(--coral);
}
.wp-about-split__phone:hover .wp-about-split__phone-num {
  color: var(--coral);
}
@media (prefers-reduced-motion: reduce) {
  .wp-about-split__phone:hover .wp-about-split__phone-ico,
  .wp-about-split__phone:hover .wp-about-split__phone-ico svg {
    transform: none;
  }
}
@media (max-width: 520px) {
  .wp-about-split__feature:hover {
    transform: translateX(4px);
  }
}
/* WordPress offerings: 3×2 grid + homepage-style icons + blue hover */
.wp-svc-card:hover .wp-svc-card__ring {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(255, 255, 255, 0.42);
  animation: wpSvcRingSpin 8s linear infinite;
}
@keyframes wpSvcRingSpin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
.wp-svc-card:hover .wp-svc-card__icon {
  animation-play-state: paused;
  transform: scale(1.06) rotate(-5deg);
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}
.wp-svc-card:hover .wp-svc-card__icon svg {
  transform: scale(1.1) rotate(5deg);
}
.wp-svc-card:hover {
  background: linear-gradient(145deg, #0f2a4a 0%, #132d4f 42%, #1a5fbf 110%);
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 32px 64px rgba(26, 95, 191, 0.35),
    0 12px 28px rgba(15, 42, 74, 0.2);
  z-index: 2;
}
.wp-svc-card:hover .wp-svc-card__title,
.wp-svc-card:hover .wp-svc-card__text {
  color: var(--white);
}
@media (prefers-reduced-motion: reduce) {
  .wp-svc-card:hover .wp-svc-card__ring {
    animation: none;
  }
  .wp-svc-card:hover {
    transform: none;
  }
  .wp-svc-card:hover .wp-svc-card__icon,
  .wp-svc-card:hover .wp-svc-card__icon svg {
    transform: none;
  }
}

/* WordPress page: split hero (copy + photo + floating cards, brand colours) */
/* Match home hero (editorial) button look — ghost-play is otherwise scoped to .hero--editorial only */
.wp-hero-split .btn.btn--coral.btn--lg:hover,
.wp-about-split .btn.btn--coral.btn--lg:hover {
  background: var(--coral-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 77, 58, 0.35);
}
.wp-hero-split .btn.btn--ghost-play:hover {
  background: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
/* Full composite artwork (photo + embedded UI/doodles) — hide extra floating HTML widgets */

/* Hero image: gentle continuous drift (not positional layout shift) */

/* Contact Us page — hero (photo + overlay + breadcrumb pill) */
/* Uses shared .btn.btn--primary.btn--compact (home nav / CTAs) */
.contact-page-hero__crumb-track a:hover {
  opacity: 0.92;
}
.contact-page-highlight-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255,111,89,.55);
  box-shadow:
    0 24px 56px rgba(15,42,74,.18),
    0 0 0 1px rgba(255,111,89,.18) inset;
}
.contact-page-highlight-card:hover::after {
  left: 150%;
}
.contact-page-highlight-card:hover .contact-page-highlight-card__icon {
  color: var(--coral);
  transform: translateY(-2px) scale(1.08);
  background: linear-gradient(135deg, rgba(30,136,255,.18), rgba(255,111,89,.26));
}
@media (prefers-reduced-motion: reduce) {
  .contact-page-highlight-card:hover {
    transform: none;
  }
}
/* Typography: same as site h2 (see UNIFIED H2 HEADING SYSTEM) */
.contact-simple__form input:focus,
.contact-simple__form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 95, 191, 0.12);
}
.contact-page-map__card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,84,42,.35);
  box-shadow: 0 16px 34px rgba(30,58,95,.14);
}
.contact-page-map__card:hover .contact-page-map__title-icon {
  transform: scale(1.08) rotate(-4deg);
  color: #E8542A;
}
.contact-page-map__steps li:hover {
  transform: translateX(3px);
  color: #0f2a4a;
}
.contact-live-chat__open {
  width: 100%;
  margin-bottom: 12px;
  justify-content: center;
}
.contact-live-chat__composer-trigger:hover {
  border-color: rgba(26, 95, 191, 0.35);
  background: rgba(26, 95, 191, 0.06);
  box-shadow: 0 4px 16px rgba(15, 42, 74, 0.06);
}
.contact-live-chat__chip:hover {
  background: rgba(26, 95, 191, 0.16);
  border-color: rgba(26, 95, 191, 0.35);
  color: var(--blue);
}
.contact-quick-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,111,89,.35);
  box-shadow: 0 18px 36px rgba(15,42,74,.15);
}
.contact-quick-card__bottom a:not(.btn):hover {
  color: var(--blue);
}
.contact-quick-card:hover .contact-quick-card__icon {
  transform: translateY(-2px) scale(1.1) rotate(-6deg);
  color: var(--coral);
  box-shadow: 0 14px 28px rgba(255,111,89,.3);
}
@media (prefers-reduced-motion: reduce) {
  .contact-quick-card:hover,
  .contact-quick-card:hover .contact-quick-card__icon {
    transform: none;
  }
}

/* ---------- AI Consultancy — certification stripes (post-hero) ---------- */

@media (hover: hover) and (pointer: fine) {
  .ai-cert-stripes__item:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 111, 224, 0.22);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 22px 48px -24px rgba(15, 42, 74, 0.28),
      0 0 0 1px rgba(255, 77, 58, 0.08);
  }

  .ai-cert-stripes__item:hover .ai-cert-stripes__icon-wrap {
    color: var(--coral);
    border-color: rgba(255, 77, 58, 0.28);
    background: linear-gradient(155deg, rgba(255, 77, 58, 0.1), rgba(26, 111, 224, 0.06));
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.7) inset,
      0 12px 28px -14px rgba(255, 77, 58, 0.35);
  }

  .ai-cert-stripes__item:hover .ai-cert-stripes__icon {
    animation: none;
    transform: scale(1.06);
  }
}

@media (hover: hover) and (pointer: fine) {
  .ai-cert-stripes__item:hover::before {
    opacity: 1;
    transform: scaleX(1.15);
    transform-origin: left center;
  }
}

/* 2 cols + lone 5th row: center the last card */

/* 3 cards + 2 centered below */

@media (prefers-reduced-motion: reduce) {

  .ai-cert-stripes__item:hover {
    transform: none !important;
  }
}

/* About Us — sectors (certification stripes layout, 6 items) */

/* ---------- AI Consultancy — about showcase (hero + copy) ---------- */

/* ---------- Web Dev — post-hero outlined marquee ticker ---------- */
/* Post-hero ticker — on-page SEO (soft grey band like reference) */

/* ---------- Itzone-inspired strips (Web Dev service page) ---------- */
/* Inspiration: keyword ribbon + stat row + progress panel (e.g. Dreamlayout Itzone IT template) */
.svc-skill-grid.reveal.is-visible .svc-skill:nth-child(1) .svc-skill__fill {
  width: var(--p);
}
.svc-skill-grid.reveal.is-visible .svc-skill:nth-child(2) .svc-skill__fill {
  width: var(--p);
  transition-delay: 0.12s;
}
.svc-skill-grid.reveal.is-visible .svc-skill:nth-child(3) .svc-skill__fill {
  width: var(--p);
  transition-delay: 0.24s;
}

/* Contact map cards interaction override */
.contact-page-map__card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,84,42,.35);
  box-shadow: 0 16px 34px rgba(30,58,95,.14);
}
.contact-page-map__card:hover .contact-page-map__title-icon {
  transform: scale(1.08) rotate(-4deg);
  color: #E8542A;
}
.contact-page-map__steps li:hover {
  transform: translateX(3px);
  color: #0f2a4a;
}

/* Contact quick section: 4 cards with office hours */

/* Contact page: What Happens Next arc section */

/* Contact page: force full-width map frame */

/* Screenshot-like step flow with brand colors */

/* Keep quick-card icons on brand palette */
.contact-quick-card:hover .contact-quick-card__icon {
  color: #E8542A;
}

/* Premium polish: What Happens Next */
.contact-steps-arc__item:hover .contact-steps-arc__badge {
  transform: translateY(-5px) scale(1.04);
  box-shadow:
    0 18px 30px rgba(15,42,74,.35),
    0 0 0 4px rgba(232,84,42,.22),
    inset 0 1px 0 rgba(255,255,255,.35);
}

/* Exact-style process block (screenshot inspired) */

/* ============================================================
   Why London Businesses Choose 360 — premium standalone section
   (used on /services/social-media-marketing)
   ============================================================ */

.smm-why__feature:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 77, 58, .35);
  box-shadow: 0 18px 40px -24px rgba(15, 42, 74, .22);
}

/* ============================================================
   "Why Most Social Media Marketing Doesn't Work" — diagnosis
   2-column section with numbered hover-list + dashboard visual
   (used on /services/social-media-marketing)
   ============================================================ */
/* Centered header above the diagnosis grid */

/* Active state — default first item, OR :hover, OR keyboard :focus-visible */
.smm-diag__item.is-active .smm-diag__num,
.smm-diag__item:hover .smm-diag__num,
.smm-diag__item:focus-visible .smm-diag__num {
  color: var(--coral);
}
.smm-diag__item.is-active .smm-diag__body h3,
.smm-diag__item:hover .smm-diag__body h3,
.smm-diag__item:focus-visible .smm-diag__body h3 {
  color: var(--coral);
}
.smm-diag__item.is-active .smm-diag__dot,
.smm-diag__item:hover .smm-diag__dot,
.smm-diag__item:focus-visible .smm-diag__dot {
  opacity: 1;
  transform: scale(1);
}
.smm-diag__item.is-active .smm-diag__body p,
.smm-diag__item:hover .smm-diag__body p,
.smm-diag__item:focus-visible .smm-diag__body p {
  max-height: 280px;
  opacity: 1;
  margin-top: 8px;
}

/* When user hovers/focuses a sibling, deactivate the default .is-active —
   but only BEFORE a deliberate click has set a sticky selection.
   After a click (`.has-selection`), the clicked item stays open even
   while a sibling is being hovered. */
.smm-diag__list:not(.has-selection):hover .smm-diag__item.is-active:not(:hover) .smm-diag__num,
.smm-diag__list:not(.has-selection):focus-within .smm-diag__item.is-active:not(:focus-visible) .smm-diag__num {
  color: rgba(15, 42, 74, .28);
}
.smm-diag__list:not(.has-selection):hover .smm-diag__item.is-active:not(:hover) .smm-diag__body h3,
.smm-diag__list:not(.has-selection):focus-within .smm-diag__item.is-active:not(:focus-visible) .smm-diag__body h3 {
  color: var(--ink-3);
}
.smm-diag__list:not(.has-selection):hover .smm-diag__item.is-active:not(:hover) .smm-diag__dot,
.smm-diag__list:not(.has-selection):focus-within .smm-diag__item.is-active:not(:focus-visible) .smm-diag__dot {
  opacity: 0;
  transform: scale(.6);
}
.smm-diag__list:not(.has-selection):hover .smm-diag__item.is-active:not(:hover) .smm-diag__body p,
.smm-diag__list:not(.has-selection):focus-within .smm-diag__item.is-active:not(:focus-visible) .smm-diag__body p {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

/* RIGHT column visual */

/* ============================================================
   "Platforms We Manage" — clean white editorial section
   (used on /services/social-media-marketing)
   ============================================================ */

/* HEADER (centered) */

/* PLATFORM LIST */

.smm-p-row:hover,
.smm-p-row:focus-within {
  background: #fafbfd;
  border-color: rgba(15, 42, 74, .14);
  box-shadow: 0 12px 30px -16px rgba(15, 42, 74, .14);
}

.smm-p-row:hover::before,
.smm-p-row:focus-within::before {
  opacity: 1;
}

.smm-p-row:hover .smm-p-ico,
.smm-p-row:focus-within .smm-p-ico {
  transform: scale(1.1);
}

.smm-p-row:hover .smm-p-pill,
.smm-p-row:focus-within .smm-p-pill {
  border-color: var(--c, var(--coral));
  color: var(--navy);
}

.smm-p-row:hover .smm-p-btn,
.smm-p-row:focus-within .smm-p-btn {
  background: var(--c, var(--coral));
  border-color: var(--c, var(--coral));
  color: #fff;
  transform: rotate(45deg);
}

/* FOOTER ROW */

.smm-platforms__footer-links a:hover {
  color: var(--coral);
}

/* AI consultancy use cases — same card grid as SMM platforms; slightly wider “function” column */

/* Responsive */

/* ============================================================
   Social Media Marketing hero — single illustration
   (replaces the multi-device mockup composite on this page)
   ============================================================ */
.hero__photo--smm-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  min-height: 500px;
}

.hero__smm-illustration {
  width: 100%;
  height: auto;
  max-width: 620px;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(15, 42, 74, .18))
          drop-shadow(0 8px 18px rgba(255, 77, 58, .08));
}

@media (max-width: 900px) {
  .hero__photo--smm-illustration {
    min-height: 360px;
  }
  .hero__smm-illustration {
    max-width: 460px;
    max-height: 460px;
  }
}

@media (max-width: 600px) {
  .hero__smm-illustration {
    max-width: 360px;
    max-height: 360px;
  }
}

/* ---------- On-Page SEO hero: balanced columns, home-style frame, subtle SERP tint ---------- */
.hero.hero--editorial.hero--webdev-mockups.hero--on-page-seo .hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 5vw, 72px);
  align-items: center;
}

.hero.hero--editorial.hero--webdev-mockups.hero--on-page-seo .hero__photo.hero__photo--on-page-seo {
  aspect-ratio: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero.hero--webdev-mockups.hero--on-page-seo .hero__photo.hero__photo--devices.hero__photo--on-page-seo {
  min-height: auto;
}

/* Hero H1: exactly three lines — line 1 / line 2 / remainder */
.hero.hero--on-page-seo #seo-hero-title .hero__title-line {
  display: block;
}
@media (min-width: 560px) {
  .hero.hero--on-page-seo #seo-hero-title.hero__title > span.hero__title-line:nth-of-type(1),
  .hero.hero--on-page-seo #seo-hero-title.hero__title > span.hero__title-line:nth-of-type(2) {
    white-space: nowrap;
  }
}

.hero__on-page-seo-frame {
  position: relative;
  width: 100%;
  max-width: min(100%, 520px);
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(15, 42, 74, .22),
    0 4px 0 rgba(255, 255, 255, .6) inset;
  background:
    radial-gradient(ellipse 85% 65% at 18% 22%, rgba(26, 95, 191, .14), transparent 52%),
    radial-gradient(ellipse 70% 55% at 88% 78%, rgba(255, 77, 58, .12), transparent 50%),
    linear-gradient(155deg, rgba(248, 250, 253, 1) 0%, rgba(235, 241, 252, 1) 100%);
  isolation: isolate;
  animation: onPageSeoHeroFloat 9s ease-in-out infinite;
}

.hero__on-page-seo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(26, 95, 191, .14);
  pointer-events: none;
  z-index: 3;
}

.hero__on-page-seo-frame::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 58, .95) 35%, rgba(26, 95, 191, .95) 72%, transparent);
  z-index: 4;
  pointer-events: none;
}

.hero__on-page-seo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 1;
}

.hero__on-page-seo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(26, 95, 191, .07) 0%, transparent 38%),
    linear-gradient(305deg, rgba(255, 77, 58, .06) 0%, transparent 36%),
    linear-gradient(180deg, rgba(15, 42, 74, 0) 52%, rgba(15, 42, 74, .09) 100%);
}

@keyframes onPageSeoHeroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__on-page-seo-frame {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .hero.hero--webdev-mockups.hero--on-page-seo .hero__photo.hero__photo--devices.hero__photo--on-page-seo {
    min-height: auto;
  }
  .hero__on-page-seo-frame {
    max-width: min(100%, 480px);
  }
}

@media (max-width: 720px) {
  .hero__on-page-seo-frame {
    max-width: min(100%, 420px);
  }
}

@media (max-width: 520px) {
  .hero__on-page-seo-frame {
    max-width: 100%;
    border-radius: 20px;
  }
  .hero__on-page-seo-frame::before {
    border-radius: 20px;
  }
}

/* SEO Audit — hero illustration treatment */
.hero__photo--seo-audit-hero .hero__smm-illustration {
  border-radius: clamp(14px, 2.2vw, 24px);
}

/* =====================================================================
   AI Consultancy — equal columns, intrinsic image + floating animation
   ===================================================================== */
@keyframes aiConsultancyHeroDrift {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1.012); }
}
@keyframes aiConsultancyHeroGlow {
  0%, 100% {
    filter:
      drop-shadow(0 24px 48px rgba(15, 42, 74, .24))
      drop-shadow(0 10px 22px rgba(26, 95, 191, .10));
  }
  50% {
    filter:
      drop-shadow(0 32px 60px rgba(15, 42, 74, .30))
      drop-shadow(0 14px 28px rgba(255, 77, 58, .12));
  }
}

.hero.hero--editorial.hero--webdev-mockups.hero--ai-consultancy .hero__inner {
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 0.68fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

.hero.hero--ai-consultancy .hero__photo.hero__photo--devices.hero__photo--ai-consultancy-hero {
  min-height: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 8px 0;
}

.hero__photo--ai-consultancy-hero .hero__smm-illustration {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(720px, 82vh);
  object-fit: contain;
  object-position: center;
  border-radius: clamp(14px, 2.2vw, 22px);
  border: 1px solid rgba(15, 42, 74, .08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .8) inset,
    0 22px 56px -24px rgba(15, 42, 74, .36),
    0 0 0 1px rgba(26, 95, 191, .06);
  animation:
    aiConsultancyHeroDrift 7s ease-in-out infinite,
    aiConsultancyHeroGlow 10s ease-in-out infinite;
  will-change: transform, filter;
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo--ai-consultancy-hero .hero__smm-illustration {
    animation: none;
    will-change: auto;
  }
}

@media (min-width: 768px) {
  .hero.hero--ai-consultancy .hero__photo--ai-consultancy-hero .hero__smm-illustration {
    max-height: min(720px, 82vh);
  }
}

@media (max-width: 767px) {
  .hero.hero--ai-consultancy .hero__photo.hero__photo--devices.hero__photo--ai-consultancy-hero {
    overflow: visible;
  }
  .hero.hero--ai-consultancy .hero__photo--ai-consultancy-hero .hero__smm-illustration {
    margin-inline: auto;
    max-height: min(92vw, 540px);
  }
}

@media (max-width: 900px) and (min-width: 768px) {
  .hero.hero--ai-consultancy .hero__photo.hero__photo--devices.hero__photo--smm-illustration {
    min-height: 0;
  }
}

/* AI Marketing Agency — photographic robot hero asset */
.hero__photo--ai-marketing-hero .hero__smm-illustration {
  border-radius: clamp(14px, 2.2vw, 24px);
  max-width: min(100%, 680px);
  max-height: min(92vw, 640px);
}

@media (max-width: 900px) {
  .hero__photo--ai-marketing-hero .hero__smm-illustration {
    max-height: min(88vw, 520px);
  }
}

@media (max-width: 600px) {
  .hero__photo--ai-marketing-hero .hero__smm-illustration {
    max-height: min(92vw, 420px);
  }
}

@keyframes seoContentHeroPhotoDrift {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes seoContentHeroPhotoGlow {
  0%, 100% {
    filter:
      drop-shadow(0 26px 52px rgba(15, 42, 74, 0.26))
      drop-shadow(0 10px 24px rgba(26, 95, 191, 0.12));
  }
  50% {
    filter:
      drop-shadow(0 34px 64px rgba(15, 42, 74, 0.32))
      drop-shadow(0 14px 30px rgba(255, 77, 58, 0.14));
  }
}

/* SEO Content Writing hero — intrinsic image size (1024² asset), frame + gentle motion */
.hero.hero--seo-content-writing .hero__photo.hero__photo--devices.hero__photo--seo-content-hero.hero__photo--smm-illustration {
  min-height: 0;
}

.hero__photo--seo-content-hero .hero__smm-illustration {
  width: auto;
  height: auto;
  max-width: min(100%, 1024px);
  max-height: min(100%, 1024px);
  object-fit: contain;
  object-position: center;
  border-radius: clamp(14px, 2.2vw, 22px);
  border: 1px solid rgba(15, 42, 74, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 22px 56px -24px rgba(15, 42, 74, 0.38),
    0 0 0 1px rgba(26, 95, 191, 0.06);
  animation:
    seoContentHeroPhotoDrift 7s ease-in-out infinite,
    seoContentHeroPhotoGlow 10s ease-in-out infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero__photo--seo-content-hero .hero__smm-illustration {
    animation: none;
    will-change: auto;
  }
}

/* Desktop: vertical centre columns; photo keeps natural aspect inside grid column */
@media (min-width: 768px) {
  .hero.hero--editorial.hero--webdev-mockups.hero--seo-content-writing .hero__inner {
    align-items: center;
    min-height: 0;
  }

  .hero.hero--seo-content-writing .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .hero.hero--seo-content-writing .hero__photo.hero__photo--devices.hero__photo--seo-content-hero.hero__photo--smm-illustration {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 4px 0 8px;
  }

  .hero.hero--seo-content-writing .hero__photo--seo-content-hero .hero__smm-illustration {
    max-height: min(1024px, 82vh);
  }
}

@media (max-width: 767px) {
  .hero.hero--seo-content-writing .hero__photo.hero__photo--devices.hero__photo--seo-content-hero {
    overflow: visible;
  }

  .hero.hero--seo-content-writing .hero__photo--seo-content-hero .hero__smm-illustration {
    margin-inline: auto;
    max-height: min(92vw, 1024px);
  }
}

@media (max-width: 900px) and (min-width: 768px) {
  .hero.hero--seo-content-writing .hero__photo.hero__photo--devices.hero__photo--smm-illustration {
    min-height: 0;
  }
}

/* =====================================================================
   On-Page SEO — trust headline + feature cards (brand palette)
   ===================================================================== */

.seo-trust-card:hover {
  background: rgba(245, 247, 250, .65);
}

.seo-trust-card:hover::after {
  opacity: 1;
}

.seo-trust-card:hover .seo-trust-card__icon {
  background: linear-gradient(135deg, rgba(26, 95, 191, .2) 0%, rgba(255, 77, 58, .12) 100%);
  color: var(--navy);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  /* horizontal rule between rows */
  /* vertical divider in middle */
}

/* SEO content writing — “includes” variant: 8 cells in trust-style bordered grid */
section#seo-content-includes {
  background: #f5f7fa;
}

section#seo-content-writing-process {
  background: #f5f7fa;
}

/* AI Marketing — who needs: remove extra top gap */
section#ai-marketing-who-needs.seo-trust.section--svc {
  padding-top: 0;
}

/* AI Marketing — who needs: three trust cards (default grid is four columns) */

/* =====================================================================
   On-Page SEO — editorial split (collage visual + prose)
   ===================================================================== */

section#ai-marketing-why-ai-powered {
  background: #f5f7fa;
}

/* On-page SEO — editorial split: match image column width to copy column */

/* Desktop: copy is first in DOM for mobile stack order — pin visual left, copy right */

/* —— Visual column —— */

/* —— Copy column —— */

/* SEO content writing — includes list in split column */

@media (max-width: 968px) {
  /* Id-qualified grid above beats generic `.seo-split__grid` — force single column on phones */
}

/* —— SEO Explained: primer copy + browser mockup (on-page SEO) —— */

/* —— Who needs on-page SEO — split + accordion rail + collage —— */

/* Centred intro: full row width for a long one-line title; lede stays narrower below */

.seo-who-needs .section__head.reveal.is-visible {
  max-width: 100%;
}

/* Match page H2 pattern (navy + coral); single line where width allows */

/* Row height follows the accordion column; image fills this slot (no extra height below last accordion). */

/* Brand gradient rail; strengthens when a panel is open */

.seo-who-needs__acc[open]::before {
  opacity: 1;
  transform: scaleY(1);
}

.seo-who-needs__acc:not([open]):hover {
  transform: translateY(-3px);
  border-color: rgba(26, 111, 224, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 50px -28px rgba(15, 42, 74, 0.28),
    0 0 0 1px rgba(26, 111, 224, 0.06);
}

.seo-who-needs__acc[open] {
  border-color: rgba(26, 111, 224, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 56px -30px rgba(26, 111, 224, 0.18),
    0 0 0 1px rgba(26, 111, 224, 0.08);
}

.seo-who-needs__acc:not([open]) .seo-who-needs__acc-summary:hover {
  background: linear-gradient(180deg, rgba(26, 111, 224, 0.06) 0%, transparent 55%);
}

/* Circular chevron control */

.seo-who-needs__acc:not([open]) .seo-who-needs__acc-summary:hover .seo-who-needs__acc-q {
  color: var(--blue);
}

.seo-who-needs__acc:not([open]) .seo-who-needs__acc-summary:hover .seo-who-needs__acc-chev {
  background: rgba(26, 111, 224, 0.14);
  transform: scale(1.06);
}

.seo-who-needs__acc:not([open]) .seo-who-needs__acc-summary:hover .seo-who-needs__acc-chev::after {
  border-right-color: var(--blue);
  border-bottom-color: var(--blue);
  opacity: 1;
}

.seo-who-needs__acc[open] .seo-who-needs__acc-q {
  color: var(--blue);
}

.seo-who-needs__acc[open] .seo-who-needs__acc-summary {
  padding-bottom: 10px;
}

.seo-who-needs__acc[open] .seo-who-needs__acc-chev {
  background: rgba(26, 111, 224, 0.14);
}

.seo-who-needs__acc[open] .seo-who-needs__acc-chev::after {
  transform: translate(-52%, -55%) rotate(135deg);
  border-right-color: var(--blue);
  border-bottom-color: var(--blue);
  opacity: 1;
}

/* Smooth disclosure using grid-template-rows */

.seo-who-needs__acc[open] .seo-who-needs__acc-body {
  grid-template-rows: 1fr;
}

.seo-who-needs__acc[open] .seo-who-needs__acc-body-inner {
  opacity: 1;
  transform: translateY(0);
}

.seo-who-needs__acc-summary:focus-visible {
  outline: 2px solid rgba(26, 111, 224, 0.45);
  outline-offset: 3px;
  border-radius: 14px;
}

@keyframes seoWhoAccIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.seo-who-needs__content.reveal.is-visible .seo-who-needs__acc {
  opacity: 0;
  animation: seoWhoAccIn 0.55s var(--ease) forwards;
}

.seo-who-needs__content.reveal.is-visible .seo-who-needs__acc:nth-child(1) {
  animation-delay: 0.04s;
}
.seo-who-needs__content.reveal.is-visible .seo-who-needs__acc:nth-child(2) {
  animation-delay: 0.11s;
}
.seo-who-needs__content.reveal.is-visible .seo-who-needs__acc:nth-child(3) {
  animation-delay: 0.18s;
}
.seo-who-needs__content.reveal.is-visible .seo-who-needs__acc:nth-child(4) {
  animation-delay: 0.25s;
}

@media (prefers-reduced-motion: reduce) {

  .seo-who-needs__content.reveal.is-visible .seo-who-needs__acc {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .seo-who-needs__acc:not([open]):hover {
    transform: none;
  }
}

/* Hero visual (single image) — desktop: height matches accordion stack via visual-slot + absolute fill */

/* —— On-page SEO — results you can expect —— */

#on-page-seo-results .seo-results-expect__text a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}

#on-page-seo-process .proc-desc__text a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}

#seo-include .svc-img-desc a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}

#seo-audit-process .pst-content p a.brand-link:hover,
#why-choose-seo-audit .seo-choose__text a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}

#svc-ai-about .svc-ai-about__para a.brand-link:hover,
#svc-ai-trust-market .svc-ai-trust__copy a.brand-link:hover,
#svc-ai-why-choose .seo-choose__text a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}

#seo-content-built-for-rankings .seo-split__content p a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}

#seo-content-we-offer .svc-img-desc a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}

#ai-marketing-tools-human-strategy .svc-ai-trust__copy a.brand-link:hover,
#ai-marketing-services-include .svc-img-desc a.brand-link:hover,
#ai-marketing-why-ai-powered .seo-split__content p a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}

#services .svc-hdr .sub a.brand-link:hover,
#outcomes .ind-card__desc a.brand-link:hover {
  color: var(--coral-2) !important;
  -webkit-text-fill-color: var(--coral-2) !important;
  text-decoration: underline !important;
}

/* —— Why on-page SEO matters —— */

/* On-page SEO — equal width for copy vs visual */

/* SEO content writing — improving existing: stretch visual to match copy column height */

/* SEO audit: “how long” subsection cards */

/* Scroll-in: slide from left + stagger uses existing .reveal --delay */

#seo-audit-duration .seo-audit-time__item.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes seo-audit-time-bar-shimmer {
  0%, 100% {
    filter: brightness(1);
    box-shadow: 0 0 0 0 transparent;
  }
  50% {
    filter: brightness(1.12);
    box-shadow: 0 0 14px -2px rgba(255, 77, 58, 0.35);
  }
}

#seo-audit-duration .seo-audit-time__item.reveal.is-visible::before {
  animation: seo-audit-time-bar-shimmer 4.2s ease-in-out infinite;
  animation-delay: calc(var(--delay, 0s) + 0.35s);
}

@media (hover: hover) and (pointer: fine) {
  #seo-audit-duration .seo-audit-time__item.reveal.is-visible:hover {
    transform: translate3d(0, -5px, 0);
    border-color: rgba(255, 77, 58, 0.2);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.88) inset,
      0 22px 44px -22px rgba(15, 42, 74, 0.18),
      0 0 0 1px rgba(255, 77, 58, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  }

  #seo-audit-duration .seo-audit-time__item.reveal.is-visible:hover::before {
    width: 4px;
    top: 10px;
    bottom: 10px;
    animation: none;
    filter: brightness(1.08);
    box-shadow: 0 0 18px rgba(255, 77, 58, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  
  #seo-audit-duration .seo-audit-time__item.reveal.is-visible {
    transition-duration: 0.01ms;
    animation: none !important;
    transform: none;
    opacity: 1;
  }

  #seo-audit-duration .seo-audit-time__item.reveal.is-visible::before {
    animation: none !important;
  }

  #seo-audit-duration .seo-audit-time__item.reveal.is-visible:hover {
    transform: none;
  }
}

/* On-page SEO: id-qualified grid stays 2 cols unless overridden — stack copy → visual (matches editorial split mobile) */

/* ---------- SEO audit services: pricing tiers ---------- */

@keyframes seo-audit-cost-bar-pulse {
  0%, 100% {
    filter: brightness(1);
    opacity: 0.78;
  }
  50% {
    filter: brightness(1.2);
    opacity: 1;
  }
}

.seo-audit-cost__card.reveal.is-visible::before {
  animation: seo-audit-cost-bar-pulse 3.8s ease-in-out infinite;
  animation-delay: calc(var(--delay, 0s) + 0.25s);
}

/* Scroll reveal + stagger */

#seo-audit-cost .seo-audit-cost__card.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

#seo-audit-cost .seo-audit-cost__card--featured.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  #seo-audit-cost .seo-audit-cost__card.reveal.is-visible:hover {
    transform: translate3d(0, -8px, 0) scale(1.01);
    border-color: rgba(255, 77, 58, 0.26);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 28px 56px -26px rgba(15, 42, 74, 0.22),
      0 0 0 1px rgba(15, 42, 74, 0.06);
  }

  #seo-audit-cost .seo-audit-cost__card--featured.reveal.is-visible:hover {
    transform: translate3d(0, -8px, 0) scale(1.01);
    border-color: rgba(255, 77, 58, 0.3);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 28px 56px -26px rgba(15, 42, 74, 0.22),
      0 0 0 1px rgba(255, 77, 58, 0.14);
  }

  #seo-audit-cost .seo-audit-cost__card.reveal.is-visible:hover::before {
    left: 8px;
    right: 8px;
    height: 4px;
    animation: none;
    filter: brightness(1.08);
    box-shadow: 0 2px 14px rgba(255, 77, 58, 0.28);
  }

  #seo-audit-cost .seo-audit-cost__card.reveal.is-visible:hover .seo-audit-cost__card-bg {
    opacity: 0.72;
  }
}

@media (max-width: 900px) {

  #seo-audit-cost .seo-audit-cost__card--featured.reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  
  #seo-audit-cost .seo-audit-cost__card.reveal.is-visible,
  #seo-audit-cost .seo-audit-cost__card--featured.reveal.is-visible {
    transition-duration: 0.01ms !important;
    transform: none !important;
    opacity: 1 !important;
  }

  #seo-audit-cost .seo-audit-cost__card.reveal.is-visible::before {
    animation: none !important;
  }
}

/* ---------- AI consultancy services: pricing section (brand-aligned) ---------- */

/* Header — centered stack (matches page section heads) */

/* Subsection titles — matches service .ttl scale, slightly smaller */

/* Market bars */

#svc-ai-consultancy-cost.svc-ai-cost--editorial .svc-ai-cost-ed__bar-row.reveal.is-visible .svc-ai-cost-ed__bar-fill {
  width: var(--bar-w, 0%);
}

/* Pricing table */

#svc-ai-consultancy-cost.svc-ai-cost--editorial .svc-ai-cost-ed__pt-row:hover {
  background: rgba(26, 95, 191, 0.04);
}

#svc-ai-consultancy-cost.svc-ai-cost--editorial .svc-ai-cost-ed__pt-row:hover::before {
  transform: scaleY(1);
}

/* CTA — navy band + shared .btn.btn--coral */

#svc-ai-consultancy-cost.svc-ai-cost--editorial .svc-ai-cost-ed__cta-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

/* Responsive */

section#why-choose-on-page-seo {
  background: #f5f7fa;
}

section#why-choose-seo {
  background: #f5f7fa;
}

section#why-choose-seo-audit {
  background: #f5f7fa;
}

section#seo-services-overview {
  background: #f5f7fa;
}

section#seo-audit-common-problems {
  background: #f5f7fa;
}

section#on-page-effective-2026 {
  background: #f5f7fa;
}

section#about-what-we-do.about-what-we-do,
section#what-we-do.about-what-we-do {
  background: #f5f7fa;
}

@media (hover: hover) and (pointer: fine) {
  .seo-choose__item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 77, 58, .22);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, .82) inset,
      0 22px 48px -26px rgba(15, 42, 74, .22),
      0 0 0 1px rgba(255, 77, 58, .12);
  }

  .seo-choose__item:hover::before {
    opacity: .95;
    transform: translateY(-50%) scaleY(1);
  }

  .seo-choose__item:hover .seo-choose__num {
    background: linear-gradient(145deg, rgba(255, 77, 58, .12), rgba(26, 111, 224, .08));
    border-color: rgba(255, 77, 58, .28);
    color: var(--coral);
    transform: scale(1.04);
    box-shadow: 0 6px 16px -8px rgba(255, 77, 58, .45);
  }

  .seo-choose--icons .seo-choose__item:hover .seo-choose__num--icon svg {
    stroke: var(--coral);
    transform: scale(1.05);
  }
}

/* Icon cells (Why choose SEO audit & similar) */

@media (hover: hover) and (pointer: fine) {
  .seo-choose__item--bonus:hover::before {
    opacity: .95;
  }
}

/* AI Consultancy: alternate striping after dark "when not" block */

/* Legal pages — white band hero (Privacy, Terms, Cookie, Disclaimer, Acceptable Use, Refund, IP Notice); H1 matches home editorial hero */

/* Mirrors .hero--editorial .hero__title and .hero__title-blue */

/* ============================================================
   Privacy Policy page — layout from policy-white (scoped)
   ============================================================ */

.privacy-policy-page .sidebar nav a:hover {
  color: var(--pp-navy);
  border-left-color: var(--pp-blue);
}

.privacy-policy-page .sidebar nav a.active {
  color: var(--pp-navy);
  border-left-color: var(--pp-orange);
}

/* Headings & body copy inherit site globals (Sora / Inter); only spacing + colour tuned */

/* ============================================================
   About Us page
   ============================================================ */

/* Uniform 70px top/bottom padding on all about page sections */

/* About Us — intro split (reference layout after hero) */
.about-intro .btn.btn--ghost-play:hover {
  background: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.about-intro__cta-pill:hover {
  background: linear-gradient(135deg, #dce9f8 0%, #cfe0f5 100%);
  color: var(--navy);
}
.about-intro__cta-arrow:hover {
  background: var(--navy);
  transform: translateX(2px);
}

/* About Us — system section (reference: copy + blob photo + metrics row) */
section.about-system.section {
  background: #f5f7fa;
}
.about-system {
  position: relative;
  overflow: hidden;
  background: #f5f7fa;
  padding: clamp(72px, 9vw, 96px) 0;
}
.about-system__title {
  max-width: 15ch;
  margin-bottom: 18px;
}
.about-system__prose {
  margin-top: 4px;
}
.about-system__prose p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-3);
}
.about-system__prose p:last-child {
  margin-bottom: 0;
}
.about-system__closing {
  margin-top: 18px !important;
  color: var(--navy) !important;
  font-size: 16px;
  line-height: 1.65 !important;
}
.about-system__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .about-system__visual {
    order: 2;
    max-width: 480px;
    margin-inline: auto;
  }
  .about-system__visual {
    padding: 0;
  }
  .about-system .section__title.about-system__title {
    max-width: none;
  }
}

/* About Us — diff section (reference: stacked images + float card + checklist) */

/* About Us — who we work with (certification stripes layout) */

/* About Us — founder (light showcase layout) */
/* Team member card (founder profile) */
.about-team-card__social a:hover {
  transform: scale(1.08);
  color: var(--coral);
  background: #fff5f3;
}
.about-team-card__share:hover,
.about-team-card__share:focus-visible {
  background: #e8432f;
  transform: scale(1.06);
  box-shadow: 0 14px 32px rgba(255, 77, 58, 0.42);
  outline: none;
}

/* About Us — What We Stand For (seo-choose layout, AI Marketing parity) */

/* About Us — compact final CTA */

@media (hover: hover) and (pointer: fine) {
  .about-page-cta__meta-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 77, 58, 0.22);
  }
}

.about-page-cta__meta-item a:hover {
  color: var(--coral-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ================= CASE STUDIES PAGE HERO ================= */

/* Lighthouse contrast: ensure readable text on light backgrounds */
.work-feature__chip em,
.work-card__tags span,
.work-card__year,
.work-card__stats span,
.work-card__body .work-card__stats span,
.footer__contact-label {
  color: #000000 !important;
}


