/* =========================================================
   ONE OF A KIND BUSINESS SOLUTIONS
   GLOBAL STYLES
========================================================= */

:root {
  --navy: #1f3a5f;
  --navy-deep: #182e4a;
  --gold: #c18a2d;
  --beige: #e9e2d6;

  --charcoal-navy: #223148;
  --cool-grey: #7b8291;
  --light-warm-grey: #dfdcd5;
  --off-white: #f8f7f4;
  --soft-coral: #de7b5f;
  --muted-coral: #d46c53;
  --dusty-blue: #6483a5;
  --sage: #96ada3;

  --text-dark: #223148;
  --text-soft: #5f6775;
  --white: #ffffff;
  --border: 1px solid rgba(31, 58, 95, 0.12);
  --shadow: 0 16px 40px rgba(24, 46, 74, 0.08);

  --max-width: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --transition: 0.3s ease;
}

/* =========================================================
   RESET / BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

/* =========================================================
   TYPOGRAPHY / SHARED SECTION ELEMENTS
========================================================= */

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

.section {
  padding: 52px 0;
}

.section-narrow {
  max-width: 860px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section h2 {
  margin: 0 0 14px;
  font-family: "Inria Serif", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
}

.section-text {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--navy);
}

.text-link:hover {
  color: var(--gold);
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  cursor: pointer;
}

.btn-nav,
.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-nav:hover,
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(31, 58, 95, 0.18);
  color: var(--navy);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-secondary-light {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: transparent;
}

.btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================================
   HEADER / NAV
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand span {
  font-family: "Inria Serif", serif;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.active,
.nav-item-dropdown.active-parent > a {
  color: var(--gold);
}

/* =========================
   DROPDOWN
========================= */

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-item-dropdown > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}

.site-nav ul.dropdown-menu {
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 6px 0 0 0;
  padding: 6px 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1001;
}

.dropdown-menu li {
  display: block;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  margin: 0 6px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  white-space: nowrap;
  border-radius: 10px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: rgba(15, 23, 42, 0.05);
  color: var(--navy);
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   HAMBURGER
========================= */

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  padding: 82px 0 64px;
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.72) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.hero h1 {
  font-family: "Inria Serif", serif;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--navy);
  max-width: 12ch;
}

.hero-subheading {
  font-size: 1.05rem;
  color: var(--navy);
  max-width: 680px;
  margin: 0 0 12px;
  font-weight: 500;
}

.hero-text {
  max-width: 620px;
  font-size: 1.02rem;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-card-inner {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  max-width: 420px;
}

.hero-card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-card-inner h2 {
  margin: 0 0 14px;
  font-family: "Inria Serif", serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--navy);
}

.hero-card-inner p {
  margin: 0;
  color: var(--text-soft);
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  padding: 20px 0 28px;
  background: var(--off-white);
  border-bottom: var(--border);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-strip-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  background: var(--white);
  border: var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: center;
}

.trust-strip-grid span::before {
  content: "âœ“";
  color: var(--gold);
  font-weight: 700;
}

.trust-strip-note {
  text-align: center;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* =========================================================
   INTRO / IMAGE INTRO
========================================================= */

.intro-section,
.audience-section {
  background: var(--off-white);
}

.intro-section--image {
  position: relative;
  overflow: hidden;
}

.intro-section--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 247, 244, 0.38) 0%,
      rgba(248, 247, 244, 0.50) 100%
    ),
    url("assets/img/intro-bg-2.webp") center center / cover no-repeat;
  z-index: 0;
}

.intro-section--image .section-narrow {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(24, 46, 74, 0.10);
  padding: 40px 36px;
}

/* =========================================================
   SERVICES
========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: "Inria Serif", serif;
  font-size: 1.42rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
}

.section-action {
  margin-top: 28px;
  text-align: center;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.22) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.why-us-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.why-us-intro {
  position: sticky;
  top: 120px;
}

.why-us-points {
  display: grid;
  gap: 16px;
}

.why-point {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 22px 22px 22px 18px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.why-point:hover {
  transform: translateY(-4px);
}

.why-point-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 138, 45, 0.12);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.why-point-content h3 {
  margin: 2px 0 8px;
  font-family: "Inria Serif", serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.why-point-content p {
  margin: 0;
  color: var(--text-soft);
}

/* =========================================================
   WHO WE WORK WITH
========================================================= */

.audience-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.audience-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.audience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-content {
  max-width: 640px;
}

.audience-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.18)
  );
}

/* =========================================================
   HOW IT WORKS / PROCESS TIMELINE
========================================================= */

.process-timeline-section {
  background: var(--off-white);
}

.process-timeline-intro {
  margin-bottom: 34px;
}

.process-timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 34px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 22px;
  width: 1px;
  background: rgba(31, 58, 95, 0.16);
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}

.timeline-step:not(:last-child) {
  margin-bottom: 22px;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 22px rgba(24, 46, 74, 0.16);
}

.timeline-content {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
}

.timeline-content h3 {
  margin: 0 0 10px;
  font-family: "Inria Serif", serif;
  font-size: 1.42rem;
  font-weight: 400;
  color: var(--navy);
}

.timeline-content p {
  margin: 0;
  color: var(--text-soft);
}

/* =========================================================
   RESULTS
========================================================= */

.results-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.35) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.result-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  color: var(--navy);
  font-weight: 500;
  box-shadow: var(--shadow);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.result-item:hover {
  transform: translateY(-4px);
}

.result-item::before {
  content: "âœ“";
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}

.cta-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 34px;
  text-align: center;
  margin: 0;
  position: relative;
}

.cta-box .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.cta-box h2 {
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 14px;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  justify-content: center;
}

/* =========================================================
   SEO STRIP
========================================================= */

.seo-strip {
  padding: 48px 20px;
  background: #ffffff;
}

