/* ===========================
   SERVICE PAGES – GLOBAL
   (Strategy, Web, GDPR, etc.)
   =========================== */

/* SHARED HERO
   ---------------------------------- */

   .service-hero {
    position: relative;
    min-height: 82vh;
    padding: 132px 0 80px;
    color: #ffffff;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
  }
  
  /* Cinematic overlay */
  .service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 55%),
      radial-gradient(circle at 85% 20%, rgba(105, 150, 130, 0.24), transparent 55%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 0;
  }
  
  /* No default fade underneath – only added for specific pages */
  .service-hero::after {
    content: none;
  }
  
  .service-hero .wrapper {
    position: relative;
    z-index: 2; /* above overlays */
  }
  
  .service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
  }
  
  /* Eyebrow label */
  .service-eyebrow {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.35);
  }
  
  /* Headline + body */
  .service-hero h1 {
    font-size: clamp(2.3rem, 3vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .service-hero-lede {
    font-size: 0.98rem;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 14px;
    max-width: 640px;
  }
  
  /* Hero CTAs */
  .service-hero .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 18px;
    opacity: 1;
    animation: none;
  }
  
  /* RIGHT-HAND COLUMN */
  .service-hero-grid > div:last-child {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  /* RIGHT-HAND PILL CLUSTER – GLASS CARD, STACKED
     -------------------------------------------- */
  
  .service-tag-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-size: 13px;
    padding: 18px 20px;
    border-radius: 20px;
    background:
      radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.18), rgba(9, 20, 25, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    max-width: 320px;
  }
  
  .service-tag-pill {
    background: rgba(5, 18, 15, 0.65);
    border-radius: 999px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    backdrop-filter: blur(10px);
  }
  
  /* CTAs (buttons) */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  }
  
  .btn-primary {
    background: var(--ak-teal);
    border-color: var(--ak-teal);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(105, 150, 130, 0.45);
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    background: #567a7a;
    border-color: #567a7a;
  }
  
  .btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
  }
  
  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.14);
  }
  
  /* ===========================
     SERVICE-SPECIFIC BACKGROUNDS
     =========================== */
  
  /* Strategy – SLIM + HARD EDGE, NO FADE */
  .service-hero--strategy {
    background-image: url("media/stratgif.gif");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: auto;           /* override global 82vh */
    padding-top: 96px;
    padding-bottom: 48px;       /* slimmer bottom, like the version you prefer */
    border-bottom: 1px solid rgba(147, 150, 105, 0.35);
    overflow: hidden;
  }
  
  /* absolutely no fade/blur underneath */
  .service-hero--strategy::after {
    content: none !important;
  }
  
  /* Web / Shopify / Landing Pages */
  .service-hero--web {
    background-image: url("media/webgif.gif");
  }
  
  /* GDPR / Consent */
  .service-hero--compliance {
    background-image: url("media/compliancegif.gif");
    padding-bottom: 56px; /* slightly tighter */
  }
  
  /* Tracking & Analytics */
  .service-hero--tracking {
    background-image: url("media/trackinggif.gif");
  }
  
  /* Meta Ads & Campaigns */
  .service-hero--ads {
    background-image: url("media/ads.gif");
    background-size: cover;
    background-position: center center;
    min-height: 72vh;
    padding: 124px 0 82px;
  }
  
  /* Training / Support */
  .service-hero--training {
    background-image: url("media/traininggif.gif");
  }
  
  /* Fades into beige for Web, Tracking & Ads only */
  .service-hero--web::after,
  .service-hero--tracking::after,
  .service-hero--ads::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, #f4f2ec);
    z-index: 1;
  }
  
  /* GDPR hero has a straight edge, so no ::after */
  
  /* FIRST SECTION AFTER GDPR HERO – REDUCE TOP PADDING */
  .service-hero--compliance + .service-section {
    padding-top: 32px !important;
  }
  
  /* META PAGE – darker overlay on hero */
  .service-hero--ads::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 20%, rgba(255,255,255,0.06), transparent 55%),
      radial-gradient(circle at 78% 22%, rgba(105,150,130,0.35), transparent 55%),
      linear-gradient(
        115deg,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.88) 34%,
        rgba(0, 0, 0, 0.55) 68%,
        rgba(0, 0, 0, 0.88) 100%
      );
    z-index: 0;
  }
  
  /* Slightly smaller H1 on Ads hero */
  .service-hero--ads h1 {
    font-size: clamp(2.2rem, 2.9vw, 2.6rem);
  }
  
  /* TRAINING HERO – stronger overlay on right side */
  .service-hero--training::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.12), transparent 55%),
      radial-gradient(circle at 55% 40%, rgba(105, 150, 130, 0.18), transparent 60%),
      linear-gradient(
        115deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.70) 40%,
        rgba(0, 0, 0, 0.55) 65%,
        rgba(0, 0, 0, 0.45) 80%,
        rgba(0, 0, 0, 0.55) 100%
      );
    z-index: 0;
  }
  
  /* keep the right column hugging that card for Ads hero */
  .service-hero--ads .service-hero-grid > div:last-child {
    display: flex;
    justify-content: flex-end;
  }
  
  /* ===========================
     HERO NOTE / META PANEL
     =========================== */
  
  /* HERO NOTE CARD – GENERIC + DARK VARIANT */
  .hero-note {
    padding: 18px 20px;
    border-radius: 20px;
    max-width: 360px;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(14px);
  }
  
  /* use this variant on dark/gif heroes (training, ads, etc.) */
  .hero-note--light {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), rgba(5, 18, 15, 0.9));
    color: #ffffff;
  }
  
  .hero-note--light strong {
    color: #ffffff;
  }
  
  .hero-note--light .about-list li {
    color: rgba(245, 245, 245, 0.9);
  }
  
  /* META HERO – readable right-hand panel */
  .meta-hero-panel {
    max-width: 360px;
    padding: 18px 20px 20px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 0% 0%, rgba(255,255,255,0.12), transparent 55%),
      rgba(5, 15, 12, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    color: #ffffff;
    backdrop-filter: blur(10px);
  }
  
  .meta-hero-panel h3 {
    margin: 0 0 8px;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.92;
  }
  
  .meta-hero-panel ul {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.6;
  }
  
  .meta-hero-panel li {
    color: rgba(255, 255, 255, 0.96);
  }
  
  .meta-hero-panel li + li {
    margin-top: 4px;
  }
  
  /* ===========================
     MAIN CONTENT SECTIONS
     =========================== */
  
  .service-section {
    padding-top: 52px;
    padding-bottom: 52px;
    background: var(--ak-bg);
  }
  
  .service-section:nth-of-type(even) {
    background: #f3efe7;
  }
  
  .service-section h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .service-section p {
    font-size: 14px;
    max-width: 780px;
  }
  
  /* “What this service covers” cards */
  .stack-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
  }
  
  .stack-card {
    background: var(--ak-white);
    border-radius: var(--radius-lg);
    padding: 16px 16px 18px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--ak-teal);
    font-size: 13px;
  }
  
  .stack-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .stack-card ul {
    padding-left: 18px;
    margin: 6px 0 0;
    color: var(--ak-muted);
  }
  
  /* “How it works” / 2-col sections */
  .two-col-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
    margin-top: 26px;
  }
  
  .highlight-strip {
    background: #f8f5fa;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(150, 105, 125, 0.4);
    font-size: 13px;
    margin-top: 18px;
  }
  
  .bridge-card {
    background: #f4f8f7;
    border-radius: var(--radius-lg);
    padding: 18px 18px 20px;
    border: 1px solid rgba(105, 150, 130, 0.45);
    font-size: 13px;
  }
  
  /* Deliverables grid */
  .deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
  }
  
  .deliverable-card {
    background: var(--ak-white);
    border-radius: var(--radius-lg);
    padding: 14px 14px 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(147, 150, 105, 0.25);
    font-size: 13px;
  }
  
  .deliverable-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  /* Final CTA blocks (strategy / web / tracking) */
  .strategy-audit-cta,
  .web-audit-cta,
  .tracking-audit-cta {
    background: linear-gradient(135deg, #f4f2ec 0%, #f8f5fa 40%, #f4f8f7 100%);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(147, 150, 105, 0.4);
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
  }
  
  .strategy-audit-cta h2,
  .web-audit-cta h2,
  .tracking-audit-cta h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--ak-dark);
  }
  
  .strategy-audit-cta p,
  .web-audit-cta p,
  .tracking-audit-cta p {
    font-size: 14px;
    color: var(--ak-muted);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .strategy-audit-cta .btn-primary,
  .web-audit-cta .btn-primary,
  .tracking-audit-cta .btn-primary {
    font-size: 14px;
    padding: 10px 26px;
  }
  
  /* WEB PAGE – tighten first section under hero */
  #what-we-build {
    position: relative;
    z-index: 2;
  }
  
  #what-we-build .section-intro {
    max-width: 720px;
  }
  
  #what-we-build h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  #what-we-build p {
    margin-bottom: 8px;
  }
  
  /* keep web cards narrower & centred */
  #what-we-build .stack-grid {
    max-width: 1040px;
    margin: 24px auto 0;
  }
  
  /* GDPR – mauve accent for stack cards */
  #what-we-do .stack-card {
    border-top-color: var(--ak-mauve);
  }
  
  /* ===========================
     META PAGE – STACKED CARDS
     =========================== */
  
  .meta-stack {
    padding-top: 56px;
    padding-bottom: 72px;
    background: var(--ak-bg);
  }
  
  .meta-stack__title-wrap {
    max-width: 720px;
    margin-bottom: 32px;
  }
  
  .meta-stack__eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ak-muted);
    margin-bottom: 6px;
  }
  
  .meta-stack__title {
    font-size: 24px;
    margin-bottom: 6px;
  }
  
  .meta-stack__lede {
    font-size: 14px;
    color: var(--ak-muted);
  }
  
  /* list */
  
  .meta-stack__list {
    display: grid;
    gap: 32px;
  }
  
  /* each card */
  
  .meta-stack__item {
    position: sticky;
    top: 96px; /* how high it sticks under nav */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 200px auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--ak-white);
  }
  
  /* coloured / image side */
  
  .meta-stack__item-figure {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    background:
      radial-gradient(circle at 0% 0%, rgba(255,255,255,0.25), transparent 55%),
      linear-gradient(135deg, #1f2421, #699682);
    display: flex;
    align-items: flex-end;
    padding: 18px 20px;
    color: #ffffff;
  }
  
  .meta-stack__item-kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 2px;
  }
  
  .meta-stack__item-heading {
    font-size: 18px;
    font-weight: 600;
  }
  
  /* text side */
  
  .meta-stack__item-info {
    grid-column: 1 / -1;
    grid-row: 2 / -1;
    padding: 22px 22px 24px;
    display: grid;
    align-content: center;
    gap: 10px;
  }
  
  .meta-stack__item-body {
    font-size: 14px;
    color: var(--ak-muted);
  }
  
  .meta-stack__item-list {
    font-size: 13px;
    color: var(--ak-muted);
    padding-left: 18px;
    margin: 0;
  }
  
  .meta-stack__item-list li + li {
    margin-top: 3px;
  }
  
  .meta-stack__item-tag {
    margin-top: 8px;
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    background: #f4f8f7;
    border: 1px solid rgba(105, 150, 130, 0.45);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ak-muted);
  }
  
  /* SCALE-on-scroll effect for browsers that support scroll-linked animations */
  @supports (view-timeline-name: auto) {
    .meta-stack__item:not(:last-child) {
      view-timeline-name: --meta-card;
      view-timeline-axis: block;
      animation-timeline: --meta-card;
      animation-name: meta-card-scale;
      animation-range: entry 90% cover 50%;
      animation-fill-mode: both;
    }
  }
  
  @keyframes meta-card-scale {
    0%, 75% {
      scale: 100%;
    }
    100% {
      scale: 88%;
    }
  }
  
  /* desktop layout */
  @media (min-width: 768px) {
    .meta-stack__item {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
      grid-template-rows: minmax(340px, 70vh);
    }
  
    .meta-stack__item-figure {
      grid-column: 1 / 2;
      grid-row: 1 / -1;
    }
  
    .meta-stack__item-info {
      grid-column: 2 / -1;
      grid-row: 1 / -1;
      padding: 32px 30px;
    }
  }
  
  /* ===========================
     RESPONSIVE
     =========================== */
  
  @media (max-width: 960px) {
    .service-hero {
      min-height: auto;
      padding: 120px 0 76px;
      background-attachment: scroll;
    }
  
    .service-hero--strategy {
      background-attachment: scroll;
      padding-top: 96px;
      padding-bottom: 64px;
    }
  
    .service-hero-grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 28px;
    }
  
    .service-hero-grid > div:last-child {
      justify-content: flex-start;
    }
  
    .service-tag-grid {
      max-width: 100%;
      align-items: flex-start; /* stacked, left-aligned on mobile */
    }
  
    .stack-grid,
    .deliverables-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  
  @media (max-width: 720px) {
    .service-hero {
      padding: 108px 0 64px;
    }
  
    .service-hero .hero-ctas {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .stack-grid,
    .deliverables-grid {
      gap: 14px;
    }
  }
  /* LIGHTER OVERLAY JUST FOR STRATEGY HERO */
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.10), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(105,150,130,0.18), transparent 55%),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.40) 0%,
      rgba(0,0,0,0.22) 45%,
      rgba(0,0,0,0.05) 100%
    );
  z-index: 0;
}
/* --- STANDARDISED PILL SYSTEM (matches Web Builds page) --- */

