/* ===================================================================
   CIRENCESTER RECOVERY SERVICES
   Stylesheet — clean, road-themed, professional
   =================================================================== */

:root {
  /* Brand palette pulled from the logo */
  --navy-900: #0A1270;
  --navy-800: #0E1A8C;     /* primary brand navy */
  --navy-700: #1626A8;
  --navy-600: #2236C0;
  --blue-500: #2196F3;     /* electric accent */
  --blue-400: #3FA9F5;
  --blue-300: #62BBFA;
  --white:    #FFFFFF;
  --off-white:#F4F6FB;
  --grey-100: #E6EAF5;
  --grey-200: #C6CCDF;
  --grey-500: #6B7395;
  --grey-700: #2C3556;
  --ink:      #0A0F2A;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-soft: 0 10px 40px -10px rgba(10, 18, 112, 0.25);
  --shadow-hard: 0 20px 60px -15px rgba(10, 18, 112, 0.45);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

/* ============== RESET / BASE ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }

::selection { background: var(--blue-500); color: var(--white); }

/* ============== UTILITIES ============== */
.accent { color: var(--blue-400); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out) var(--delay, 0s),
              transform .9s var(--ease-out) var(--delay, 0s);
  will-change: transform, opacity;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn__icon, .btn__arrow {
  width: 18px; height: 18px;
  transition: transform .3s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(33, 150, 243, 0.6);
}
.btn--primary:hover {
  background: var(--blue-400);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(33, 150, 243, 0.7);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--full { width: 100%; }

/* ============== NAVIGATION ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px var(--gutter);
  transition: background .3s var(--ease-out), backdrop-filter .3s var(--ease-out), padding .3s var(--ease-out), border-color .3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14, 26, 140, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 10px var(--gutter);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.nav__symbol { width: 44px; height: 44px; flex-shrink: 0; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__crs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--blue-400);
}
.nav__full {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-500);
  color: var(--white);
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s, background .2s, box-shadow .2s;
  box-shadow: 0 4px 14px -2px rgba(33, 150, 243, 0.5);
}
.nav__cta:hover {
  background: var(--blue-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -2px rgba(33, 150, 243, 0.6);
}
.nav__cta-pulse {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.nav__cta-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0% { transform: scale(.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.nav__cta-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__cta-label { font-size: 10px; font-weight: 500; opacity: .8; letter-spacing: 0.5px; }
.nav__cta-number { font-size: 14px; font-weight: 700; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}

/* Mobile nav drawer */
@media (max-width: 980px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 80vw);
    background: var(--navy-900);
    flex-direction: column;
    padding: 100px 24px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .4s var(--ease-out);
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .nav__links.is-open {
    transform: translateX(0);
  }
  .nav__links a {
    font-size: 18px;
    padding: 14px 16px;
  }
  .nav__burger { display: flex; order: 3; }
  .nav__cta { display: none; }
  .nav__full { display: none; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 140px var(--gutter) 0;
  display: flex;
  flex-direction: column;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,0.6), transparent 70%);
  pointer-events: none;
}

.hero__road {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.6;
}
.hero__road-line {
  position: absolute;
  top: -10%;
  width: 4px;
  height: 200%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(33, 150, 243, 0.3) 0,
    rgba(33, 150, 243, 0.3) 20px,
    transparent 20px,
    transparent 40px
  );
  animation: roadFlow 8s linear infinite;
}
.hero__road-line:nth-child(1) { left: 12%; transform: rotate(15deg); animation-duration: 12s; }
.hero__road-line--2 { right: 8%; transform: rotate(-12deg); animation-duration: 10s; opacity: .5; }
.hero__road-line--3 { left: 50%; transform: rotate(8deg); animation-duration: 14s; opacity: .3; }
@keyframes roadFlow {
  from { transform: translateY(-50%) rotate(var(--r, 15deg)); }
  to   { transform: translateY(0) rotate(var(--r, 15deg)); }
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
  padding-bottom: 80px;
}