.seo-card {
  max-width: 980px;
  margin: 0 auto;
  background: #f7f5f0;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.06);
}

.seo-card h2 {
  margin: 0 0 14px;
  font-family: "Inria Serif", serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: #0a2540;
}

.seo-card p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: #3d4b5c;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: var(--charcoal-navy);
  color: rgba(255, 255, 255, 0.86);
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 42px 0 32px;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: "Inria Serif", serif;
  font-weight: 400;
  color: var(--white);
}

.footer-col p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .hero-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid,
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-us-intro {
    position: static;
  }

  .audience-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .audience-image {
    order: -1;
  }

  .navbar {
    min-height: 78px;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .btn.btn-nav {
    display: none;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 3;
    margin-left: 0;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 14px 0 6px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .site-nav > ul > li {
    width: 100%;
  }

  .site-nav > ul > li > a {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  .nav-item-dropdown > a {
    justify-content: flex-start;
  }

  .site-nav ul.dropdown-menu {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin: 4px 0 8px 0;
    padding: 4px 0 0 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-item-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    margin: 0;
    padding: 8px 0;
    border-radius: 0;
    white-space: normal;
    font-size: 0.92rem;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:focus {
    background: transparent;
    color: var(--gold);
  }
}

@media (max-width: 860px) {
  .hero {
    padding: 68px 0 56px;
  }

  .section {
    padding: 60px 0;
  }

  .trust-strip {
    padding: 18px 0 24px;
  }

  .trust-strip-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 38px 22px;
  }

  .seo-strip {
    padding: 40px 20px;
  }

  .seo-card {
    padding: 32px 22px;
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .navbar {
    min-height: 72px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .why-point {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px;
  }

  .why-point-number {
    width: 44px;
    height: 44px;
  }

  .process-timeline {
    padding-left: 0;
  }

  .process-timeline::before {
    display: none;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-marker {
    width: 44px;
    height: 44px;
  }

  .timeline-content {
    padding: 22px 18px;
  }

  .intro-section--image .section-narrow {
    padding: 30px 22px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand span {
    font-size: 0.98rem;
    text-align: center;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero-card-inner,
  .service-card,
  .result-item {
    padding: 22px 18px;
  }

  .seo-card p,
  .section-text,
  .hero-text {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn,
  .service-card,
  .why-point,
  .timeline-content,
  .result-item,
  .nav-toggle span,
  .dropdown-menu {
    transition: none !important;
  }
}

/* PAGE HERO */
.page-hero {
  padding: 110px 0 90px;
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.7) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.page-hero-inner {
  max-width: 860px;
}

.page-hero h1 {
  font-family: "Inria Serif", serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--navy);
}

.page-hero-subheading {
  font-size: 1.08rem;
  color: var(--navy);
  max-width: 720px;
  margin: 0 0 14px;
  font-weight: 500;
}

.page-hero-text {
  max-width: 760px;
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 30px;
}

/* SERVICES INTRO */
.services-intro-section {
  background: var(--off-white);
}

/* SERVICE PILLARS */
.service-pillar {
  position: relative;
  overflow: hidden;
}

.service-pillar-container {
  position: relative;
  z-index: 1;
}

.service-pillar--light {
  background: var(--off-white);
}

.service-pillar--dark {
  background:
    radial-gradient(circle at top left, rgba(193, 138, 45, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, #22395b 0%, #1f3a5f 55%, #182e4a 100%);
  color: var(--white);
}

.service-pillar--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px, 36px 36px;
}

.service-pillar--dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(193, 138, 45, 0.9),
    rgba(193, 138, 45, 0.18),
    transparent
  );
}

.service-pillar--dark .section-label {
  color: rgba(255, 215, 0, 0.92);
}

.service-pillar--dark h2,
.service-pillar--dark h3 {
  color: var(--white);
}

.service-pillar--dark .section-text {
  color: rgba(255, 255, 255, 0.78);
}

.service-pillar-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.service-pillar-layout--reverse {
  grid-template-columns: 0.9fr 1fr;
}

.service-pillar-intro {
  max-width: 680px;
}

.service-pillar-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

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

.service-pillar-card h3 {
  margin: 0 0 18px;
  font-family: "Inria Serif", serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--navy);
}

.service-pillar--dark .service-pillar-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 45px rgba(10, 18, 32, 0.18);
}

.service-pillar--dark .service-pillar-card h3 {
  color: var(--navy);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
}

.service-list li + li {
  margin-top: 14px;
}

.service-list li::before {
  content: "â€¢";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.2;
}

.service-pillar-actions {
  margin-top: 26px;
}

/* PRICING / POSITIONING */
.pricing-positioning-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.18) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.section-action--left {
  text-align: left;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .service-pillar-layout,
  .service-pillar-layout--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .page-hero {
    padding: 82px 0 70px;
  }
}

@media (max-width: 560px) {
  .service-pillar-card {
    padding: 26px 22px;
  }
}

/* SERVICES CTA */

.services-cta-section{
  background: linear-gradient(180deg, rgba(233,226,214,0.18) 0%, rgba(248,247,244,1) 100%);
  padding: 88px o 72px;
}
.services-cta-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 38px 40px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.services-cta-copy h2 {
  margin-bottom: 16px;
}

.services-cta-copy .section-text {
  margin-bottom: 0;
}

.services-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 860px) {
  .services-cta-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .services-cta-actions {
    align-items: stretch;
  }
}

/* FOOTER SEO - QUIETER VERSION */
.footer-seo--simple {
  padding: 34px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-seo--simple .footer-seo-container {
  max-width: 980px;
  text-align: center;
}

.footer-seo--simple p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}

/* SERVICES HERO */
.services-hero {
  padding: 110px 0 88px;
  background:
    linear-gradient(180deg, rgba(233, 226, 214, 0.62) 0%, rgba(248, 247, 244, 1) 100%);
}

.services-hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.services-hero-copy {
  max-width: 720px;
}

.services-hero h1 {
  font-family: "Inria Serif", serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--navy);
}

.services-hero-subheading {
  font-size: 1.08rem;
  color: var(--navy);
  max-width: 680px;
  margin: 0 0 14px;
  font-weight: 500;
}

.services-hero-text {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.services-hero-panel {
  background: rgba(255, 255, 255, 0.78);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services-hero-panel-label {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.services-hero-panel-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.services-hero-panel-item + .services-hero-panel-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 58, 95, 0.1);
}

.services-hero-panel-item span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 138, 45, 0.12);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.services-hero-panel-item h3 {
  margin: 2px 0 6px;
  font-family: "Inria Serif", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
}

.services-hero-panel-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

@media (max-width: 1024px) {
  .services-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .services-hero {
    padding: 82px 0 70px;
  }
}

/* ================================
   SERVICE DETAIL PAGE
================================ */

/* HERO */
.service-detail-hero {
  padding: 88px 0 68px;
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.62) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.service-detail-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.service-detail-hero-copy {
  max-width: 720px;
}

.service-detail-hero h1 {
  font-family: "Inria Serif", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.06;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--navy);
}