.service-tag-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 340px;
}

.service-tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
/* ===========================
   WEB SERVICE – HOVER CARDS
   (What we build and improve)
   =========================== */

   .build-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  
  /* Card wrapper */
  .build-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    background: var(--ak-white);
  }
  
  /* Faces (same idea as demo: face2 covers, shrinks on hover) */
  .build-face {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Content face (revealed on hover) */
  .build-face1 {
    box-sizing: border-box;
    padding: 24px 24px 28px;
    align-items: flex-start;
    text-align: left;
  }
  
  .build-content h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: var(--ak-dark);
  }
  
  .build-content ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--ak-muted);
    font-size: 0.92rem;
    line-height: 1.5;
  }
  
  /* Colour face (covering layer) */
  .build-face2 {
    background: var(--ak-teal);
    transition: height 0.45s ease, border-radius 0.45s ease, box-shadow 0.45s ease;
    height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }
  
  .build-face2 h3 {
    margin: 0;
    padding: 0;
    font-size: 2.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ak-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }
  
  /* Hover behaviour – shrink colour panel to footer bar */
  .build-card:hover .build-face2 {
    height: 70px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: none;
  }
  
  .build-card:hover .build-face2 h3 {
    font-size: 1.1rem;
  }
  
  /* Use AdKonnekt palette for each card */
  .build-face-shopify {
    background: linear-gradient(135deg, var(--ak-teal), #a7d0c3);
  }
  
  .build-face-service {
    background: linear-gradient(135deg, var(--ak-olive), #d0d4af);
  }
  
  .build-face-landing {
    background: linear-gradient(135deg, var(--ak-mauve), #d9a4bc);
  }
  
  .build-face-cro {
    background: linear-gradient(135deg, #333a33, var(--ak-dark));
  }
  
  /* Small screens tweak */
  @media (max-width: 768px) {
    .build-card {
      height: 340px;
    }
  
    .build-card:hover .build-face2 {
      height: 64px;
    }
  }
  /* CARD GRID */
.build-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* CARD WRAPPER */
.build-card {
  background: var(--ak-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.build-card:hover {
  transform: translateY(-4px);
}

/* HEADER AREA (COLOR PART) */
.card-header {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 0.35s ease;
}

.card-header h3 {
  color: var(--ak-white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.3rem;
  margin: 0;
}

/* SHRINK HEADER ON HOVER */
.build-card:hover .card-header {
  height: 70px;
}

/* BODY AREA */
.card-body {
  padding: 20px 22px 26px;
  opacity: 0;
  transition: opacity 0.4s ease 0.15s;
}

.build-card:hover .card-body {
  opacity: 1;
}

/* LIST */
.card-body ul {
  padding-left: 1.2rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ak-dark);
}

/* COLORS */
.build-face-shopify {
  background: linear-gradient(135deg, var(--ak-teal), #a7d0c3);
}

.build-face-service {
  background: linear-gradient(135deg, var(--ak-olive), #cfd3b0);
}

.build-face-landing {
  background: linear-gradient(135deg, var(--ak-mauve), #e3b3ca);
}

.build-face-cro {
  background: linear-gradient(135deg, #333833, var(--ak-dark));
}
/* UNIFIED HEADER COLOUR */
.card-header {
  background: #699682;        /* brand teal */
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-lg);
  transition: height 0.35s ease;
}

.card-header h3 {
  color: #ffffff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin: 0;
}

/* Hover shrink remains the same */
.build-card:hover .card-header {
  height: 70px;
}
.build-face-shopify {
  background: #699682; /* teal */
}

.build-face-service {
  background: #939669; /* olive */
}

.build-face-landing {
  background: #96697D; /* mauve */
}

.build-face-cro {
  background: #1f2421; /* dark */
}

.build-face-booking {
  background: #58786f; /* muted teal (brand-derived) */
}

.build-face-membership {
  background: #7c5567; /* muted mauve (brand-derived) */
}
.build-card .card-header h3 {
  font-size: 1.05rem;            /* slightly smaller */
  letter-spacing: 0.05em;
  padding: 0 6px;                /* more horizontal breathing room */
  text-align: center;
  line-height: 1.3;              /* tighten wrapping */
  white-space: normal;           /* allow clean two-line wrap if needed */
}
/* ===========================
   PLATFORMS STRIP – HOVER BLOCKS
   =========================== */

.service-section--platforms {
  /* optional small tweak so it breathes nicely */
  padding-bottom: 64px;
}

/* Override the demo’s global selectors – scope to this section */
.service-section--platforms .blocks {
  display: flex;
  list-style-type: none;
  padding: var(--size-2);
  border-radius: var(--radius-3);
  gap: var(--size-4);
  background: hsl(0 0% 100% / 0.5);
  align-items: center;
  justify-content: center;
  align-content: center;
  backdrop-filter: blur(10px);
  margin-top: var(--size-6);
  margin-bottom: var(--size-6);
}

.service-section--platforms .blocks:hover {
  --show: 1;
}

.service-section--platforms .block {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  align-content: center;
  transition: flex 0.2s;
  flex: calc(0.2 + (var(--lerp, 0) * 1.5));
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.service-section--platforms .block:after {
  content: '';
  width: 5%;
  aspect-ratio: 1;
  background: var(--text-1);
  position: absolute;
  bottom: 10%;
  left: 50%;
  border-radius: var(--radius-3);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.service-section--platforms .block:before {
  content: '';
  position: absolute;
  width: calc(100% + var(--size-4));
  bottom: 0;
  aspect-ratio: 1 / 2;
  left: 50%;
  transition: transform 0.2s;
  transform-origin: 50% 100%;
  transform: translateX(-50%) scaleY(var(--show, 0));
  z-index: -1;
}

.service-section--platforms .block .block__item {
  transition: outline 0.2s;
  outline: transparent var(--size-1) solid;
}

.service-section--platforms :is(.block:hover, .block:focus-visible) .block__item {
  outline: var(--surface-1) var(--size-1) solid;
}

.service-section--platforms .block {
  outline: none;
}

.service-section--platforms .block__item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-3);
  background: var(--bg), var(--surface-1);
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 var(--size-1) var(--size-1);
  transition: transform 0.2s;
  transform-origin: 50% 100%;
  position: relative;
  transform: translateY(calc(var(--lerp) * -75%));
  text-align: center;
}

.service-section--platforms .block__item:after {
  content: '';
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  border-left: var(--size-2) solid white;
  border-top: var(--size-2) solid white;
  border-radius: var(--radius-3);
  mask: linear-gradient(135deg, black, transparent 50%);
}

/* Label inside the square */
.service-section--platforms .block__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

/* LERP VARS (same as demo) */
:root {
  --lerp-0: 1;
  --lerp-1: 0.5625;
  --lerp-2: 0.25;
  --lerp-3: 0.0625;
  --lerp-4: 0;
}

/* Neighbour scaling logic (copied from your demo, scoped) */
.service-section--platforms :is(.block:hover, .block:focus-visible) {
  --lerp: var(--lerp-0);
  z-index: 5;
}
.service-section--platforms .block:has(+ :is(.block:hover, .block:focus-visible)),
.service-section--platforms :is(.block:hover, .block:focus-visible) + .block {
  --lerp: var(--lerp-1);
  z-index: 4;
}
.service-section--platforms .block:has(+ .block + :is(.block:hover, .block:focus-visible)),
.service-section--platforms :is(.block:hover, .block:focus-visible) + .block + .block {
  --lerp: var(--lerp-2);
  z-index: 3;
}
.service-section--platforms .block:has(+ .block + .block + :is(.block:hover, .block:focus-visible)),
.service-section--platforms :is(.block:hover, .block:focus-visible) + .block + .block + .block {
  --lerp: var(--lerp-3);
  z-index: 2;
}
.service-section--platforms .block:has(+ .block + .block + .block + :is(.block:hover, .block:focus-visible)),
.service-section--platforms :is(.block:hover, .block:focus-visible) + .block + .block + .block + .block {
  --lerp: var(--lerp-4);
  z-index: 1;
}

/* DARK MODE SUPPORT (if you want it like the demo) */
@media (prefers-color-scheme: dark) {
  .service-section--platforms .blocks {
    background: hsl(0 0% 0% / 0.5);
  }
}

/* DETAIL PANELS BELOW STRIP */
.platform-panels {
  max-width: 720px;
  margin-inline: auto;
}

.platform-panel {
  display: none;
}

.platform-panel.platform-panel--active {
  display: block;
}

/* Swap active panel on hover/focus using :has() */

.service-section--platforms:has(.block[data-platform="shopify"]:is(:hover, :focus-visible)) 
  .platform-panel {
  display: none;
}
.service-section--platforms:has(.block[data-platform="shopify"]:is(:hover, :focus-visible)) 
  .platform-panel[data-platform="shopify"] {
  display: block;
}

.service-section--platforms:has(.block[data-platform="wp"]:is(:hover, :focus-visible)) 
  .platform-panel {
  display: none;
}
.service-section--platforms:has(.block[data-platform="wp"]:is(:hover, :focus-visible)) 
  .platform-panel[data-platform="wp"] {
  display: block;
}

.service-section--platforms:has(.block[data-platform="squarespace"]:is(:hover, :focus-visible)) 
  .platform-panel {
  display: none;
}
.service-section--platforms:has(.block[data-platform="squarespace"]:is(:hover, :focus-visible)) 
  .platform-panel[data-platform="squarespace"] {
  display: block;
}

.service-section--platforms:has(.block[data-platform="ticketing"]:is(:hover, :focus-visible)) 
  .platform-panel {
  display: none;
}
.service-section--platforms:has(.block[data-platform="ticketing"]:is(:hover, :focus-visible)) 
  .platform-panel[data-platform="ticketing"] {
  display: block;
}

.service-section--platforms:has(.block[data-platform="custom"]:is(:hover, :focus-visible)) 
  .platform-panel {
  display: none;
}
.service-section--platforms:has(.block[data-platform="custom"]:is(:hover, :focus-visible)) 
  .platform-panel[data-platform="custom"] {
  display: block;
}

.service-section--platforms:has(.block[data-platform="tracking"]:is(:hover, :focus-visible)) 
  .platform-panel {
  display: none;
}
.service-section--platforms:has(.block[data-platform="tracking"]:is(:hover, :focus-visible)) 
  .platform-panel[data-platform="tracking"] {
  display: block;
}
/* WEB BUILDS – make the slider more compact */
#web-builds.how-section {
  margin-top: 32px;
}

#web-builds .how-slider {
  max-width: 780px;          /* narrower than full wrapper */
  margin: 20px auto 36px;    /* centre it */
  padding: 16px 18px 14px;   /* tighter padding */
}

#web-builds .how-slides {
  min-height: 110px;         /* less vertical space */
}

#web-builds .how-slide {
  gap: 14px;
}

/* Smaller icon + copy so the whole card feels lighter */
#web-builds .how-slide-media img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
}

#web-builds .how-step-label {
  font-size: 11px;
  margin-bottom: 2px;
}

#web-builds .how-slide-copy h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

#web-builds .how-slide-copy p {
  font-size: 13px;
}

#web-builds .how-slide-copy ul {
  margin-top: 8px;
}
/* ================================
   WEB BUILDS SLIDER – VERTICAL CARD
   ================================ */

/* Smaller, tighter card */
#web-builds .how-slider {
  max-width: 840px;
  margin: 24px auto 40px;
  padding: 18px 18px 20px;
}