.hero__content { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(33, 150, 243, 0.12);
  border: 1px solid rgba(33, 150, 243, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 12px #4ADE80;
  animation: greenPulse 1.6s ease-in-out infinite;
}
@keyframes greenPulse { 50% { opacity: .5; transform: scale(.85); } }

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7.5vw, 104px);
  letter-spacing: 0;
  line-height: 0.95;
  font-weight: 400;
}
.hero__title-accent {
  background: linear-gradient(90deg, var(--blue-300), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 24px 0 36px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(20px, 4vw, 48px);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  color: var(--blue-400);
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero visual — top-down road with car */
.hero__visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 480px;
}
.hero__visual-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, rgba(33,150,243,0.08), rgba(10,18,112,0.4));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}
.hero__visual-road {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #050A3A 0%, #0A1270 100%);
}
.hero__visual-dashes {
  position: absolute;
  left: 50%; top: 0;
  width: 5px;
  height: 100%;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.7) 0,
    rgba(255,255,255,0.7) 28px,
    transparent 28px,
    transparent 56px
  );
  animation: dashScroll 1.5s linear infinite;
}
@keyframes dashScroll {
  from { background-position: 0 0; }
  to   { background-position: 0 56px; }
}
.hero__visual-edge {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: rgba(255,255,255,0.4);
}
.hero__visual-edge--l { left: 16%; }
.hero__visual-edge--r { right: 16%; }

.hero__visual-car {
  position: absolute;
  top: 50%; left: 50%;
  width: 55%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 30px rgba(33,150,243,0.5));
  animation: carIdle 3s ease-in-out infinite;
}
@keyframes carIdle {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 4px)); }
}

.hero__visual-radar {
  position: absolute;
  top: 50%; left: 50%;
  width: 70%;
  aspect-ratio: 1;
  border: 1.5px solid rgba(33,150,243,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: radar 2.4s ease-out infinite;
}
@keyframes radar {
  0% { transform: translate(-50%, -50%) scale(.4); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.hero__visual-tag {
  position: absolute;
  background: rgba(10, 18, 112, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(33, 150, 243, 0.4);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__visual-tag--1 {
  top: 8%; left: 8%;
  animation: floatTag 4s ease-in-out infinite;
}
.hero__visual-tag--2 {
  bottom: 8%; right: 8%;
  background: rgba(33, 150, 243, 0.2);
  border-color: rgba(33, 150, 243, 0.6);
  animation: floatTag 4s ease-in-out infinite 1.5s;
}
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero__visual-tag-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ADE80;
  animation: greenPulse 1.6s ease-in-out infinite;
}

/* Hero ticker */
.hero__ticker {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  overflow: hidden;
  background: rgba(0,0,0,0.15);
  margin: 0 calc(-1 * var(--gutter));
}
.hero__ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
}
.hero__ticker-track span { flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .hero__visual { max-width: 380px; justify-self: center; }
  .hero { padding-top: 120px; }
}
@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stats .stat:last-child { grid-column: 1 / -1; }
}

/* ============== SECTION HEAD (shared) ============== */
.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-500);
}
.section-head__tag--light {
  background: rgba(255,255,255,0.1);
  color: var(--blue-300);
}
.section-head__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  opacity: .7;
}
.section-head__title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 0.98;
  color: var(--ink);
}
.section-head__lead {
  font-size: 17px;
  color: var(--grey-500);
  margin: 20px auto 0;
  max-width: 600px;
}

/* ============== SERVICES ============== */
.services {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(33,150,243,0.05), transparent 50%);
  opacity: 0;
  transition: opacity .3s var(--ease-out);
  pointer-events: none;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(33, 150, 243, 0.3);
}
.service:hover::before { opacity: 1; }

.service__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 24px;
  transition: transform .3s var(--ease-out);
}
.service__icon svg { width: 28px; height: 28px; }
.service:hover .service__icon { transform: scale(1.06) rotate(-3deg); }

.service h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--ink);
}
.service p {
  color: var(--grey-500);
  margin-bottom: 20px;
  font-size: 15px;
}
.service ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px dashed var(--grey-100);
}
.service li {
  font-size: 14px;
  color: var(--grey-700);
  padding-left: 22px;
  position: relative;
}
.service li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 2px;
  background: var(--blue-500);
  transform: translateY(-50%);
}