.service-detail-subheading {
  font-size: 1.08rem;
  color: var(--navy);
  max-width: 680px;
  margin: 0 0 14px;
  font-weight: 500;
}

.service-detail-text {
  max-width: 700px;
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.service-detail-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* INTRO */
.service-intro-section {
  background: var(--off-white);
}

/* WHAT WE DO */
.service-detail-grid-section {
  background: var(--off-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-detail-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-detail-item:hover {
  transform: translateY(-4px);
}

.service-detail-item h3 {
  margin: 0 0 12px;
  font-family: "Inria Serif", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
}

.service-detail-item p {
  margin: 0;
  color: var(--text-soft);
}

/* BENEFITS */
.service-benefit-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.22) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.service-benefit-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.service-benefit-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-benefit-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-benefit-copy {
  max-width: 680px;
}

.service-benefit-list,
.service-audience-list {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.service-benefit-list li,
.service-audience-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
}

.service-benefit-list li + li,
.service-audience-list li + li {
  margin-top: 12px;
}

.service-benefit-list li::before,
.service-audience-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

/* AUDIENCE */
.service-audience-section {
  background: var(--off-white);
}

/* APPROACH */
.service-approach-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.18) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.approach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.approach-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  border: var(--border);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .service-detail-hero-layout,
  .service-benefit-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .service-detail-hero {
    padding: 78px 0 58px;
  }
}

@media (max-width: 640px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-item {
    padding: 22px 20px;
  }

  .service-detail-hero-image img,
  .service-benefit-image img {
    min-height: 280px;
  }

  .approach-tags {
    gap: 10px;
  }

  .approach-tags span {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ========================================
   BUSINESS INTRO (IMAGE BACKGROUND FIX)
======================================== */

.business-intro-section--image {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Background image + overlay */
.business-intro-section--image::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
  linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.85) 40%,
    rgba(255,255,255,0.2) 100%
  ),
  url("assets/img/intro-bg.webp") center / cover no-repeat;

  z-index: 0;
}

/* Optional: subtle depth layer */
.business-intro-section--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(0, 0, 0, 0.04),
    transparent 40%
  );
  z-index: 0;
}

/* Content sits above */
.business-intro-section--image .container {
  position: relative;
  z-index: 2;

  max-width: 800px;
}

/* Improve readability */
.business-intro-section--image h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.business-intro-section--image .section-text {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.7;
}

/* Optional: subtle "card feel" */
.business-intro-section--image .container {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  padding: 20px;
  border-radius: 20px;
}
/* =========================================================
   BRANDING & DIGITAL PAGE STYLES
========================================================= */