/* Let height be defined by content (no tall min-height) */
#web-builds .how-slides {
  min-height: auto;
}

/* Stack image on top of copy */
#web-builds .how-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* IMAGE BLOCK – full width */
#web-builds .how-slide-media {
  width: 100%;
}

#web-builds .how-slide-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

/* COPY BLOCK */
#web-builds .how-slide-copy {
  width: 100%;
}

#web-builds .how-step-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

#web-builds .how-slide-copy h3 {
  font-size: 18px;
  margin: 4px 0 6px;
}

#web-builds .how-slide-copy p {
  font-size: 13px;
  margin-bottom: 8px;
}

#web-builds .how-slide-copy ul {
  margin-top: 6px;
}
/* ================================
   WEB BUILDS SLIDER – TIGHT VERTICAL LAYOUT
   ================================ */

/* Remove huge vertical padding from the card */
#web-builds .how-slider {
  max-width: 780px;
  margin: 10px auto 20px;
  padding: 8px 14px 10px;       /* MUCH tighter */
}

/* Kill inherited min-height that makes the card tall */
#web-builds .how-slides {
  min-height: 0 !important;
}

/* Stack image + text tightly */
#web-builds .how-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;                   /* reduced gap */
  padding: 0;                  /* remove inner padding */
}

/* IMAGE — full width, zero gap above */
#web-builds .how-slide-media {
  width: 100%;
  margin: 0;
  padding: 0;
}

#web-builds .how-slide-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

/* COPY BLOCK — closer to image */
#web-builds .how-slide-copy {
  padding: 0;
  margin: 0;
}

#web-builds .how-step-label {
  font-size: 11px;
  margin-bottom: 0;
}

#web-builds .how-slide-copy h3 {
  font-size: 17px;
  margin: 2px 0 4px;
}

#web-builds .how-slide-copy p {
  font-size: 13px;
  margin-bottom: 4px;
}

#web-builds .how-slide-copy ul {
  margin-top: 4px;
}

