/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════ */
:root {
  /* Light & warm palette */
  --bg-white:      #FFFFFF;
  --bg-cream:      #FDF8F3;
  --bg-warm:       #FAF5EF;
  --bg-light-grey: #F5F0EB;
  --bg-dark:       #1C2B2D;
  --bg-dark-card:  #243B3E;

  /* Brand colours */
  --orange:        #E8871E;
  --orange-light:  #F5A44A;
  --orange-soft:   #FEF3E8;
  --orange-glow:   rgba(232,135,30,.1);
  --orange-deep:   #C06E10;

  /* Text */
  --text-dark:     #1C2B2D;
  --text-body:     #4A5859;
  --text-muted:    #7A8B8D;
  --text-white:    #FFFFFF;
  --text-white-80: rgba(255,255,255,.8);

  /* Typography */
  --font-heading:  'Sora', system-ui, -apple-system, sans-serif;
  --font-body:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container:     1200px;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --radius-2xl:    48px;
  --radius-full:   9999px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(28,43,45,.04);
  --shadow-md:     0 8px 24px rgba(28,43,45,.06);
  --shadow-lg:     0 16px 48px rgba(28,43,45,.08);
  --shadow-orange: 0 12px 36px rgba(232,135,30,.2);

  /* Transitions */
  --ease:          cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width:100%; display:block; }
a { color: var(--orange); text-decoration:none; transition: color .3s var(--ease); }
a:hover { color: var(--orange-deep); }

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

section { padding: 110px 0; position: relative; }

/* Label / eyebrow */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Section heading */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.section-title .accent { color: var(--orange); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* Dark section variants */
.dark-section .section-title { color: var(--text-white); }
.dark-section .section-subtitle { color: var(--text-white-80); }
.dark-section .label { color: var(--orange-light); }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FFFFFF;
  transition: box-shadow .4s var(--ease);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img { height: 44px; width: auto; }
.logo:hover { opacity: .85; }
.logo-img-footer { height: 56px; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color .3s var(--ease);
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: var(--orange);
  color: #fff !important;
  font-weight: 600;
  font-size: .88rem;
  border-radius: var(--radius-full);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-orange);
}
.nav-cta:hover {
  background: var(--orange-deep);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
body.modal-open { overflow: hidden; }

/* ═══════════════════════════════════════
   HERO (dark section)
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
}
.hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay for readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,43,45,.7);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(232,135,30,.1);
  border: 1px solid rgba(232,135,30,.2);
  border-radius: var(--radius-full);
  font-size: .76rem;
  font-weight: 700;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -.03em;
}
.hero h1 .accent { color: var(--orange-light); }

.hero-text {
  font-size: 1.05rem;
  color: var(--text-white-80);
  margin: 0 auto 36px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  min-width: 170px;
  white-space: nowrap;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(232,135,30,.35);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  min-width: 170px;
  white-space: nowrap;
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  font-size: .95rem;
  font-family: var(--font-body);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.btn-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  letter-spacing: -.02em;
}
.hero-stat p {
  font-size: .82rem;
  color: var(--text-white-80);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-2xl);
  background: linear-gradient(160deg, var(--bg-dark-card) 0%, rgba(232,135,30,.05) 100%);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.06);
}

.hero-image-frame .placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
  text-align: center;
}
.hero-image-frame .placeholder-content svg {
  width: 64px;
  height: 64px;
  opacity: .25;
  color: var(--orange-light);
}
.hero-image-frame .placeholder-content p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.hero-float-card.top-left {
  top: 40px;
  left: -30px;
}
.hero-float-card.bottom-right {
  bottom: 50px;
  right: -20px;
}
.hero-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon svg { width: 20px; height: 20px; color: var(--orange); }
.hero-float-card h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.hero-float-card p {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ═══════════════════════════════════════
   LOGOS STRIP
   ═══════════════════════════════════════ */
.logos-strip {
  padding: 36px 0;
  background: var(--orange);
  overflow: hidden;
}
.logos-label-wrap {
  text-align: center;
  margin-bottom: 16px;
}
.logos-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.logos-scroll {
  overflow: hidden;
  position: relative;
  display: flex;
}
.logos-scroll::before,
.logos-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.logos-scroll::before {
  left: 0;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.logos-scroll::after {
  right: 0;
  background: linear-gradient(-90deg, var(--orange), transparent);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
  flex-shrink: 0;
  animation: scroll-logos 25s linear infinite;
}
.logos-scroll:hover .logos-track {
  animation-play-state: paused;
}
.logo-item {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.logo-item:hover { color: #fff; }

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

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-2xl);
  aspect-ratio: 3/3.7;
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

/* Numbered items */
.mission-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}
.mission-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.mission-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  opacity: .25;
  min-width: 52px;
  letter-spacing: -.02em;
}
.mission-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.mission-item p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   CURVED DIVIDER
   ═══════════════════════════════════════ */
.curve-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}
.curve-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}
.curve-white-to-cream { background: var(--bg-white); }
.curve-white-to-cream svg { fill: var(--bg-cream); }
.curve-white-to-dark { background: var(--bg-white); }
.curve-white-to-dark svg { fill: var(--bg-dark); }
.curve-cream-to-white { background: var(--bg-cream); }
.curve-cream-to-white svg { fill: var(--bg-white); }
.curve-cream-to-dark { background: var(--bg-cream); }
.curve-cream-to-dark svg { fill: var(--bg-dark); }
.curve-dark-to-cream { background: var(--bg-dark); }
.curve-dark-to-cream svg { fill: var(--bg-cream); }
.curve-white-to-dark { background: var(--bg-white); }
.curve-white-to-dark svg { fill: var(--bg-dark); }
.curve-dark-to-white { background: var(--bg-dark); }
.curve-dark-to-white svg { fill: var(--bg-white); }

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
  background: var(--bg-cream);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: stretch;
}
.service-card {
  width: calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { opacity: 1; }

.service-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.service-img picture {
  display: block;
  position: absolute;
  inset: 0;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-card--wide {
  width: calc(66.666% - 8px);
}

.service-img-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16 / 9;
}
.service-img-main {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.service-img-main picture {
  display: block;
  position: absolute;
  inset: 0;
}
.service-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.service-img-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}
.service-img-side picture {
  display: block;
  flex: 1;
  min-height: 0;
}
.service-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.service-card:hover .service-img-main img,
.service-card:hover .service-img-side img {
  transform: scale(1.05);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .4s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--orange);
}
.service-icon svg { width: 24px; height: 24px; color: var(--orange); transition: color .4s var(--ease); }
.service-card:hover .service-icon svg { color: #fff; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.service-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--orange);
}
.service-link svg {
  width: 15px;
  height: 15px;
  transition: transform .3s var(--ease);
}
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ═══════════════════════════════════════
   STATS BAND (dark)
   ═══════════════════════════════════════ */