/* HERO DIFFERENT LOOK */
.service-detail-hero--brand {
  background: linear-gradient(
    180deg,
    rgba(100, 131, 165, 0.18) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

/* POSITIONING SPLIT BLOCK */
.brand-positioning-section {
  background: var(--off-white);
}

.brand-positioning-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.brand-positioning-highlight {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.6;
}

/* SERVICES GRID DIFFERENT FEEL */
.service-detail-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.service-detail-grid-section--brand .service-detail-item {
  text-align: center;
  padding: 24px 18px;
}

.service-detail-grid-section--brand .service-detail-item h3 {
  font-size: 1.2rem;
}

/* TRANSFORMATION SECTION */
.brand-transformation-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.4) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.brand-transformation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.brand-transformation-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* PROCESS (VISUALLY DIFFERENT FROM TIMELINE) */
.brand-process-section {
  background: var(--off-white);
}

.section-heading--center {
  text-align: center;
  margin: 0 auto 40px;
}

.brand-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-process-step {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.brand-process-step:hover {
  transform: translateY(-4px);
}

.brand-process-number {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* WHO THIS IS FOR CARDS */
.service-audience-section--brand .service-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.service-audience-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  color: var(--navy);
  transition: transform 0.3s ease;
}

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

/* CTA VARIATION */
.services-cta-section--brand .services-cta-layout {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
}

.services-cta-section--brand h2,
.services-cta-section--brand .section-text {
  color: var(--white);
}

/* =========================================================
   RESPONSIVE FOR BRAND PAGE
========================================================= */

@media (max-width: 1024px) {
  .brand-positioning-grid,
  .brand-transformation-layout {
    grid-template-columns: 1fr;
  }

  .brand-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-audience-section--brand .service-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .brand-process-grid,
  .service-detail-grid--five,
  .service-audience-section--brand .service-audience-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MARKETING & GROWTH PAGE STYLES
========================================================= */

/* HERO */
.service-detail-hero--marketing {
  background:
    radial-gradient(circle at top right, rgba(212, 108, 83, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(100, 131, 165, 0.14), transparent 26%),
    linear-gradient(
      180deg,
      rgba(233, 226, 214, 0.52) 0%,
      rgba(248, 247, 244, 1) 100%
    );
}

/* INTRO / PROBLEM */
.marketing-intro-section {
  background: var(--off-white);
}

.marketing-intro-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}

.marketing-intro-copy {
  max-width: 680px;
}

.marketing-intro-panel {
  background: linear-gradient(
    180deg,
    rgba(31, 58, 95, 0.04) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}

.marketing-intro-panel h3 {
  margin: 0 0 14px;
  font-family: "Inria Serif", serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--navy);
}

.marketing-intro-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.marketing-intro-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.marketing-intro-panel li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* WHAT WE DO */
.service-detail-grid-section--marketing {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.22) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.service-detail-grid--marketing {
  grid-template-columns: repeat(5, 1fr);
}

.service-detail-grid-section--marketing .service-detail-item {
  min-height: 100%;
  padding: 24px 18px;
  background: var(--white);
}

.service-detail-grid-section--marketing .service-detail-item h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

/* OUTCOME SECTION */
.marketing-results-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.marketing-results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.marketing-results-section .container {
  position: relative;
  z-index: 1;
}

.marketing-results-section .section-label,
.marketing-results-section h2,
.marketing-results-section .section-text {
  color: var(--white);
}

.marketing-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.marketing-result-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.marketing-result-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.marketing-result-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

/* PROCESS */
.marketing-process-section {
  background: var(--off-white);
}

.marketing-process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.marketing-process-intro {
  position: sticky;
  top: 120px;
}

.marketing-process-steps {
  display: grid;
  gap: 16px;
}

.marketing-process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 20px 20px 20px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.marketing-process-step:hover {
  transform: translateY(-4px);
}

.marketing-process-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(193, 138, 45, 0.14);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.marketing-process-step h3 {
  margin: 2px 0 8px;
  font-family: "Inria Serif", serif;
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--navy);
}

.marketing-process-step p {
  margin: 0;
  color: var(--text-soft);
}

/* WHO THIS IS FOR */
.service-audience-section--marketing {
  background: linear-gradient(
    180deg,
    rgba(248, 247, 244, 1) 0%,
    rgba(233, 226, 214, 0.22) 100%
  );
}

.service-audience-section--marketing .service-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.service-audience-section--marketing .service-audience-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.service-audience-section--marketing .service-audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(193, 138, 45, 0.95),
    rgba(100, 131, 165, 0.8)
  );
}

.service-audience-section--marketing .service-audience-card p {
  margin: 0;
  color: var(--navy);
}

/* FLEXIBLE SUPPORT */
.pricing-positioning-section--marketing .section-narrow {
  background: rgba(255, 255, 255, 0.75);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}

/* CTA */
.services-cta-section--marketing .services-cta-layout {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--charcoal-navy) 100%
  );
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 30px;
  position: relative;
  overflow: hidden;
}

.services-cta-section--marketing .services-cta-layout::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(193, 138, 45, 0.16);
  filter: blur(6px);
  pointer-events: none;
}

.services-cta-section--marketing .services-cta-copy,
.services-cta-section--marketing .services-cta-actions {
  position: relative;
  z-index: 1;
}

.services-cta-section--marketing h2,
.services-cta-section--marketing .section-text,
.services-cta-section--marketing .section-label {
  color: var(--white);
}

/* =========================================================
   RESPONSIVE - MARKETING PAGE
========================================================= */

@media (max-width: 1024px) {
  .marketing-intro-layout,
  .marketing-process-layout {
    grid-template-columns: 1fr;
  }

  .marketing-process-intro {
    position: static;
  }

  .service-detail-grid--marketing {
    grid-template-columns: repeat(2, 1fr);
  }

  .marketing-results-grid,
  .service-audience-section--marketing .service-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .marketing-process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .marketing-process-number {
    width: 44px;
    height: 44px;
  }

  .pricing-positioning-section--marketing .section-narrow {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .service-detail-grid--marketing,
  .marketing-results-grid,
  .service-audience-section--marketing .service-audience-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   LEGAL HEADER
========================= */

.legal-header-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-back-row {
  background: transparent;
}

.legal-back-row .container {
  padding-top: 12px;
  padding-bottom: 4px;
}

.legal-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--grey);
  text-decoration: none;
  transition: 0.2s ease;
}

.legal-back:hover {
  color: var(--color-purple, #5d3a9b);
  text-decoration: underline;
}

.legal-header {
  background: transparent;
  border-bottom: none;
}

.legal-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0 16px;
}

.legal-header img {
  height: 48px;
  width: auto;
}

.legal-header span {
  font-family: "Inria Serif", serif;
  font-size: 28px;
  color: #24324d;
}

/* =========================
   LEGAL PAGE
========================= */

.legal-page {
  padding: 72px 0 84px;
  background: linear-gradient(180deg, #f7f5f0 0%, #ffffff 100%);
}

.legal-container {
  max-width: 900px;
}

.legal-intro {
  margin-bottom: 42px;
}

.legal-intro h1 {
  font-family: "Inria Serif", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: #24324d;
  margin: 10px 0 24px;
}

.legal-intro p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #24324d;
  max-width: 860px;
  margin: 0 0 18px;
}

.legal-content {
  display: grid;
  gap: 28px;
}

.legal-section {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(36, 50, 77, 0.08);
  border-radius: 24px;
  padding: 28px 30px;
}

.legal-section h2 {
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #24324d;
}

.legal-section h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #24324d;
}

.legal-section p,
.legal-section li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #24324d;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 14px 0 14px 20px;
  padding: 0;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-contact-card {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 50, 77, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 12px;
}