/* NAV — pull closer to content */
#web-builds .how-nav {
  margin-top: 4px;            /* tighten gap above dots/buttons */
  padding-top: 0;
}
/* Remove giant top & bottom padding from how-section ONLY in web builds */
#web-builds.how-section {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
#web-builds .how-slider {
  margin-top: 0 !important;
}
/* ===== WEB BUILDS SLIDER – TIGHTER, IMAGE ON TOP ===== */

#web-builds .how-slider {
  padding: 16px 24px 18px;   /* less top/bottom padding */
}

/* let content define the height instead of a big fixed min-height */
#web-builds .how-slides {
  min-height: auto;
}

/* stack image on top, no vertical centering */
#web-builds .how-slide {
  grid-template-columns: 1fr;   /* image then text in a single column */
  align-items: flex-start;
  gap: 14px;
}

/* image: full width of the slide window */
#web-builds .how-slide-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  padding: 0;                  /* remove inner padding so it sits snug */
  background: #f6f6f4;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* optional: slightly tighten the nav gap under the content */
#web-builds .how-nav {
  margin-top: 16px;
}
/* REMOVE MASSIVE TOP/BOTTOM PADDING JUST FOR THE WEB BUILDS SECTION */
#web-builds.how-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
/* ===============================
   CASE STUDY COPY – TYPO SCALE
   =============================== */

   #web-builds .how-slide-copy {
    max-width: 680px;
  }
  
  /* Eyebrow / label */
  #web-builds .how-step-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f8f84; /* muted green */
    margin-bottom: 8px;
    display: inline-block;
  }
  
  /* Main heading */
  #web-builds .how-slide-copy h3 {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 14px;
    color: #1f2421;
  }
  
  /* Body paragraphs */
  #web-builds .how-slide-copy p {
    font-size: 16px;
    line-height: 1.65;
    color: #3b3f3d;
    margin-bottom: 14px;
  }
  
  /* Bullet list */
  #web-builds .how-slide-copy ul {
    margin-top: 12px;
    padding-left: 18px;
  }
  
  #web-builds .how-slide-copy li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  /* Emphasise bullets slightly */
  #web-builds .how-slide-copy li::marker {
    color: #6f8f84;
  }
  /* Centre heading + intro for Recent web builds section */
#web-builds > .wrapper > h2,
#web-builds > .wrapper > p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Optional: keep line length tidy */
#web-builds > .wrapper > p {
  max-width: 720px;
}
/* ===== AK STACK SECTION (defensive) ===== */

.ak-stack-section { position: relative; overflow: visible !important; }
.ak-stack-wrap { position: relative; min-height: 520vh; padding: 30px 0 60px; }
.ak-stack { position: sticky; top: 50%; transform: translateY(-50%); height: 0; width: 100%; z-index: 2; }

.ak-card { position: absolute; top: 50%; left: 50%; width: min(560px, calc(100vw - 44px)); height: 270px;
  transform: translate(-50%, -50%) translateY(var(--ak-shift,0px)) scale(var(--ak-scale,0.985));
  opacity: var(--ak-opacity,1); border-radius: 22px; transition: transform 650ms cubic-bezier(0.22,0.61,0.36,1), opacity 650ms ease;
  will-change: transform, opacity;
}

.ak-card__inner { position: relative; z-index: 2; height: 100%; padding: 22px 24px 20px; border-radius: 22px;
  background: var(--ak-white); border: 1px solid rgba(31,36,33,0.10); box-shadow: 0 22px 60px rgba(0,0,0,0.10);
  display: grid; grid-template-rows: auto auto 1fr; gap: 8px;
}

.ak-card__shadow { position: absolute; inset: 0; transform: translate(10px,10px); border-radius: 22px;
  background: rgba(147,150,105,0.12); border: 1px solid rgba(147,150,105,0.18); z-index: 1;
}
/* ===========================
   HOW WE FIX IT – WORKBENCH
   =========================== */

   .compliance-workbench__head {
    max-width: 760px;
    margin-bottom: 32px;
  }
  
  .compliance-workbench__grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,0.8fr);
    gap: 32px;
    align-items: flex-start;
  }
  
  .compliance-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
  }
  
  .compliance-steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start;
  }
  
  .step-num {
    font-weight: 700;
    color: var(--ak-muted);
  }
  
  .compliance-steps h3 {
    margin: 0 0 4px;
    font-size: 16px;
  }
  
  .compliance-steps p {
    margin: 0;
    font-size: 14px;
    color: var(--ak-muted);
  }
  
  .compliance-panel {
    background: #f4f8f7;
    border-radius: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(105,150,130,0.35);
    font-size: 14px;
  }
  
  .compliance-panel h4 {
    margin: 0 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
  }
  
  .compliance-panel ul {
    padding-left: 18px;
    margin: 0 0 14px;
  }
  
  .compliance-panel li {
    margin-bottom: 6px;
  }
  
  .compliance-panel__tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(105,150,130,0.45);
    color: var(--ak-muted);
  }
  .ak-stack {
    position: sticky;
    top: 140px;
    transform: none;
  }
  /* Sticky stage should be centred */
.ak-stack{
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  height: 0;
  width: 100%;
  z-index: 2;
}
/* ===========================
   WHY SECTION – STACK POSITION FIX
   =========================== */

/* Make the sticky stack centre in the viewport (and sit a bit lower) */
.ak-stack {
  position: sticky;
  top: calc(50% + 110px);          /* +110px pushes it down from dead-centre */
  transform: translateY(-50%);     /* re-centres it properly */
  height: 0;                       /* keeps the stack “floating” */
  width: 100%;
  z-index: 2;
}

/* Mobile: smaller offset so it doesn’t fall off-screen */
@media (max-width: 960px) {
  .ak-stack {
    top: calc(50% + 70px);
  }
}
/* ============================
   WHY STACK – ACTIVATE LATE
   ============================ */

/* Give the section a lead-in so the header can exist BEFORE the stack appears */
#why-it-matters .ak-stack-wrap {
  padding-top: 160px;          /* space for your H2 + intro */
  padding-bottom: 80px;
}

/* Sticky center – but hidden until section is actually reached */
#why-it-matters .ak-stack {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;                  /* 👈 hide on load */
  pointer-events: none;
  transition: opacity 220ms ease;
}

/* When active, show it */
#why-it-matters .ak-stack.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* IMPORTANT: delete/override any old rule like this:
   .ak-stack { top: 140px; transform: none; }
   That is what’s forcing it “up there”. */
/* =========================================
   WHY IT MATTERS – STICKY FULLSCREEN SLIDES
   (Tailwind-like sticky stack, AdKonnekt style)
   ========================================= */

   #why-it-matters.ak-why-sticky {
    padding: 0;                  /* we control spacing inside */
    background: var(--ak-bg);
    overflow: visible;
  }
  
  /* normal intro spacing */
  #why-it-matters .ak-why-intro {
    padding-top: 52px;
    padding-bottom: 26px;
  }
  
  /* the “stack” container */
  #why-it-matters .ak-sticky-wrap {
    position: relative;
  }
  
  /* each slide behaves like: sticky top-0 h-screen */
  #why-it-matters .ak-sticky-slide {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  
    /* breathing room so the card never kisses edges */
    padding: 110px 22px 70px;
  }
  
  /* card look = your site’s rounded + shadow language */
  #why-it-matters .ak-sticky-card {
    width: min(820px, calc(100% - 10px));
    background: var(--ak-white);
    border-radius: 22px;
    border: 1px solid rgba(31, 36, 33, 0.10);
    box-shadow: 0 22px 60px rgba(0,0,0,0.10);
    padding: 26px 28px 22px;
    position: relative;
  }
  
  /* reuse your existing kicker/counter styles if they exist;
     otherwise make them match your system */
  #why-it-matters .ak-card__kicker {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(105,150,130,0.10);
    border: 1px solid rgba(105,150,130,0.25);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ak-muted);
    margin-bottom: 10px;
  }
  
  #why-it-matters .ak-sticky-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
    color: var(--ak-dark);
  }
  
  #why-it-matters .ak-sticky-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ak-muted);
    max-width: 70ch;
  }
  
  #why-it-matters .ak-card__counter {
    position: absolute;
    right: 18px;
    bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(31,36,33,0.55);
  }
  
  /* slide backgrounds – using your palette (teal/olive/mauve/dark) */
  #why-it-matters .ak-slide--1 {
    background: linear-gradient(180deg, rgba(147,150,105,0.25), rgba(250,247,242,0.9));
  }
  #why-it-matters .ak-slide--2 {
    background: linear-gradient(180deg, rgba(105,150,130,0.25), rgba(250,247,242,0.9));
  }
  #why-it-matters .ak-slide--3 {
    background: linear-gradient(180deg, rgba(150,105,125,0.22), rgba(250,247,242,0.9));
  }
  #why-it-matters .ak-slide--4 {
    background: linear-gradient(180deg, rgba(31,36,33,0.14), rgba(250,247,242,0.9));
  }
  #why-it-matters .ak-slide--5 {
    background: linear-gradient(180deg, rgba(105,150,130,0.18), rgba(243,239,231,0.95));
  }
  #why-it-matters .ak-slide--6 {
    background: linear-gradient(180deg, rgba(150,105,125,0.18), rgba(243,239,231,0.95));
  }
  
  /* mobile tightening */
  @media (max-width: 720px) {
    #why-it-matters .ak-sticky-slide {
      padding: 96px 16px 60px;
    }
    #why-it-matters .ak-sticky-card {
      padding: 22px 18px 18px;
    }
    #why-it-matters .ak-sticky-card h3 {
      font-size: 20px;
    }
  }
  #why-it-matters .ak-sticky-slide{
    top: 18px;                /* was 0 */
    padding: 92px 22px 70px;  /* was 110px 22px 70px */
  }
  /* Shared right-side hero panel (Meta Ads style) */