.service--featured {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border-color: transparent;
}
.service--featured h3 { color: var(--white); }
.service--featured p { color: rgba(255,255,255,0.75); }
.service--featured li { color: rgba(255,255,255,0.85); }
.service--featured ul { border-top-color: rgba(255,255,255,0.15); }
.service--featured .service__icon {
  background: var(--blue-500);
}
.service__featured-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-300);
  padding: 4px 10px;
  border: 1px solid var(--blue-400);
  border-radius: 999px;
}

@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

/* ============== COVERAGE ============== */
.coverage {
  background: var(--ink);
  color: var(--white);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(33,150,243,0.15), transparent 60%);
  pointer-events: none;
}
.coverage__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.coverage__copy .section-head__title { color: var(--white); }
.coverage__copy p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin: 20px 0;
}
.coverage__copy strong { color: var(--blue-300); font-weight: 600; }

.coverage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.coverage__chips li {
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: background .2s, border-color .2s, transform .2s;
}
.coverage__chips li:hover {
  background: rgba(33,150,243,0.15);
  border-color: var(--blue-500);
  transform: translateY(-2px);
}

.coverage__map {
  position: relative;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-hard);
}
.coverage__svg { width: 100%; height: auto; }
.coverage__ring {
  animation: ringSpin 60s linear infinite;
  transform-origin: 200px 200px;
}
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}
.coverage__pulse {
  animation: ringPulse 2s ease-out infinite;
  transform-origin: 200px 200px;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.coverage__legend {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.55);
}
.coverage__legend div { display: flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--blue { background: var(--blue-500); box-shadow: 0 0 8px var(--blue-500); }
.dot--white { background: var(--white); }

@media (max-width: 900px) {
  .coverage__inner { grid-template-columns: 1fr; gap: 48px; }
  .coverage__map { max-width: 500px; margin: 0 auto; }
}

/* ============== PRICING ============== */
.pricing {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.price {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.price:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.price__head { margin-bottom: 28px; }
.price__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-500);
  margin-bottom: 8px;
}
.price__hours {
  display: block;
  font-size: 14px;
  color: var(--grey-500);
}

.price__amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 12px;
}
.price__from {
  font-size: 13px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 18px;
  margin-right: 8px;
}
.price__currency {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--ink);
  margin-top: 12px;
}
.price__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 88px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -2px;
}

.price__note {
  font-size: 14px;
  color: var(--grey-500);
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--grey-100);
}

.price__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.price__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--grey-700);
}
.price__list li strong {
  color: var(--ink);
  font-weight: 600;
}

.price__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: background .2s, color .2s, transform .2s;
}
.price__cta:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

.price--featured {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-hard);
}
.price--featured .price__tag { color: var(--blue-300); }
.price--featured .price__hours { color: rgba(255,255,255,0.65); }
.price--featured .price__currency,
.price--featured .price__value { color: var(--white); }
.price--featured .price__from { color: rgba(255,255,255,0.6); }
.price--featured .price__note {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.15);
}
.price--featured .price__list li { color: rgba(255,255,255,0.85); }
.price--featured .price__list li strong { color: var(--white); }
.price--featured .price__cta--primary {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: var(--white);
  box-shadow: 0 8px 24px -6px rgba(33, 150, 243, 0.5);
}
.price--featured .price__cta--primary:hover {
  background: var(--blue-400);
  border-color: var(--blue-400);
}

.price__featured-flag {
  position: absolute;
  top: -14px; left: 40px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(33, 150, 243, 0.5);
}

.pricing__footnote {
  display: flex;
  gap: 16px;
  max-width: 780px;
  margin: 48px auto 0;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  align-items: flex-start;
}
.pricing__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--blue-500);
  margin-top: 2px;
}
.pricing__footnote p {
  margin: 0;
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.6;
}
.pricing__footnote strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 760px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .price { padding: 36px 28px; }
  .price__value { font-size: 72px; }
}

/* ============== PROCESS ============== */
.process {
  background: var(--off-white);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  position: relative;
}
.process__steps {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.process__step {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.process__step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-800));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.process__step h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.process__step p {
  color: var(--grey-500);
  font-size: 15px;
  margin: 0;
}
.process__connector {
  align-self: center;
  color: var(--grey-200);
  width: 80px;
}
.process__connector svg { width: 100%; height: auto; }