.legal-contact-card a {
  color: #24324d;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}

.legal-contact-card a:hover {
  color: var(--color-purple, #5d3a9b);
  text-decoration: underline;
}

/* =========================
   FOOTER ACTIVE LEGAL LINK
========================= */

.footer-links a {
  color: rgba(255,255,255,0.7);
}

.footer-links a.active {
  color: #ffffff;
  font-weight: 600;
  position: relative;
}

.footer-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .legal-page {
    padding: 56px 0 72px;
  }

  .legal-header-inner {
    gap: 12px;
    padding: 12px 0 14px;
  }

  .legal-header img {
    height: 40px;
  }

  .legal-header span {
    font-size: 22px;
    line-height: 1.2;
  }

  .legal-section {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .legal-section h2 {
    font-size: 1.35rem;
  }

  .legal-intro p,
  .legal-section p,
  .legal-section li {
    font-size: 1rem;
    line-height: 1.7;
  }
}
/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 900px);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(36, 50, 77, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner p {
  font-size: 14px;
  color: #24324d;
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  text-decoration: underline;
  color: inherit;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
}

/* Primary */
.cookie-btn--primary {
  background: #24324d;
  color: #fff;
}

.cookie-btn--primary:hover {
  opacity: 0.9;
}

/* Secondary */
.cookie-btn--secondary {
  background: transparent;
  border: 1px solid rgba(36, 50, 77, 0.2);
  color: #24324d;
}

.cookie-btn--secondary:hover {
  background: rgba(36, 50, 77, 0.05);
}

/* =========================================================
   CONTACT PAGE (FINAL CLEAN VERSION)
========================================================= */

/* =========================
   BASE
========================= */

.contact-note {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================
   HERO
========================= */

.contact-hero--split {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, #f8f6f2 0%, #ffffff 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.contact-hero-content {
  position: relative;
}

.contact-hero-panel {
  max-width: 760px;
  padding: 34px 36px;
  background: rgba(255, 255, 255, 0.72);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 35px rgba(24, 46, 74, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-hero-accent {
  display: inline-block;
  width: 72px;
  height: 3px;
  margin: 0 0 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c7a86d 0%, #8d7355 100%);
}

.contact-hero-content .section-label {
  margin-bottom: 12px;
}

.contact-hero-content h1 {
  font-family: "Inria Serif", serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 18px;
  max-width: 11ch;
}

.contact-hero-content .section-lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* =========================
   HERO CARD
========================= */

.contact-hero-card {
  background: rgba(255, 255, 255, 0.95);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-hero-card h3 {
  font-family: "Inria Serif", serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 12px;
}

.contact-hero-card p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.contact-hero-card-details a {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.contact-hero-card-details a:hover {
  color: var(--gold);
}

/* =========================
   FORM SECTION
========================= */

.contact-form-section {
  padding-top: 12px;
}

.contact-form-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

/* =========================
   FORM HEADINGS
========================= */

.contact-form-wrap .section-intro h2 {
  font-family: "Inria Serif", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 10px;
}

.contact-form-wrap .section-intro p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

/* =========================
   FORM LAYOUT
========================= */

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .form-group {
  margin-bottom: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* =========================
   INPUTS
========================= */

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(31, 58, 95, 0.14);
  border-radius: 12px;
  font: inherit;
  color: var(--text-dark);
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8d7355;
  box-shadow: 0 0 0 4px rgba(141, 115, 85, 0.12);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* =========================
   BUTTON
========================= */

.contact-form .btn {
  margin-top: 10px;
}

/* =========================
   FORM MESSAGES
========================= */

.form-message {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 500;
}

.form-message.success {
  background: rgba(46, 125, 50, 0.08);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.18);
}

.form-message.error {
  background: rgba(183, 28, 28, 0.08);
  color: #b71c1c;
  border: 1px solid rgba(183, 28, 28, 0.18);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-hero-content h1 {
    max-width: none;
  }

  .contact-form-wrap {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .contact-hero--split {
    padding: 40px 0 32px;
  }

  .contact-hero-panel {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .contact-form-wrap {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =========================================================
   HOMEPAGE REFINEMENTS
   Add at end of stylesheet
========================================================= */

/* ---------- GLOBAL SPACING / HIERARCHY ---------- */

.section {
  padding: 46px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 22px;
}

.section h2 {
  font-weight: 500;
  line-height: 1.08;
}

.section-text {
  font-size: 1rem;
  line-height: 1.7;
}

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

.hero {
  padding: 72px 0 54px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 6vw, 4.9rem);
  line-height: 0.97;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.hero-subheading {
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 18px;
}

.hero-text {
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.hero-actions {
  gap: 14px;
}

.hero-card {
  justify-content: flex-end;
  padding-top: 8px;
}

.hero-card-inner {
  max-width: 400px;
  padding: 28px 24px;
  border-radius: 26px;
}

.hero-card-label {
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.hero-card-inner h2 {
  font-size: 1.35rem;
  line-height: 1.28;
  margin: 0 0 12px;
}

.hero-card-inner p:last-child {
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ---------- TRUST STRIP ---------- */

.trust-strip {
  padding: 18px 0 22px;
}

.trust-strip-grid {
  gap: 14px;
}

.trust-strip-grid span {
  min-height: 50px;
  padding: 11px 16px;
  font-size: 0.88rem;
}

.trust-strip-note {
  margin: 12px 0 0;
  font-size: 0.94rem;
}

/* ---------- INTRO IMAGE SECTION ---------- */

.intro-section--image .section-narrow {
  max-width: 720px;
  padding: 34px 32px;
  border-radius: 26px;
}

.intro-section--image .section-text:last-of-type {
  margin-bottom: 10px;
}

/* ---------- SERVICES ---------- */

.services-overview .container {
  max-width: 1100px;
}

.services-grid {
  gap: 18px;
  align-items: stretch;
}

.service-card {
  padding: 24px 20px;
  border-radius: 20px;
  min-height: 100%;
}

.service-card h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 0.96rem;
  line-height: 1.65;
}

.section-action {
  margin-top: 24px;
}

/* ---------- WHY CHOOSE US ---------- */

.why-us-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.16) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.why-us-layout {
  gap: 34px;
}

.why-us-intro {
  max-width: 520px;
}

.why-us-intro h2 {
  max-width: 10ch;
}

.why-us-points {
  gap: 14px;
}

.why-point {
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 20px 20px 20px 16px;
  border-radius: 20px;
}

.why-point-content h3 {
  font-size: 1.18rem;
  margin: 2px 0 6px;
}

.why-point-content p {
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ---------- AUDIENCE ---------- */

.audience-layout {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.audience-content h2 {
  max-width: 12ch;
}

.audience-image {
  border-radius: 24px;
}

.audience-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ---------- PROCESS ---------- */

.process-timeline-intro {
  margin-bottom: 28px;
}

.process-timeline-intro h2 {
  max-width: 12ch;
}

.process-timeline {
  max-width: 860px;
}

.timeline-step:not(:last-child) {
  margin-bottom: 18px;
}

.timeline-content {
  padding: 22px 22px;
  border-radius: 20px;
}

.timeline-content h3 {
  font-size: 1.22rem;
  margin: 0 0 8px;
}

.timeline-content p {
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ---------- BENEFITS ---------- */

.results-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.24) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.results-grid {
  gap: 14px;
}

.result-item {
  padding: 18px 14px;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.96rem;
  line-height: 1.5;
  border-radius: 20px;
}

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

.cta-section {
  padding: 52px 0 34px;
}

.cta-box {
  padding: 40px 28px;
  border-radius: 26px;
}

.cta-box h2 {
  max-width: 14ch;
}

.cta-box p {
  max-width: 660px;
  margin: 0 auto 22px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- SEO STRIP ---------- */

.seo-strip {
  padding: 34px 20px 36px;
}

.seo-card {
  max-width: 900px;
  padding: 30px 26px;
  border-radius: 24px;
}

.seo-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  margin: 0 0 10px;
}

.seo-card p {
  max-width: 760px;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 26px;
  padding: 36px 0 28px;
}

.footer-col:first-child {
  max-width: 360px;
}

.footer-col p,
.footer-links a {
  font-size: 0.96rem;
  line-height: 1.65;
}

.footer-bottom {
  padding: 16px 0 22px;
}

/* ---------- BUTTON EMPHASIS ---------- */

.btn-primary,
.btn-nav {
  box-shadow: 0 10px 24px rgba(31, 58, 95, 0.16);
}

/* ---------- HOVER POLISH ---------- */

.service-card:hover,
.why-point:hover,
.timeline-content:hover,
.result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(24, 46, 74, 0.12);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1180px) {
  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 5.8vw, 4.45rem);
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-card {
    justify-content: flex-start;
    padding-top: 0;
  }

  .hero-card-inner {
    max-width: 520px;
  }

  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 42px 0;
  }

  .why-us-layout,
  .audience-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-us-intro,
  .audience-content {
    max-width: none;
  }

  .why-us-intro h2,
  .audience-content h2,
  .process-timeline-intro h2,
  .cta-box h2 {
    max-width: none;
  }

  .audience-image {
    order: -1;
  }

  .audience-image img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 860px) {
  .hero {
    padding: 58px 0 46px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.6rem, 9vw, 4rem);
  }

  .section {
    padding: 38px 0;
  }

  .trust-strip-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .intro-section--image .section-narrow,
  .cta-box,
  .seo-card {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 640px) {
  .hero-subheading,
  .hero-text,
  .section-text,
  .service-card p,
  .why-point-content p,
  .timeline-content p,
  .seo-card p,
  .footer-col p {
    font-size: 0.97rem;
  }

  .why-point {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 16px;
  }

  .result-item {
    min-height: 110px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.5rem);
    line-height: 1;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand span {
    font-size: 0.98rem;
    text-align: center;
  }
}

/* =========================================================
   FINAL SITE REFINEMENT OVERRIDES
   Paste at the END of style.css
========================================================= */

/* =========================================================
   GLOBAL SPACING / TYPOGRAPHY POLISH
========================================================= */

.section {
  padding: 44px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 22px;
}

.section h2 {
  font-weight: 500;
  line-height: 1.08;
}

.section-text {
  font-size: 1rem;
  line-height: 1.7;
}

.text-link {
  margin-top: 10px;
}

/* Shared hover polish */
.service-card:hover,
.why-point:hover,
.timeline-content:hover,
.result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(24, 46, 74, 0.12);
}

.btn-nav,
.btn-primary {
  box-shadow: 0 10px 24px rgba(31, 58, 95, 0.16);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  padding: 72px 0 52px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.8vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.hero-subheading {
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 18px;
}

.hero-text {
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-actions {
  gap: 14px;
}

.hero-card {
  justify-content: flex-end;
  padding-top: 6px;
}

.hero-card-inner {
  max-width: 390px;
  padding: 26px 24px;
  border-radius: 24px;
}

.hero-card-label {
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.hero-card-inner h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.26;
}

.hero-card-inner p:last-child {
  font-size: 0.98rem;
  line-height: 1.62;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  padding: 18px 0 22px;
}

.trust-strip-grid {
  gap: 14px;
}

.trust-strip-grid span {
  min-height: 50px;
  padding: 11px 16px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.trust-strip-note {
  margin: 12px 0 0;
  font-size: 0.94rem;
}

/* =========================================================
   INTRO IMAGE SECTION
========================================================= */

.intro-section--image .section-narrow {
  max-width: 720px;
  padding: 34px 32px;
  border-radius: 24px;
}

.intro-section--image h2 {
  max-width: 14ch;
}

.intro-section--image .section-text:last-of-type {
  margin-bottom: 10px;
}

/* =========================================================
   SERVICES OVERVIEW
========================================================= */

.services-overview .container {
  max-width: 1180px;
}

.services-grid {
  gap: 20px;
  align-items: stretch;
}

.service-card {
  padding: 24px 22px;
  border-radius: 20px;
  min-height: 100%;
}

.service-number {
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.12rem;
  line-height: 1.22;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 0.97rem;
  line-height: 1.58;
}

.section-action {
  margin-top: 22px;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.16) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.why-us-layout {
  gap: 34px;
  align-items: start;
}

.why-us-intro {
  max-width: 470px;
}

.why-us-intro h2 {
  max-width: 8ch;
}

.why-us-points {
  gap: 14px;
}

.why-point {
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 20px 20px 20px 16px;
  border-radius: 20px;
}

.why-point-number {
  width: 46px;
  height: 46px;
  font-size: 0.82rem;
}

.why-point-content h3 {
  margin: 2px 0 6px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.why-point-content p {
  font-size: 0.97rem;
  line-height: 1.6;
}

/* =========================================================
   AUDIENCE / WHO WE WORK WITH
========================================================= */

.audience-layout {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
}

.audience-image {
  border-radius: 24px;
}

.audience-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.audience-content {
  max-width: 560px;
}

.audience-content h2 {
  max-width: 8ch;
}

/* =========================================================
   PROCESS / HOW IT WORKS
========================================================= */

.process-timeline-intro {
  margin-bottom: 28px;
}

.process-timeline-intro h2 {
  max-width: 10ch;
}

.process-timeline {
  max-width: 860px;
  padding-left: 30px;
}

.process-timeline::before {
  left: 18px;
}

.timeline-step {
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.timeline-step:not(:last-child) {
  margin-bottom: 18px;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  font-size: 0.74rem;
}

.timeline-content {
  padding: 20px 22px;
  border-radius: 20px;
}

.timeline-content h3 {
  font-size: 1.16rem;
  margin: 0 0 8px;
}

.timeline-content p {
  font-size: 0.97rem;
  line-height: 1.58;
}

/* =========================================================
   BENEFITS / RESULTS
========================================================= */

.results-section {
  background: linear-gradient(
    180deg,
    rgba(233, 226, 214, 0.22) 0%,
    rgba(248, 247, 244, 1) 100%
  );
}

.results-section .section-heading h2 {
  max-width: 11ch;
}

.results-grid {
  gap: 14px;
}

.result-item {
  min-height: 116px;
  padding: 16px 14px;
  border-radius: 18px;
  font-size: 0.96rem;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
  padding: 50px 0 30px;
}

.cta-box {
  padding: 38px 28px;
  border-radius: 26px;
}

.cta-box h2 {
  max-width: 10ch;
}

.cta-box p {
  max-width: 650px;
  margin: 0 auto 22px;
  font-size: 1rem;
  line-height: 1.65;
}

.cta-actions {
  gap: 14px;
}

/* =========================================================
   SEO STRIP
========================================================= */

.seo-strip {
  padding: 30px 20px 34px;
}

.seo-card {
  max-width: 900px;
  padding: 28px 26px;
  border-radius: 22px;
}

.seo-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 3vw, 2.3rem);
  line-height: 1.12;
}

.seo-card p {
  max-width: 760px;
  font-size: 0.96rem;
  line-height: 1.68;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  margin-top: 0;
}

.footer-grid {
  grid-template-columns: 1.15fr 0.9fr 0.9fr 0.9fr;
  gap: 28px;
  padding: 34px 0 28px;
}

.footer-col:first-child {
  max-width: 360px;
}

.footer-col p,
.footer-links a {
  font-size: 0.96rem;
  line-height: 1.65;
}

.footer-bottom {
  padding: 16px 0 22px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 5.6vw, 4.5rem);
  }

  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-content: flex-start;
    padding-top: 0;
  }

  .hero-card-inner {
    max-width: 520px;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-us-intro {
    max-width: none;
  }

  .why-us-intro h2 {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 40px 0;
  }

  .audience-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .audience-image {
    order: -1;
  }

  .audience-image img {
    aspect-ratio: 16 / 10;
  }

  .audience-content,
  .audience-content h2,
  .process-timeline-intro h2,
  .cta-box h2 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .hero {
    padding: 58px 0 44px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .trust-strip-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .intro-section--image .section-narrow,
  .cta-box,
  .seo-card {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 640px) {
  .hero-subheading,
  .hero-text,
  .section-text,
  .service-card p,
  .why-point-content p,
  .timeline-content p,
  .seo-card p,
  .footer-col p {
    font-size: 0.97rem;
  }

  .why-point {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 16px;
  }

  .result-item {
    min-height: 100px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.5rem);
    line-height: 1;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand span {
    font-size: 0.98rem;
    text-align: center;
  }
}

.services-hero {
  padding-top: 60px; /* or 40px if you want tighter */
}

/* =========================================================
   BRANDING / WEBSITES PAGE REFINEMENT
========================================================= */

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

.service-detail-hero--brand {
  padding: 58px 0 44px;
}

.service-detail-hero--brand .service-detail-hero-layout {
  align-items: center;
  gap: 42px;
}

.service-detail-hero--brand .service-detail-hero-copy {
  max-width: 620px;
}

.service-detail-hero--brand .eyebrow {
  margin-bottom: 14px;
}

.service-detail-hero--brand h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.3vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.service-detail-hero--brand .service-detail-subheading {
  max-width: 620px;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 16px;
}

.service-detail-hero--brand .service-detail-text {
  max-width: 640px;
  font-size: 0.98rem;
  line-height: 1.68;
  margin: 0 0 22px;
}

.service-detail-hero--brand .service-detail-hero-image {
  max-width: 520px;
}

.service-detail-hero--brand .service-detail-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(24, 46, 74, 0.12);
}

/* ---------- BRAND POSITIONING ---------- */

.brand-positioning-section {
  padding: 38px 0 42px;
}

.brand-positioning-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.brand-positioning-copy {
  max-width: 560px;
}

.brand-positioning-copy h2 {
  max-width: 12ch;
  margin-bottom: 14px;
}

.brand-positioning-highlight {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 28px 28px;
  background: rgba(31, 58, 95, 0.04);
  border: 1px solid rgba(31, 58, 95, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(24, 46, 74, 0.06);
}

.brand-positioning-highlight p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

/* ---------- SERVICE GRID ---------- */

.service-detail-grid-section--brand {
  padding: 42px 0;
}

.service-detail-grid-section--brand .section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.service-detail-grid-section--brand .section-heading h2 {
  max-width: 11ch;
}

.service-detail-grid--five {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-detail-item {
  padding: 22px 20px;
  border-radius: 20px;
  min-height: 100%;
}

.service-detail-item h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  line-height: 1.24;
}

.service-detail-item p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.58;
}

/* ---------- TRANSFORMATION SECTION ---------- */

.brand-transformation-section {
  padding: 44px 0;
}

.brand-transformation-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.brand-transformation-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(24, 46, 74, 0.10);
}

.brand-transformation-copy {
  max-width: 560px;
}

.brand-transformation-copy h2 {
  max-width: 11ch;
  margin-bottom: 14px;
}

.brand-transformation-copy .section-text:last-of-type {
  margin-bottom: 0;
}

.service-benefit-list {
  margin: 18px 0 18px;
  padding-left: 20px;
}

.service-benefit-list li + li {
  margin-top: 10px;
}

/* ---------- PROCESS ---------- */

.brand-process-section {
  padding: 44px 0;
}

.brand-process-section .section-heading--center {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.brand-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-process-step {
  padding: 24px 20px;
  border-radius: 20px;
  min-height: 100%;
}

.brand-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(193, 138, 45, 0.12);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-process-step h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  line-height: 1.2;
}

.brand-process-step p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ---------- AUDIENCE ---------- */

.service-audience-section--brand {
  padding: 42px 0;
}

.service-audience-section--brand .section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.service-audience-section--brand .section-heading h2 {
  max-width: 15ch;
}

.service-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-audience-card {
  padding: 22px 20px;
  border-radius: 18px;
  min-height: 100%;
}

.service-audience-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ---------- FLEXIBLE SUPPORT ---------- */

.pricing-positioning-section {
  padding: 42px 0;
}

.pricing-positioning-section .section-narrow {
  max-width: 900px;
}

.pricing-positioning-section h2 {
  max-width: 12ch;
}

/* ---------- FINAL CTA ---------- */

.services-cta-section--brand {
  padding: 28px 0 34px;
}

.services-cta-section--brand .services-cta-layout {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 36px;
  border-radius: 24px;
}

.services-cta-section--brand .services-cta-copy h2 {
  max-width: 12ch;
  margin-bottom: 12px;
}

.services-cta-section--brand .services-cta-copy .section-text {
  max-width: 620px;
  margin-bottom: 0;
}

.services-cta-section--brand .services-cta-actions {
  flex-shrink: 0;
}

/* ---------- SEO STRIP ---------- */

.seo-strip {
  padding: 28px 20px 32px;
}

.seo-card {
  max-width: 940px;
  padding: 28px 28px;
  border-radius: 22px;
}

.seo-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.seo-card p {
  max-width: 780px;
  font-size: 0.96rem;
  line-height: 1.68;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1180px) {
  .service-detail-hero--brand h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 5.4vw, 4.4rem);
  }

  .brand-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .service-detail-hero--brand,
  .brand-positioning-section,
  .service-detail-grid-section--brand,
  .brand-transformation-section,
  .brand-process-section,
  .service-audience-section--brand,
  .pricing-positioning-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .brand-positioning-grid,
  .brand-transformation-layout,
  .services-cta-section--brand .services-cta-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-positioning-copy,
  .brand-transformation-copy,
  .service-detail-hero--brand .service-detail-hero-copy,
  .service-detail-hero--brand .service-detail-hero-image {
    max-width: none;
  }

  .service-detail-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .service-detail-hero--brand h1 {
    max-width: 9ch;
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .service-detail-grid--five,
  .brand-process-grid,
  .service-audience-grid {
    grid-template-columns: 1fr;
  }

  .brand-positioning-highlight,
  .services-cta-section--brand .services-cta-layout,
  .seo-card {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 560px) {
  .service-detail-hero--brand {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .service-detail-hero--brand h1 {
    max-width: none;
    font-size: clamp(2.3rem, 12vw, 3.4rem);
    line-height: 1;
  }
}

/* SECTION RHYTHM IMPROVEMENT */

section {
  position: relative;
}

section:not(:first-child) {
  margin-top: -1px;
}

/* Alternate soft background flow */

.brand-process-section,
.service-audience-section--brand {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8f7f4 100%
  );
}

.service-detail-grid-section--brand .section-heading--center {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.service-detail-grid-section--brand .section-heading--center h2 {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-grid-section--brand .section-heading--center .section-text {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-grid--five {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 1024px) {
  .service-detail-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-detail-grid--five {
    grid-template-columns: 1fr;
  }
}

/* Reduce gap after hero */
.hero + .section {
  padding-top: 60px;
}

.section {
  padding: 70px 0;
}

.section-heading--center {
  margin-bottom: 24px;
}

/* Optional tighter version */
@media (min-width: 1024px) {
  .hero + .section {
    padding-top: 50px;
  }
}