.meta-hero-panel{
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10, 12, 12, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  max-width: 420px;
  margin-left: auto; /* keeps it pinned right in the grid */
}

.meta-hero-panel h3{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.meta-hero-panel ul{
  margin: 0;
  padding-left: 18px;
}

.meta-hero-panel li{
  margin: 8px 0;
  line-height: 1.35;
  font-size: 14px;
  color: rgba(255,255,255,0.90);
}
/* === HERO RIGHT PANEL (shared glass card) === */
.meta-hero-panel {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(10, 12, 12, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  max-width: 420px;
  margin-left: auto;
}

/* title inside the panel */
.meta-hero-panel__title{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}

/* === PILL STACK inside panel (this is what you want) === */
.meta-hero-pills{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-hero-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(0,0,0,0.12);

  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1.15;

  box-shadow:
    0 10px 22px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

/* optional: subtle hover like “button” */
.meta-hero-pill:hover{
  transform: translateY(-1px);
  transition: transform 160ms ease;
}
/* ===============================
   GDPR STICKY SLIDES – MEDIA
   =============================== */

   .ak-sticky-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  /* Image container */
  .ak-card__media {
    width: 100%;
    height: 140px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(31,36,33,0.06);
  }
  
  /* Per-slide images */
  .ak-slide--1 .ak-card__media { background-image: url("/media/gdpr-news/gdpr-1.jpg"); }
  .ak-slide--2 .ak-card__media { background-image: url("/media/gdpr-news/gdpr-2.jpg"); }
  .ak-slide--3 .ak-card__media { background-image: url("/media/gdpr-news/gdpr-3.jpg"); }
  .ak-slide--4 .ak-card__media { background-image: url("/media/gdpr-news/gdpr-4.jpg"); }
  .ak-slide--5 .ak-card__media { background-image: url("/media/gdpr-news/gdpr-5.jpg"); }
  .ak-slide--6 .ak-card__media { background-image: url("/media/gdpr-news/gdpr-6.jpg"); }
  /* Per-slide images (FIXED paths) */
.ak-slide--1 .ak-card__media { background-image: url("../media/gdpr-news/gdpr-1.jpg"); }
.ak-slide--2 .ak-card__media { background-image: url("../media/gdpr-news/gdpr-2.jpg"); }
.ak-slide--3 .ak-card__media { background-image: url("../media/gdpr-news/gdpr-3.jpg"); }
.ak-slide--4 .ak-card__media { background-image: url("../media/gdpr-news/gdpr-4.jpg"); }
.ak-slide--5 .ak-card__media { background-image: url("../media/gdpr-news/gdpr-5.jpg"); }
.ak-slide--6 .ak-card__media { background-image: url("../media/gdpr-news/gdpr-6.jpg"); }
/* GDPR sticky card images – FIXED */
.ak-slide--1 .ak-card__media {
  background-image: url("media/gdpr-news/gdpr-1");
}

.ak-slide--2 .ak-card__media {
  background-image: url("media/gdpr-news/gdpr-2");
}

.ak-slide--3 .ak-card__media {
  background-image: url("media/gdpr-news/gdpr-3");
}

.ak-slide--4 .ak-card__media {
  background-image: url("media/gdpr-news/gdpr-4");
}

.ak-slide--5 .ak-card__media {
  background-image: url("media/gdpr-news/gdpr-5");
}

.ak-slide--6 .ak-card__media {
  background-image: url("media/gdpr-news/gdpr-6");
}
.ak-card__media {
  width: 100%;
  height: 140px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}
.ak-slide--1 .ak-card__media { background-image: url("media/gdpr-news/gdpr-1.png"); }
.ak-slide--2 .ak-card__media { background-image: url("media/gdpr-news/gdpr-2.png"); }
.ak-slide--3 .ak-card__media { background-image: url("media/gdpr-news/gdpr-3.png"); }
.ak-slide--4 .ak-card__media { background-image: url("media/gdpr-news/gdpr-4.png"); }
.ak-slide--5 .ak-card__media { background-image: url("media/gdpr-news/gdpr-5.png"); }
.ak-slide--6 .ak-card__media { background-image: url("media/gdpr-news/gdpr-6.png"); }
/* ===========================
   STRATEGY PAGE – INTERACTIVITY LAYER
   (append to service-pages.css)
   =========================== */

   .service-page--strategy {
    scroll-behavior: smooth;
  }
  
  /* Scroll progress bar (top) */
  .svc-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
    background: transparent;
  }
  .svc-progress__bar {
    display: block;
    height: 100%;
    width: 100%;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--ak-teal), var(--ak-mauve));
    opacity: 0.9;
  }
  
  /* Sticky in-page nav */
  .svc-subnav {
    position: sticky;
    top: 72px; /* aligns under your main nav */
    z-index: 50;
    background: rgba(244, 242, 236, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(147,150,105,0.22);
  }
  .svc-subnav__inner {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .svc-subnav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(31,36,33,0.12);
    color: var(--ak-dark);
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    background: rgba(255,255,255,0.65);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  }
  .svc-subnav__link:hover {
    transform: translateY(-1px);
    border-color: rgba(105,150,130,0.45);
  }
  .svc-subnav__link.is-active {
    border-color: rgba(105,150,130,0.65);
    background: rgba(105,150,130,0.14);
  }
  
  /* tighten first section */
  .svc-section--tight {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  
  /* kicker row */
  .svc-kicker {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(147,150,105,0.22);
    background: rgba(255,255,255,0.7);
    box-shadow: var(--shadow-soft);
    max-width: 980px;
  }
  .svc-kicker__pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(105,150,130,0.35);
    background: rgba(105,150,130,0.12);
  }
  .svc-kicker__text {
    font-size: 13px;
    color: var(--ak-muted);
  }
  
  /* outcomes “metrics” */
  .svc-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
    max-width: 980px;
  }
  .svc-metric {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31,36,33,0.10);
    background: var(--ak-white);
    box-shadow: var(--shadow-soft);
    padding: 14px 14px 16px;
    transition: transform 0.18s ease, border-color 0.18s ease;
  }
  .svc-metric:hover {
    transform: translateY(-2px);
    border-color: rgba(105,150,130,0.45);
  }
  .svc-metric__label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ak-muted);
    margin-bottom: 6px;
  }
  .svc-metric__value {
    font-size: 14px;
    color: var(--ak-dark);
    font-weight: 600;
    line-height: 1.35;
  }
  
  /* Accordion */
  .svc-accordion {
    margin-top: 18px;
    display: grid;
    gap: 12px;
    max-width: 1040px;
  }
  .svc-acc-item {
    background: var(--ak-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31,36,33,0.10);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }
  .svc-acc-btn {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 14px 14px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
  }
  .svc-acc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ak-dark);
  }
  .svc-acc-meta {
    font-size: 12px;
    color: var(--ak-muted);
    border: 1px solid rgba(31,36,33,0.10);
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(244,242,236,0.7);
  }
  .svc-acc-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(31,36,33,0.12);
    background: rgba(105,150,130,0.12);
    position: relative;
  }
  .svc-acc-icon::before,
  .svc-acc-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: rgba(31,36,33,0.75);
  }
  .svc-acc-icon::before {
    width: 12px;
    height: 2px;
  }
  .svc-acc-icon::after {
    width: 2px;
    height: 12px;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  .svc-acc-btn[aria-expanded="true"] .svc-acc-icon::after {
    transform: scaleY(0);
    opacity: 0;
  }
  .svc-acc-panel {
    padding: 0 14px 14px;
  }
  .svc-acc-list {
    margin: 0;
    padding-left: 18px;
    color: var(--ak-muted);
    font-size: 13px;
    line-height: 1.6;
  }
  
  /* mini CTA under bridge card */
  .svc-mini-cta {
    margin-top: 12px;
    padding: 14px 14px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(147,150,105,0.22);
    background: linear-gradient(135deg, rgba(244,242,236,0.9), rgba(244,248,247,0.9));
    box-shadow: var(--shadow-soft);
  }
  .svc-mini-cta__title {
    font-size: 13px;
    color: var(--ak-dark);
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  /* Tabs */
  .svc-tabs {
    margin-top: 18px;
    max-width: 1040px;
  }
  .svc-tabs__controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .svc-tab {
    border: 1px solid rgba(31,36,33,0.12);
    background: rgba(255,255,255,0.7);
    color: var(--ak-dark);
    padding: 10px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  }
  .svc-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(105,150,130,0.45);
  }
  .svc-tab.is-active {
    background: rgba(105,150,130,0.16);
    border-color: rgba(105,150,130,0.65);
  }
  .svc-tabpanel__card {
    background: var(--ak-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31,36,33,0.10);
    box-shadow: var(--shadow-soft);
    padding: 16px 16px 18px;
  }
  .svc-bullets {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--ak-muted);
    font-size: 13px;
    line-height: 1.6;
  }
  
  /* Scroll-reveal */
  .reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .reveal.is-in {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    .svc-progress__bar {
      transition: none !important;
    }
  }
  
  /* Responsive */
  @media (max-width: 920px) {
    .svc-metrics {
      grid-template-columns: 1fr;
    }
    .svc-kicker {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  @media (max-width: 860px) {
    .svc-subnav { top: 64px; }
  }
  .svc-subnav{
    border-top: 1px solid rgba(31,36,33,.06);
    border-bottom: 1px solid rgba(31,36,33,.10);
  }
  
  .svc-subnav__link.is-active{
    background: rgba(105,150,130,.18);
    border-color: rgba(105,150,130,.55);
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
    transform: translateY(-1px);
  }
  .service-tag-grid{
    backdrop-filter: none;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 22px 70px rgba(0,0,0,.18);
  }
  .svc-kicker{
    padding: 16px 18px;
  }
  .svc-kicker__pill{
    font-weight: 800;
    letter-spacing: .06em;
  }
  .svc-kicker__text{
    font-size: 14px;
  }
  .svc-acc-item{
    position: relative;
  }
  .svc-acc-btn[aria-expanded="true"]{
    background: rgba(105,150,130,.08);
  }
  .svc-acc-item:has(.svc-acc-btn[aria-expanded="true"])::before{
    content:"";
    position:absolute;
    left:0; top:0; bottom:0;
    width: 4px;
    background: var(--ak-teal);
  }
  #svc-overview{
    padding-top: 26px;
  }
  /* ===========================
   SERVICE ACCENT TOKENS
   =========================== */
.service-page{
  --svc-accent: var(--ak-teal);
  --svc-accent-soft: rgba(105,150,130,.14);
  --svc-border: rgba(31,36,33,.10);
  --svc-surface: rgba(255,255,255,.86);
}

/* Strategy = Teal accent */
.service-page--strategy{
  --svc-accent: var(--ak-teal);
  --svc-accent-soft: rgba(105,150,130,.16);
}
/* Sticky subnav uses your palette properly */
.svc-subnav{
  background: rgba(250,247,242,.86); /* matches --ak-bg vibe */
  border-top: 1px solid rgba(31,36,33,.06);
  border-bottom: 1px solid rgba(31,36,33,.10);
}

.svc-subnav__link{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(31,36,33,.10);
  color: var(--ak-dark);
}

.svc-subnav__link.is-active{
  background: var(--svc-accent-soft);
  border-color: rgba(105,150,130,.55);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  transform: translateY(-1px);
}
/* Accordion cards */
.svc-acc-item{
  border: 1px solid rgba(31,36,33,.10);
  background: rgba(255,255,255,.86);
}

.svc-acc-btn[aria-expanded="true"]{
  background: rgba(105,150,130,.08);
}

.svc-acc-item{
  position: relative;
}

/* Left accent bar only when open */
.svc-acc-item:has(.svc-acc-btn[aria-expanded="true"])::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  background: var(--svc-accent);
}