@media (max-width: 900px) {
  .process__steps { grid-template-columns: 1fr; }
  .process__connector { display: none; }
}

/* ============== ABOUT ============== */
.about {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__copy .section-head__title { text-align: left; }
.about__copy .section-head__tag { margin-bottom: 24px; }
.about__copy p {
  color: var(--grey-500);
  font-size: 17px;
  margin: 20px 0;
  line-height: 1.7;
}
.about__copy strong { color: var(--ink); font-weight: 600; }

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--blue-500);
}
.pillar__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(33,150,243,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h4 { font-size: 16px; margin-bottom: 8px; }
.pillar p { font-size: 14px; color: var(--grey-500); margin: 0; line-height: 1.5; }

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 500px) {
  .about__pillars { grid-template-columns: 1fr; }
}

/* ============== CONTACT ============== */
.contact {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact__road {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1200px;
  transform: translateX(-50%) rotate(20deg);
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0.06;
}
.contact__road span {
  flex: 1;
  height: 6px;
  background: var(--white);
}

.contact__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__left .section-head__title { color: var(--white); }
.contact__title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 0.98;
  margin-bottom: 24px;
}
.contact__left p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin: 0 0 36px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background .2s, border-color .2s, transform .2s;
}
a.channel:hover {
  background: rgba(33,150,243,0.1);
  border-color: var(--blue-500);
  transform: translateX(4px);
}
.channel__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(33,150,243,0.15);
  color: var(--blue-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel__icon svg { width: 20px; height: 20px; }
.channel__label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.channel__value {
  display: block;
  font-weight: 600;
  font-size: 15px;
}

/* Contact form */
.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.contact__form h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.contact__form-lead {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 0 0 28px;
}

.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: rgba(255,255,255,0.08);
}
.field textarea { resize: vertical; min-height: 100px; }

.contact__form-msg {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--blue-300);
  min-height: 20px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px var(--gutter) 24px;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  width: 280px;
  height: auto;
  margin-bottom: 20px;
  display: block;
}
.footer__strap {
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h5 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a, .footer__col li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}
.footer__col a:hover { color: var(--blue-300); }

.footer__base {
  max-width: var(--container);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer__legal a:hover { color: var(--blue-300); }

@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ============== LEGAL PAGES (privacy, terms, cookies) ============== */
.legal {
  background: var(--off-white);
  padding: 160px var(--gutter) 100px;
  min-height: 70vh;
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-500);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: gap .2s var(--ease-out);
  width: fit-content;
}
.legal__back:hover { gap: 10px; }
.legal__back svg { width: 14px; height: 14px; }

.legal__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.legal h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  margin-bottom: 16px;
  color: var(--ink);
}
.legal__meta {
  font-size: 14px;
  color: var(--grey-500);
  margin: 0 0 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-100);
}
.legal__content h2 {
  font-size: 22px;
  margin: 48px 0 16px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.legal__content h2:first-child { margin-top: 0; }
.legal__content h3 {
  font-size: 17px;
  margin: 28px 0 10px;
  color: var(--ink);
  font-weight: 600;
}
.legal__content p,
.legal__content ul,
.legal__content ol {
  margin: 0 0 16px;
  color: var(--grey-700);
  font-size: 16px;
  line-height: 1.7;
}
.legal__content ul,
.legal__content ol {
  padding-left: 24px;
}
.legal__content li { margin-bottom: 8px; }
.legal__content a {
  color: var(--blue-500);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal__content a:hover { color: var(--navy-800); }
.legal__content strong { color: var(--ink); font-weight: 600; }
.legal__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.legal__content th,
.legal__content td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--grey-100);
  vertical-align: top;
}
.legal__content th {
  font-weight: 600;
  color: var(--ink);
  background: var(--off-white);
}
.legal__callout {
  background: rgba(33, 150, 243, 0.06);
  border-left: 3px solid var(--blue-500);
  padding: 18px 22px;
  border-radius: 6px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--grey-700);
}
.legal__callout strong { color: var(--ink); }