.stats-band {
  background: var(--bg-dark);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-item p {
  font-size: .85rem;
  color: var(--text-white-80);
  margin-top: 6px;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   UK GRID LIVE — DONUT CHART
   ═══════════════════════════════════════ */
.grid-widget {
  background: var(--bg-white);
  padding: 80px 0;
}
.grid-widget__top {
  text-align: center;
  margin-bottom: 56px;
}
.grid-widget__top .section-subtitle { max-width: none; }
.grid-widget__body {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
.donut-wrap {
  position: relative;
  width: 280px;
  margin: 0 auto;
}
.donut-chart {
  width: 100%;
  height: auto;
  transform: rotate(-90deg);
}
.donut-track { opacity: .15; }
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.donut-center__pct {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.03em;
}
.donut-center__label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}
.donut-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 28px;
}
.donut-legend__loading {
  color: var(--text-muted);
  font-size: .9rem;
  grid-column: 1 / -1;
}
.donut-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
}
.donut-legend__swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.donut-legend__name {
  color: var(--text-dark);
  font-weight: 600;
  flex: 1;
}
.donut-legend__pct {
  color: var(--text-muted);
  font-weight: 500;
}
.donut-stats {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
}
.donut-stat__val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.donut-stat__index { text-transform: capitalize; }
.donut-stat__label {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.donut-source {
  font-size: .75rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .grid-widget__body { grid-template-columns: 1fr; gap: 40px; }
  .donut-wrap { width: 220px; }
  .donut-legend { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════ */
.process {
  background: var(--bg-white);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.process-header .section-subtitle { margin: 0 auto; }

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-soft), var(--orange-soft), transparent);
  border-radius: 2px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-num-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 2px solid rgba(232,135,30,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  z-index: 2;
  transition: all .4s var(--ease);
}
.process-step:hover .step-num-badge {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(1.08);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-icon svg { width: 26px; height: 26px; color: var(--orange); }

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.process-step p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 210px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  background: var(--bg-dark);
}
.testimonials-header a { color: var(--orange-light); }

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.testimonials-header .section-subtitle { margin: 0 auto; }

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

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.stars svg { width: 16px; height: 16px; color: var(--orange); fill: var(--orange); }

.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 800;
  color: var(--orange);
}
.testimonial-author .testimonial-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-author p {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ═══════════════════════════════════════
   CTA SECTION (dark)
   ═══════════════════════════════════════ */
.cta-section {
  background: url('../images/hero/site-1.jpeg') center/cover no-repeat;
  position: relative;
  padding: 0;
  margin-top: -1px;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,43,45,.75);
  z-index: 0;
}
.cta-curve-top {
  position: relative;
  z-index: 2;
}
.cta-curve-top svg {
  display: block;
  width: 100%;
  height: 80px;
}
.cta-section .container {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cta-curve-bottom {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  margin-bottom: -2px;
}
.cta-curve-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

.cta-card {
  background: none;
  border: none;
  border-radius: 0;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-card::before {
  display: none;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,135,30,.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card .section-title { color: var(--text-white); margin-bottom: 14px; }
.cta-card .section-subtitle {
  max-width: 460px;
  margin: 0 auto 36px;
  color: var(--text-white-80);
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-outline { color: #fff; border-color: rgba(255,255,255,.2); }
.cta-buttons .btn-outline:hover { border-color: var(--orange-light); color: var(--orange-light); }

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info { padding-top: 8px; }
.contact-info .section-subtitle { margin-bottom: 36px; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-method h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.contact-method p {
  font-size: .88rem;
  color: var(--text-muted);
}

/* Form */
.contact-form {
  background: var(--bg-cream);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: .92rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }

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

.honeypot {
  display: none;
}

.form-privacy {
  margin-bottom: 16px;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}
.form-consent span {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-consent span a {
  color: var(--orange);
  text-decoration: underline;
}

.cf-turnstile { margin-bottom: 16px; }

.form-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.form-message--success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-message--error {
  display: block;
  background: #fdecea;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all .3s var(--ease);
  margin-top: 6px;
  box-shadow: var(--shadow-orange);
}
.form-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(232,135,30,.3);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding: 56px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* footer logo sized via .logo-img-footer */
.footer-brand p {
  font-size: .9rem;
  color: var(--text-white-80);
  margin-top: 14px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: var(--text-white-80);
  transition: color .3s var(--ease);
}
.footer-col ul a:hover { color: var(--orange-light); }

.footer-tagline {
  font-size: .88rem;
  color: var(--text-white-80);
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 40px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-brand .footer-address,
.footer-brand .footer-company-no,
.footer-brand .footer-contact {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}
.footer-brand .footer-company-no {
  margin-top: 30px;
}
.footer-contact a {
  color: rgba(255,255,255,.5);
  transition: color .3s var(--ease);
}
.footer-contact a:hover {
  color: var(--orange-light);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.footer-socials a:hover {
  border-color: var(--orange);
  background: rgba(232,135,30,.1);
}
.footer-socials a svg { width: 16px; height: 16px; color: rgba(255,255,255,.6); }
.footer-socials a:hover svg { color: var(--orange-light); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .3s; opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-text { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: unset; height: 280px; }
  .service-card { width: calc(50% - 12px); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open .nav-cta {
    text-align: center;
    justify-content: center;
  }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-text { font-size: .95rem; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; min-width: unset; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }

  .service-card { width: 100%; }
  .service-img { aspect-ratio: 16 / 10; }
  .service-img-grid { grid-template-columns: 1fr; }
  .service-img-side { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .cta-card { padding: 44px 24px; }
  .cta-section .container { padding-top: 60px; padding-bottom: 60px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline { width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-col ul { list-style: none; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-tagline { font-size: .82rem; padding: 16px 0; margin-top: 20px; }
  .footer { padding: 40px 0 18px; }
  .footer-top { padding-bottom: 24px; }

  .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-badge { font-size: .7rem; }
  .section-title { font-size: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
}

/* ═══════════════════════════════════════
   PRIVACY MODAL
   ═══════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,43,45,.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  padding: 24px 16px;
  overflow-y: auto;
  animation: modalFadeIn .25s var(--ease);
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(28,43,45,.2);
  animation: modalSlideUp .3s var(--ease);
  margin: auto;
  overflow: hidden;
}

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

.modal-label { margin-bottom: 8px; }
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 36px 24px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: var(--bg-white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  flex-shrink: 0;
}
.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-dark);
}
.modal-close {
  background: var(--bg-cream);
  border: none;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease);
  margin-top: 4px;
}
.modal-close:hover { background: var(--orange-soft); color: var(--orange-deep); }

.modal-body {
  padding: 32px 36px 40px;
  overflow-y: auto;
  flex: 1;
}
.modal-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dark);
  margin: 36px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange-soft);
}
.modal-body h3:first-of-type { margin-top: 0; }
.modal-body p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: .93rem;
}
.modal-body ul {
  color: var(--text-body);
  line-height: 1.8;
  margin: 0 0 12px 36px;
  font-size: .93rem;
}
.modal-body ul li { margin-bottom: 4px; }
.modal-body a { color: var(--orange); text-decoration: underline; }
.modal-body a:hover { color: var(--orange-deep); }

.privacy-updated {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}
.modal-contact-box {
  background: var(--bg-cream);
  border: 1px solid rgba(232,135,30,.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 36px;
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.8;
}

@media (max-width: 480px) {
  .modal-header { padding: 24px 20px 18px; }
  .modal-body { padding: 24px 20px 32px; }
}