/* Plus/minus circle uses teal */
.svc-acc-icon{
  background: rgba(105,150,130,.14);
  border-color: rgba(105,150,130,.28);
}
/* Best-for callout */
.svc-kicker{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(147,150,105,.22); /* olive border */
}

.svc-kicker__pill{
  background: rgba(105,150,130,.14);
  border-color: rgba(105,150,130,.30);
  color: var(--ak-dark);
}

/* Outcome cards */
.svc-metric{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31,36,33,.10);
}
.svc-metric:hover{
  border-color: rgba(105,150,130,.45);
}
.highlight-strip{
  background: rgba(150,105,125,.10);  /* mauve tint */
  border: 1px solid rgba(150,105,125,.22);
}
/* ==========================================
   SERVICE PAGES – COLOUR GLOW HOVERS (SAFE)
   Scoped: will not affect homepage
   ========================================== */

   .service-page--strategy{
    --svc-glow: var(--ak-teal); /* Strategy = teal */
  }
  
  /* Targets: metric cards, accordion cards, deliverable cards, bridge + mini CTA */
  .service-page .svc-metric,
  .service-page .svc-acc-item,
  .service-page .svc-tabpanel__card,
  .service-page .bridge-card,
  .service-page .svc-mini-cta{
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    will-change: transform, box-shadow;
  }
  
  /* Hover + keyboard focus glow */
  .service-page .svc-metric:hover,
  .service-page .svc-acc-item:hover,
  .service-page .svc-tabpanel__card:hover,
  .service-page .bridge-card:hover,
  .service-page .svc-mini-cta:hover,
  .service-page .svc-metric:focus-within,
  .service-page .svc-acc-item:focus-within,
  .service-page .svc-tabpanel__card:focus-within,
  .service-page .bridge-card:focus-within,
  .service-page .svc-mini-cta:focus-within{
    transform: translateY(-3px);
    border-color: rgba(105,150,130,.55);
    box-shadow:
      0 18px 50px rgba(0,0,0,.10),
      0 0 0 1px rgba(105,150,130,.22),
      0 0 34px rgba(105,150,130,.22); /* glow */
  }
  
  /* Optional: make accordion header feel “lit” on hover */
  .service-page .svc-acc-item:hover .svc-acc-btn,
  .service-page .svc-acc-item:focus-within .svc-acc-btn{
    background: rgba(105,150,130,.08);
  }
  
  /* Reduce motion */
  @media (prefers-reduced-motion: reduce){
    .service-page .svc-metric,
    .service-page .svc-acc-item,
    .service-page .svc-tabpanel__card,
    .service-page .bridge-card,
    .service-page .svc-mini-cta{
      transition: none;
    }
  }
  .service-page--gdpr{ --svc-glow: var(--ak-mauve); }
.service-page--web{  --svc-glow: var(--ak-olive); }
/* ==========================================
   SERVICE ACCENT SYSTEM
   ========================================== */

   .service-page--strategy {
    --svc-accent: #939669;            /* olive */
    --svc-accent-soft: rgba(147,150,105,.08);
    --svc-accent-mid: rgba(147,150,105,.18);
    --svc-accent-glow: rgba(147,150,105,.28);
  }
  .service-page--strategy .svc-metric {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  
  .service-page--strategy .svc-metric:hover {
    border-color: var(--svc-accent-mid);
    box-shadow:
      0 18px 40px rgba(0,0,0,.08),
      0 0 0 1px var(--svc-accent-mid),
      0 0 32px var(--svc-accent-glow);
  }
  .service-page--strategy .svc-acc-btn {
    transition: background .15s ease, box-shadow .15s ease;
  }
  
  .service-page--strategy .svc-acc-item:hover .svc-acc-btn {
    background: var(--svc-accent-soft);
  }
  
  .service-page--strategy
  .svc-acc-btn[aria-expanded="true"] {
    background: var(--svc-accent-soft);
    box-shadow: inset 4px 0 0 var(--svc-accent);
  }
  .service-page--strategy .highlight-strip {
    background: var(--svc-accent-soft);
    border-left: 4px solid var(--svc-accent);
  }
  .service-page--strategy .bridge-card:hover,
.service-page--strategy .svc-tabpanel__card:hover {
  box-shadow:
    0 20px 48px rgba(0,0,0,.1),
    0 0 0 1px var(--svc-accent-mid),
    0 0 36px var(--svc-accent-glow);
}
/* ==========================================
   STRATEGY PAGE – PER-ITEM COLOUR VARIATION
   Uses data-accent="olive|teal|mauve"
   ========================================== */

   .service-page--strategy .svc-metric,
   .service-page--strategy .svc-acc-item,
   .service-page--strategy .highlight-strip{
     --accent: rgba(0,0,0,0);
     --accent-soft: rgba(0,0,0,0);
     --accent-mid: rgba(0,0,0,0);
     --accent-glow: rgba(0,0,0,0);
   }
   
   /* Accent maps (match your site palette) */
   .service-page--strategy [data-accent="olive"]{
     --accent: #939669;
     --accent-soft: rgba(147,150,105,.08);
     --accent-mid: rgba(147,150,105,.18);
     --accent-glow: rgba(147,150,105,.28);
   }
   
   .service-page--strategy [data-accent="teal"]{
     --accent: #699682;
     --accent-soft: rgba(105,150,130,.08);
     --accent-mid: rgba(105,150,130,.18);
     --accent-glow: rgba(105,150,130,.28);
   }
   
   .service-page--strategy [data-accent="mauve"]{
     --accent: #96697D;
     --accent-soft: rgba(150,105,125,.08);
     --accent-mid: rgba(150,105,125,.18);
     --accent-glow: rgba(150,105,125,.28);
   }
   
   /* ---- Metric cards ---- */
   .service-page--strategy .svc-metric{
     position: relative;
     border: 1px solid rgba(0,0,0,.06);
     background: #fff;
     transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
   }
   
   .service-page--strategy .svc-metric:hover,
   .service-page--strategy .svc-metric:focus-within{
     transform: translateY(-3px);
     border-color: var(--accent-mid);
     box-shadow:
       0 18px 40px rgba(0,0,0,.08),
       0 0 0 1px var(--accent-mid),
       0 0 34px var(--accent-glow);
   }
   
   /* A subtle top “pill bar” like your service tiles */
   .service-page--strategy .svc-metric::before{
     content:"";
     position:absolute;
     left:14px;
     right:14px;
     top:12px;
     height:16px;
     border-radius:999px;
     background: var(--accent-soft);
   }
   
   /* ---- Accordion items ---- */
   .service-page--strategy .svc-acc-item{
     border: 1px solid rgba(0,0,0,.06);
     background: #fff;
     transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
     overflow: hidden;
   }
   
   .service-page--strategy .svc-acc-item:hover,
   .service-page--strategy .svc-acc-item:focus-within{
     transform: translateY(-2px);
     border-color: var(--accent-mid);
     box-shadow:
       0 18px 40px rgba(0,0,0,.06),
       0 0 0 1px var(--accent-mid),
       0 0 30px var(--accent-glow);
   }
   
   /* Left colour strip (visible even when closed) */
   .service-page--strategy .svc-acc-item{
     box-shadow: inset 4px 0 0 var(--accent);
   }
   
   /* Hover tint on the button row */
   .service-page--strategy .svc-acc-item:hover .svc-acc-btn,
   .service-page--strategy .svc-acc-item:focus-within .svc-acc-btn{
     background: var(--accent-soft);
   }
   
   /* Active/open state: stronger strip + soft background */
   .service-page--strategy .svc-acc-btn[aria-expanded="true"]{
     background: var(--accent-soft);
   }
   
   /* Make the small meta pill (Start here / Map the system) adopt accent */
   .service-page--strategy .svc-acc-meta{
     border-color: var(--accent-mid) !important;
     background: var(--accent-soft) !important;
     color: rgba(0,0,0,.72) !important;
   }
   
   /* Plus/minus button ring picks up colour */
   .service-page--strategy .svc-acc-icon{
     box-shadow: 0 0 0 1px var(--accent-mid);
   }
   
   /* ---- Highlight strip ---- */
   .service-page--strategy .highlight-strip{
     background: var(--accent-soft);
     border: 1px solid var(--accent-mid);
     border-left: 4px solid var(--accent);
   }
   /* =========================
   SERVICE PAGE: ACCENT SYSTEM
   ========================= */

.service-page [data-accent="olive"] { --svc-accent: var(--ak-olive); }
.service-page [data-accent="teal"]  { --svc-accent: var(--ak-teal); }
.service-page [data-accent="mauve"] { --svc-accent: var(--ak-mauve); }

/* Tabs: coloured pills like homepage tags */
.service-page .svc-tab {
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.85);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.service-page .svc-tab[data-accent]{
  border-color: color-mix(in srgb, var(--svc-accent) 30%, rgba(0,0,0,0.10));
  background: color-mix(in srgb, var(--svc-accent) 14%, rgba(255,255,255,0.92));
}

.service-page .svc-tab[data-accent]:hover{
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--svc-accent) 20%, rgba(255,255,255,0.92));
  box-shadow:
    0 14px 34px rgba(0,0,0,0.10),
    0 0 0 4px color-mix(in srgb, var(--svc-accent) 22%, transparent);
}

.service-page .svc-tab.is-active{
  background: rgba(255,255,255,0.96);
}

.service-page .svc-tab.is-active[data-accent]{
  border-color: color-mix(in srgb, var(--svc-accent) 55%, rgba(0,0,0,0.12));
  background: color-mix(in srgb, var(--svc-accent) 24%, rgba(255,255,255,0.96));
  box-shadow:
    0 18px 44px rgba(0,0,0,0.12),
    0 0 0 5px color-mix(in srgb, var(--svc-accent) 26%, transparent);
}
/* =========================
   SERVICE PAGE – "WHO IT'S FOR" PILL
   Match Working With Your Team box
   ========================= */

   .service-page .highlight-strip {
    background: color-mix(
      in srgb,
      var(--ak-teal) 12%,
      #ffffff 88%
    );
    border: 1px solid color-mix(
      in srgb,
      var(--ak-teal) 30%,
      rgba(0,0,0,0.08)
    );
    border-left: 4px solid var(--ak-teal);
    color: var(--ak-dark);
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  }
  
  /* tighten typography slightly so it reads like a pill, not a panel */
  .service-page .highlight-strip strong {
    color: var(--ak-dark);
    font-weight: 600;
  }
  /* =========================================================
   AK REVEAL STEPS (ISOLATED) — only affects cards using:
   .ak-reveal-steps + [data-ak-reveal]
   ========================================================= */

.ak-reveal-steps .ak-reveal-card{
  padding: 0;                 /* we control padding inside toggle/body */
  overflow: hidden;
}

.ak-reveal-steps .ak-reveal-toggle{
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 14px 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.ak-reveal-steps .ak-reveal-toggle h3{
  margin: 0;
}

.ak-reveal-steps .ak-reveal-plus{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  position: relative;
  margin-top: 1px;
  opacity: 0.9;
}

.ak-reveal-steps .ak-reveal-plus::before,
.ak-reveal-steps .ak-reveal-plus::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: rgba(0,0,0,0.55);
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.ak-reveal-steps .ak-reveal-plus::after{
  width: 2px;
  height: 12px;
}

/* body animation */
.ak-reveal-steps .ak-reveal-body{
  padding: 0 14px 14px;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
}

.ak-reveal-steps .ak-reveal-body p{
  margin: 0;
}

/* open state */
.ak-reveal-steps .ak-reveal-card.is-open .ak-reveal-body{
  max-height: 260px; /* enough for these paragraphs */
  opacity: 1;
  transform: translateY(0);
}

.ak-reveal-steps .ak-reveal-card.is-open .ak-reveal-plus::after{
  height: 0; /* turns + into − */
}
/* =========================================================
   GDPR CONSENT PAGE — STEPS (Industries-style reveal)
   ISOLATED to #compliance-process ONLY
   ========================================================= */

   #compliance-process .ak-steps-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
  }
  
  @media (max-width: 980px){
    #compliance-process .ak-steps-grid{
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px){
    #compliance-process .ak-steps-grid{
      grid-template-columns: 1fr;
    }
  }
  
  /* Card wrapper (mirrors #industries .card-industry behaviour) */
  #compliance-process .ak-step-card{
    position: relative;
    height: 160px;                /* closed height */
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 60px rgba(0,0,0,0.08);
    cursor: pointer;
  }
  
  /* Faces */
  #compliance-process .ak-step-card .face{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Content face (revealed when overlay collapses) */
  #compliance-process .ak-step-card .face.face1{
    box-sizing: border-box;
    padding: 18px 18px 20px;
    align-items: flex-start;
  }
  
  #compliance-process .ak-step-card .face.face1 .content{
    width: 100%;
  }
  
  #compliance-process .ak-step-card .face.face1 h3{
    margin: 0 0 8px;
    font-size: 0.98rem;
    line-height: 1.25;
  }
  
  #compliance-process .ak-step-card .face.face1 p{
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(0,0,0,0.70);
  }
  
  /* Overlay face (gradient) */
  #compliance-process .ak-step-card .face.face2{
    top: 0;
    height: 100%;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* 3-col gradient rotation to match the site palette */
  #compliance-process .ak-step-card:nth-child(1) .face.face2 { background: linear-gradient(135deg, var(--ak-teal),  var(--ak-olive)); }
  #compliance-process .ak-step-card:nth-child(2) .face.face2 { background: linear-gradient(135deg, var(--ak-olive), var(--ak-mauve)); }
  #compliance-process .ak-step-card:nth-child(3) .face.face2 { background: linear-gradient(135deg, var(--ak-mauve), var(--ak-teal)); }
  #compliance-process .ak-step-card:nth-child(4) .face.face2 { background: linear-gradient(135deg, var(--ak-teal),  var(--ak-mauve)); }
  #compliance-process .ak-step-card:nth-child(5) .face.face2 { background: linear-gradient(135deg, var(--ak-olive), var(--ak-teal)); }
  #compliance-process .ak-step-card:nth-child(6) .face.face2 { background: linear-gradient(135deg, var(--ak-mauve), var(--ak-olive)); }
  
  /* Light strip like Industries */
  #compliance-process .ak-step-card .face.face2::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:50%;
    height:100%;
    background: rgba(255,255,255,0.12);
  }
  
  /* Step label */
  #compliance-process .ak-step-card .face.face2 h2{
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 5px rgba(0,0,0,0.25);
    transition: 0.5s;
    text-align: center;
    padding: 0 12px;
  }
  
  /* Reveal on hover (desktop) */
  #compliance-process .ak-step-card:hover .face.face2{
    height: 62px;
    top: auto;
    bottom: 0;
    border-radius: 0 0 16px 16px;
  }
  
  #compliance-process .ak-step-card:hover .face.face2 h2{
    font-size: 1.2rem;
  }
  
  /* Reveal on click/tap (mobile + touch) */
  #compliance-process .ak-step-card.is-open .face.face2{
    height: 62px;
    top: auto;
    bottom: 0;
    border-radius: 0 0 16px 16px;
  }
  
  #compliance-process .ak-step-card.is-open .face.face2 h2{
    font-size: 1.2rem;
  }
  
  /* Make “open” state taller so content fits nicely */
  #compliance-process .ak-step-card:hover,
  #compliance-process .ak-step-card.is-open{
    height: 230px;
  }
  /* was 160px closed, 230px on hover/open */
#compliance-process .ak-step-card{
  height: 230px !important;   /* constant */
}
/* =========================================================
   WEB DEV — “What we build” gradient reveal (isolated)
   Prevents any grid reflow by keeping card height constant.
   ========================================================= */

  
  #what-we-build #ak-build-reveal .build-card {
    position: relative;
    height: 240px;               /* <- constant height = no layout shift */
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    cursor: pointer;
    transform: translateZ(0);
  }
  
  #what-we-build #ak-build-reveal .build-card .face {
    position: absolute;
    inset: 0;
  }
  
  #what-we-build #ak-build-reveal .build-card .face1 {
    padding: 26px 26px 78px;     /* bottom padding = space for the strip */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
  }
  
  #what-we-build #ak-build-reveal .build-card .face1 h3 {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1f2421;
  }
  
  #what-we-build #ak-build-reveal .build-card .face1 ul {
    margin: 0;
    padding-left: 18px;
    color: #3f4447;
    line-height: 1.45;
    font-size: 14px;
  }
  
  #what-we-build #ak-build-reveal .build-card .face2 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .32s ease, filter .32s ease;
    will-change: transform;
  }
  
  #what-we-build #ak-build-reveal .build-card .face2 h2 {
    margin: 0;
    padding: 0 18px;
    text-align: center;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.01em;
    text-shadow: 0 10px 26px rgba(0,0,0,0.18);
  }
  
  /* The “strip” amount left visible when revealed */
  #what-we-build #ak-build-reveal .build-card {
    --ak-strip: 70px;
  }
  
/* Hover + click open (desktop + mobile) */
#what-we-build #ak-build-reveal .build-card:hover .face1,
#what-we-build #ak-build-reveal .build-card.is-open .face1{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#what-we-build #ak-build-reveal .build-card:hover .face2,
#what-we-build #ak-build-reveal .build-card.is-open .face2{
  transform: translateY(calc(100% - var(--ak-strip)));
}

  
  /* A little “polish” without affecting other pages */
  #what-we-build #ak-build-reveal .build-card:hover,
  #what-we-build #ak-build-reveal .build-card.is-open {
    box-shadow: 0 22px 60px rgba(0,0,0,0.12);
  }
  
  @media (prefers-reduced-motion: reduce) {
    #what-we-build #ak-build-reveal .build-card .face1,
    #what-we-build #ak-build-reveal .build-card .face2 {
      transition: none !important;
    }
  }
  /* =========================================================
   WEB DEV — "What we build" (GDPR Steps reveal styling)
   ISOLATED to #what-we-build #ak-build-reveal ONLY
   ========================================================= */

#what-we-build #ak-build-reveal{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

@media (max-width: 980px){
  #what-we-build #ak-build-reveal{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  #what-we-build #ak-build-reveal{
    grid-template-columns: 1fr;
  }
}

/* Card shell */
#what-we-build #ak-build-reveal .build-card{
  position: relative;
  height: 160px;                /* closed height (GDPR exact) */
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 15px 60px rgba(0,0,0,0.08);
  cursor: pointer;
}

/* Faces */
#what-we-build #ak-build-reveal .build-card .face{
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTENT (hidden until hover/open) */
#what-we-build #ak-build-reveal .build-card .face.face1{
  opacity: 0;
  transform: translateY(12px);
  transition: 280ms ease;
  box-sizing: border-box;
  padding: 18px 18px 20px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

#what-we-build #ak-build-reveal .build-card .face.face1 .content{
  width: 100%;
}

#what-we-build #ak-build-reveal .build-card .face.face1 h3{
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

#what-we-build #ak-build-reveal .build-card .face.face1 p{
  margin: 0;
  color: var(--ak-muted, #61666a);
  line-height: 1.35;
  font-size: 0.95rem;
}

/* GRADIENT PANEL */
#what-we-build #ak-build-reveal .build-card .face.face2{
  transition: 320ms ease;
  will-change: transform;
  border-radius: 16px;
  position: absolute;
  inset: 0;
}

#what-we-build #ak-build-reveal .build-card .face.face2::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:50%;
  height:100%;
  background: rgba(255,255,255,0.12);
}

/* Title on gradient */
#what-we-build #ak-build-reveal .build-card .face.face2 h2{
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 10px 26px rgba(0,0,0,0.18);
  position: relative;
  padding: 0 18px;
  text-align: center;
}

/* Hover reveal (desktop) */
#what-we-build #ak-build-reveal .build-card:hover .face.face1{
  opacity: 1;
  transform: translateY(0);
}

#what-we-build #ak-build-reveal .build-card:hover .face.face2{
  height: 62px;
  top: auto;
  bottom: 0;
  border-radius: 0 0 16px 16px;
}

#what-we-build #ak-build-reveal .build-card:hover .face.face2 h2{
  font-size: 1.2rem;
}

/* Tap/click open (mobile + touch) */
#what-we-build #ak-build-reveal .build-card.is-open .face.face1{
  opacity: 1;
  transform: translateY(0);
}

#what-we-build #ak-build-reveal .build-card.is-open .face.face2{
  height: 62px;
  top: auto;
  bottom: 0;
  border-radius: 0 0 16px 16px;
}

#what-we-build #ak-build-reveal .build-card.is-open .face.face2 h2{
  font-size: 1.2rem;
}

/* Make open state taller (GDPR exact) */
#what-we-build #ak-build-reveal .build-card:hover,
#what-we-build #ak-build-reveal .build-card.is-open{
  height: 230px;
}

/* keep height constant to avoid layout shift (GDPR exact override) */
#what-we-build #ak-build-reveal .build-card{
  height: 230px !important;
}
/* ==========================================
   WEB DEV — slow down hover reveal (timing only)
   ========================================== */

   #what-we-build #ak-build-reveal .build-card .face.face1{
    transition: opacity 1s ease, transform 1s ease;
  }
  
  #what-we-build #ak-build-reveal .build-card .face.face2{
    transition: transform 1s ease;
  }
  
  #what-we-build #ak-build-reveal .build-card{
    transition: box-shadow 1s ease, transform 1s ease;
  }
  /* ==========================================
   WEB DEV — bottom row palette fix (site-consistent)
   ========================================== */

/* CRO & UX — deep forest (replaces harsh black) */
#what-we-build #ak-build-reveal .build-face-cro{
  background: linear-gradient(90deg, #2f3a36 0%, #26312d 50%, #1f2926 100%);
}

/* Booking — richer muted teal */
#what-we-build #ak-build-reveal .build-face-booking{
  background: linear-gradient(90deg, #5f786f 0%, #567067 50%, #4b625a 100%);
}

/* Membership — dustier mauve (less “purple block”) */
#what-we-build #ak-build-reveal .build-face-membership{
  background: linear-gradient(90deg, #8b6a77 0%, #7f6170 50%, #6f5565 100%);
}
/* META STACK – IMAGE FIGURE */
.meta-stack__item-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3f5148, #6f8f7f);
  border-radius: 18px 0 0 18px;
  overflow: hidden;
}

.meta-stack__item-figure img {
  width: 56%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}
/* META STACK – IMAGE FIGURE */
.meta-stack__item-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3f5148, #6f8f7f);
  border-radius: 18px 0 0 18px;
  overflow: hidden;
}

.meta-stack__item-figure img {
  width: 56%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}
.meta-stack__item-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.meta-stack__item-figure img {
  width: 56%;
  max-width: 220px;
  height: auto;
}

.meta-stack__item-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  max-width: 80%;
}
/* ==========================================
   WHAT WE BUILD – increase card height (+20%)
   ========================================== */

   #what-we-build #ak-build-reveal .build-card,
   #what-we-build #ak-build-reveal .build-card:hover,
   #what-we-build #ak-build-reveal .build-card.is-open {
     height: 280px !important;
   }
   
   /* Ensure inner faces fill the taller card */
   #what-we-build #ak-build-reveal .build-card .face {
     height: 100%;
   }
   