/* ===========================================================
   EZ Skip Hire Keighley - Stylesheet
   Sections: Reset · Tokens · Layout · Nav · Hero · Stats ·
             Skips · Steps · Features · Areas · Waste · FAQ ·
             CTA · Footer · Utilities · Animations · Responsive
   =========================================================== */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== TOKENS ===== */
:root {
  /* Brand - Green */
  --green: #16A34A;
  --green-bright: #22C55E;
  --green-soft: #DCFCE7;
  --green-dark: #15803D;
  --green-deep: #064E3B;

  /* Neutrals */
  --black: #0A0A0A;
  --grey-900: #111111;
  --grey-800: #1F1F1F;
  --grey-700: #2D2D2D;
  --grey-500: #6B6B6B;
  --grey-300: #D4D4D4;
  --grey-100: #F5F5F5;
  --white: #FFFFFF;

  /* Effects */
  --gradient-green: linear-gradient(135deg, #16A34A 0%, #4ADE80 100%);
  --gradient-deep: linear-gradient(135deg, #064E3B 0%, #15803D 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 20px 60px rgba(22, 163, 74, 0.35);

  /* Geometry */
  --radius: 16px;
  --radius-lg: 24px;
  --max-width: 1240px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--green); color: var(--white); }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.sr-only:focus {
  position: static; width: auto; height: auto; padding: 12px;
  background: var(--green); color: var(--white); z-index: 9999;
}

/* ===========================================================
   NAVIGATION
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--black); flex-shrink: 0;
}
.nav-brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient-green);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.45);
  flex-shrink: 0;
}
.nav-brand-mark svg { width: 22px; height: 22px; color: var(--white); }

.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
  margin: 0 auto; /* centre between brand and CTA */
}
.nav-links a {
  padding: 10px 16px; border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 500; font-size: 14px;
  color: var(--grey-700); transition: all 0.2s ease; white-space: nowrap;
}
.nav-links a:hover {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green-dark);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 14px;
  background: var(--black); color: var(--white) !important;
  transition: all 0.3s var(--transition);
  white-space: nowrap; flex-shrink: 0; line-height: 1;
}
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta:hover {
  background: var(--green); color: var(--white) !important;
  transform: translateY(-2px); box-shadow: var(--shadow-glow);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px; border-radius: 10px;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--black); position: relative; transition: 0.3s; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--black); transition: 0.3s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile drawer - hidden by default at all sizes; only shown when open AND on mobile */
.nav-mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); padding: 20px;
  border-bottom: 1px solid var(--grey-100);
  flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md);
}
.nav-mobile a {
  padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid transparent;
  font-weight: 500; color: var(--grey-700);
  transition: all 0.2s ease;
}
.nav-mobile a:hover {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green-dark);
}
.nav-mobile .nav-cta {
  display: inline-flex; justify-content: center; margin-top: 8px;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--grey-100);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(20, 184, 166, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, #F0FDF4 0%, #DCFCE7 50%, #F0FDF4 100%);
  background-size: 200% 200%, 200% 200%, 100% 300%;
  animation: hero-drift 22s ease-in-out infinite;
}
@keyframes hero-drift {
  0%   { background-position:   0%   0%, 100% 100%,   0%   0%; }
  25%  { background-position: 100%  40%,  40%  80%,   0%  40%; }
  50%  { background-position:  60% 100%,   0%   0%,   0% 100%; }
  75%  { background-position:  10%  70%,  80%  10%,   0%  60%; }
  100% { background-position:   0%   0%, 100% 100%,   0%   0%; }
}
@media (prefers-reduced-motion: reduce) { .hero-bg { animation: none; } }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.4;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
          mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  animation: float 12s ease-in-out infinite;
}
.hero-blob-1 { width: 400px; height: 400px; background: rgba(34, 197, 94, 0.4); top: -100px; right: -100px; }
.hero-blob-2 { width: 320px; height: 320px; background: rgba(20, 184, 166, 0.25); bottom: -80px; left: 5%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -30px) scale(1.05); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 14px; color: var(--grey-500); margin-bottom: 20px;
  list-style: none;
}
.breadcrumbs a { color: var(--grey-700); }
.breadcrumbs a:hover { color: var(--black); }
.breadcrumbs span { color: var(--grey-300); }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--grey-700);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #00C853; position: relative; }
.pulse-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #00C853; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-grid-layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.035em; line-height: 1.02;
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: var(--gradient-green);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.hero p.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--grey-700);
  max-width: 580px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: all 0.3s var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--black); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-secondary { background: var(--white); color: var(--black); border: 1.5px solid rgba(0, 0, 0, 0.1); }
.btn-secondary:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid; place-items: center;
  color: var(--green-dark); backdrop-filter: blur(10px);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-text { font-size: 13px; }
.trust-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--black); }
.trust-text span { color: var(--grey-500); }

/* Hero card stack */
.hero-card-wrap { position: relative; height: 460px; }
.hero-card {
  position: absolute; padding: 28px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); transition: transform 0.4s var(--transition);
}
.hero-card-1 {
  top: 0; left: 0; width: 78%;
  background: var(--black); color: var(--white);
  transform: rotate(-3deg);
}
.hero-card-1:hover { transform: rotate(-1deg) translateY(-6px); }
.hero-card-2 {
  bottom: 0; right: 0; width: 70%;
  transform: rotate(4deg);
}
.hero-card-2:hover { transform: rotate(2deg) translateY(-6px); }

.price-tag {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 4px 12px; background: var(--green); color: var(--white);
  border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 14px;
}
.hero-card h3 { font-size: 22px; margin-bottom: 8px; }
.hero-card p { font-size: 14px; opacity: 0.8; margin-bottom: 18px; }
.hero-card .big-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px; font-weight: 700; line-height: 1;
}
.hero-card .big-price small { font-size: 14px; opacity: 0.6; font-weight: 500; margin-left: 4px; }

.floating-badge {
  position: absolute; top: 35%; right: -20px; z-index: 3;
  background: var(--green); color: var(--white);
  padding: 14px 18px; border-radius: 999px; font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow-glow);
  animation: bob 4s ease-in-out infinite;
  display: flex; align-items: center; gap: 8px;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ===========================================================
   STATS
   =========================================================== */
.stats {
  background: var(--black); color: var(--white);
  padding: 60px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1; margin-bottom: 8px;
  background: var(--gradient-green);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label {
  font-size: 14px; color: var(--grey-300);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ===========================================================
   SECTION GENERIC
   =========================================================== */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; padding: 6px 14px;
  background: var(--green-soft); color: var(--green-dark);
  border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.section-subtitle { color: var(--grey-500); font-size: 18px; }

/* ===========================================================
   SKIPS
   =========================================================== */
.skips { background: var(--grey-100); }
.skips-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.skip-card {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; transition: all 0.4s var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04); overflow: hidden;
  display: flex; flex-direction: column;
}
.skip-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--transition);
}
.skip-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: rgba(22, 163, 74, 0.3);
}
.skip-card:hover::before { transform: scaleX(1); }
.skip-card.featured {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.skip-card.featured::before { transform: scaleX(1); }
.skip-card.featured:hover { box-shadow: var(--shadow-glow); }

.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--green); color: var(--white);
  padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.skip-illustration { width: 110px; height: 80px; margin-bottom: 24px; position: relative; }
.skip-illustration svg { width: 100%; height: 100%; }

.skip-card h3 { font-size: 24px; margin-bottom: 8px; }
.skip-card .skip-sub { font-size: 14px; opacity: 0.7; margin-bottom: 24px; }

.skip-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px;
}
.skip-price .from { font-size: 13px; opacity: 0.6; margin-right: 4px; }
.skip-price .amount { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; line-height: 1; }
.skip-price .vat { font-size: 13px; opacity: 0.6; margin-left: 4px; }

.skip-features { list-style: none; margin-bottom: 32px; flex: 1; }
.skip-features li {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px 0;
  font-size: 14.5px; border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.skip-card.featured .skip-features li { border-bottom-color: rgba(255, 255, 255, 0.08); }
.skip-features li:last-child { border-bottom: none; }
.skip-features svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--green); margin-top: 2px;
}
.skip-card.featured .skip-features svg { color: var(--green-bright); }

.skip-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px; border-radius: 14px; font-weight: 600; font-size: 15px;
  background: var(--grey-100); color: var(--black);
  transition: all 0.3s var(--transition);
}
.skip-cta:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.skip-card.featured .skip-cta { background: var(--green); color: var(--white); }
.skip-card.featured .skip-cta:hover { background: var(--white); color: var(--black); }

/* ===========================================================
   STEPS
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.step {
  position: relative; padding: 36px 28px; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--grey-100);
  transition: all 0.3s var(--transition);
}
.step:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}
.step-num {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gradient-green); color: var(--white);
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700;
  display: grid; place-items: center; margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}
.step h3 { font-size: 20px; margin-bottom: 12px; }
.step p { color: var(--grey-700); font-size: 15px; }
.step a { color: var(--black); font-weight: 600; border-bottom: 2px solid var(--green); }

/* ===========================================================
   FEATURES
   =========================================================== */
.features-bg { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.features-bg::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.features-bg .section-tag { background: rgba(34, 197, 94, 0.15); color: var(--green-bright); }
.features-bg .section-subtitle { color: var(--grey-300); }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; position: relative; }
.feature {
  padding: 32px; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-lg);
  transition: all 0.3s var(--transition); backdrop-filter: blur(10px);
}
.feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(34, 197, 94, 0.35);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gradient-green); display: grid; place-items: center;
  color: var(--white); margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { color: var(--grey-300); font-size: 15px; }

/* ===========================================================
   AREAS
   =========================================================== */
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1000px; margin: 0 auto;
}
.area-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; background: var(--white); border: 1px solid var(--grey-100);
  border-radius: 14px; font-weight: 500; font-size: 15px;
  transition: all 0.25s var(--transition);
}
.area-pill:hover {
  border-color: var(--green); background: var(--green-soft);
  transform: translateX(4px);
}
.area-pill svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.area-pill small { color: var(--grey-500); font-size: 12px; margin-left: auto; }

.areas-cta { text-align: center; margin-top: 48px; }
.areas-cta a { font-weight: 600; color: var(--black); border-bottom: 2px solid var(--green); padding-bottom: 2px; }

/* ===========================================================
   WASTE
   =========================================================== */
.waste-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.waste-card {
  padding: 40px; border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--grey-100);
}
.waste-card.allowed { border-top: 4px solid var(--green); }
.waste-card.prohibited { border-top: 4px solid #E53935; }

.waste-card h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; margin-bottom: 24px;
}
.waste-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; color: var(--white);
}
.waste-icon.ok { background: var(--green); }
.waste-icon.no { background: #E53935; }

.waste-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--grey-100);
  font-size: 15px;
}
.waste-list li:last-child { border-bottom: none; }
.waste-list svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: 16px; margin-bottom: 12px; overflow: hidden;
  transition: all 0.3s var(--transition);
}
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 17px; font-weight: 600; text-align: left; color: var(--black);
}
.faq-q:hover { background: var(--green-soft); color: var(--green-dark); }
.faq-q:hover .faq-icon { background: var(--white); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grey-100); display: grid; place-items: center; flex-shrink: 0;
  transition: all 0.3s var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--green); color: var(--white);
  transform: rotate(45deg);
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition); }
.faq-a-inner { padding: 0 28px 24px; color: var(--grey-700); font-size: 15.5px; line-height: 1.7; }

/* ===========================================================
   CTA
   =========================================================== */
.cta-section { padding: 100px 0; background: var(--grey-100); }
.cta-card {
  position: relative; max-width: 1100px; margin: 0 auto; overflow: hidden;
  background: var(--black); color: var(--white);
  border-radius: 32px; padding: 80px 60px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
}
.cta-card::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; position: relative; }
.cta-card p { color: var(--grey-300); font-size: 17px; margin-bottom: 28px; position: relative; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; position: relative; }
.cta-actions .btn-primary { background: var(--green); color: var(--white); justify-content: center; padding: 18px 28px; }
.cta-actions .btn-primary:hover { background: var(--white); color: var(--black); }
.cta-actions .btn-secondary {
  background: transparent; border-color: rgba(255, 255, 255, 0.2);
  color: var(--white); justify-content: center; padding: 18px 28px;
}
.cta-actions .btn-secondary:hover { background: var(--white); color: var(--black); }

/* Contact methods (in CTA card) */
.contact-methods {
  display: flex; flex-direction: column; gap: 12px; position: relative;
}
.contact-method {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-align: left;
  transition: all 0.3s var(--transition);
  color: var(--white);
}
.contact-method:hover {
  background: rgba(34, 197, 94, 0.18);
  border-color: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.25);
}
.contact-icon {
  grid-row: span 2;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gradient-green);
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.contact-icon.google {
  background: var(--white);
}
.contact-label {
  font-size: 11px; font-weight: 700;
  color: var(--grey-300);
  text-transform: uppercase; letter-spacing: 0.08em;
  align-self: end;
  line-height: 1;
  margin-bottom: 4px;
}
.contact-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--white);
  align-self: start;
  line-height: 1.1;
  white-space: nowrap;
}
.contact-method:hover .contact-value { color: var(--green-bright); }

@media (max-width: 800px) {
  .contact-method { padding: 14px 18px; }
  .contact-value { font-size: 15px; }
}

/* ===========================================================
   GOOGLE MAP SECTION
   =========================================================== */
.map-section { background: var(--grey-100); }
.map-wrap {
  position: relative;
  max-width: 1100px; margin: 0 auto;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.map-wrap iframe {
  width: 100%; height: 480px;
  border: 0; display: block;
}
.map-actions {
  display: flex; justify-content: center; gap: 12px;
  padding: 24px; flex-wrap: wrap;
  background: var(--white);
}
.map-actions .btn-google {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  background: var(--white); color: var(--grey-700);
  border: 1.5px solid var(--grey-300);
  transition: all 0.3s var(--transition);
}
.map-actions .btn-google:hover {
  border-color: var(--green); color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.18);
}
.map-actions .btn-google svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (max-width: 600px) {
  .map-wrap iframe { height: 360px; }
  .map-actions { padding: 18px; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--black); color: var(--grey-300); padding: 80px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  color: var(--white); font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 20px;
}
.footer-brand .nav-brand-mark { width: 40px; height: 40px; }
.footer p { font-size: 14.5px; line-height: 1.7; }
.footer h4 {
  color: var(--white); font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
}
.footer ul li { margin-bottom: 10px; font-size: 14.5px; }
.footer ul li a:hover { color: var(--green-bright); }
.footer address { font-style: normal; line-height: 1.8; font-size: 14.5px; }
.footer address a:hover { color: var(--green-bright); }

/* Footer contact list with icons */
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; line-height: 1.3;
  transition: all 0.2s ease;
}
.footer-contact a small {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 2px;
}
.footer-contact a:hover small { color: var(--green-bright); }
.footer-contact-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.footer-contact-icon svg { width: 14px; height: 14px; color: var(--grey-300); }
.footer-contact a:hover .footer-contact-icon {
  background: var(--green); border-color: var(--green);
}
.footer-contact a:hover .footer-contact-icon svg { color: var(--white); }
.footer-contact-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: transparent;
}
.footer-contact-icon.whatsapp svg { color: var(--white); }
.footer-contact-icon.google {
  background: var(--white); border-color: transparent;
}
.footer-contact a:hover .footer-contact-icon.whatsapp { transform: scale(1.05); }
.footer-contact-text { display: flex; flex-direction: column; }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--grey-500);
}
.footer-bottom a { color: var(--grey-300); }
.footer-bottom a:hover { color: var(--green-bright); }

/* ===========================================================
   SKIP-SIZE CALCULATOR — editorial dark redesign
   =========================================================== */
.calculator-section {
  position: relative; overflow: hidden;
  background: #07090B; color: #fff;
  padding-top: 96px; padding-bottom: 96px;
}
.calc-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.9;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 55%, transparent 100%);
}
.calc-grid-bg svg { width: 100%; height: 100%; display: block; }
.calc-glow {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(110px);
}
.calc-glow-1 {
  top: -180px; left: -140px; width: 460px; height: 460px;
  background: rgba(22, 163, 74, 0.45);
}
.calc-glow-2 {
  bottom: -220px; right: -200px; width: 560px; height: 560px;
  background: rgba(20, 184, 166, 0.30);
}

/* Header */
.calc-header {
  position: relative; text-align: center;
  max-width: 720px; margin: 0 auto 56px;
}
.calc-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ADE80;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.calc-kicker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; position: relative;
}
.calc-kicker-dot::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; background: rgba(34, 197, 94, 0.5);
  animation: calcSonar 2s ease-out infinite;
}
@keyframes calcSonar {
  0%   { transform: scale(0.6); opacity: 0.8; }
  80%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
.calc-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: #fff;
}
.calc-title::after {
  content: '.'; color: #22C55E;
}
.calc-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 17px; line-height: 1.55;
  max-width: 560px; margin: 0 auto;
}

/* Shell */
.calc-shell { position: relative; max-width: 1080px; margin: 0 auto; }

/* ---- Numbered stepper ---- */
.calc-stepper {
  list-style: none; padding: 0; margin: 0 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; position: relative;
}
.calc-stepper::before {
  content: ''; position: absolute;
  top: 26px; left: 12%; right: 12%;
  height: 0; border-top: 1.5px dashed rgba(255,255,255,0.12);
  z-index: 0;
}
.calc-stepper-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; position: relative; z-index: 1;
}
.calc-stepper-mark {
  position: relative;
  width: 52px; height: 52px; border-radius: 16px;
  background: #0E1114;
  border: 1.5px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  transition: all 0.4s var(--transition);
}
.calc-stepper-num {
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
  transition: all 0.3s var(--transition);
}
.calc-stepper-tick {
  position: absolute; width: 22px; height: 22px; color: #0A0A0A;
  opacity: 0; transform: scale(0.6);
  transition: all 0.3s var(--transition);
}
.calc-stepper-tick svg { width: 100%; height: 100%; }
.calc-stepper-item.active .calc-stepper-mark {
  background: rgba(34, 197, 94, 0.15);
  border-color: #22C55E;
  box-shadow:
    0 0 0 5px rgba(34, 197, 94, 0.08),
    0 10px 24px -6px rgba(34, 197, 94, 0.5);
  transform: scale(1.05);
}
.calc-stepper-item.active .calc-stepper-num { color: #4ADE80; }
.calc-stepper-item.completed .calc-stepper-mark {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px -8px rgba(34, 197, 94, 0.55);
}
.calc-stepper-item.completed .calc-stepper-num { opacity: 0; transform: scale(0.5); }
.calc-stepper-item.completed .calc-stepper-tick { opacity: 1; transform: scale(1); color: #fff; }
.calc-stepper-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}
.calc-stepper-item.active .calc-stepper-label { color: #fff; }
.calc-stepper-item.completed .calc-stepper-label { color: rgba(255,255,255,0.75); }

/* ---- Frame ---- */
.calc-frame {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-height: 520px;
  overflow: hidden;
}
.calc-frame::before {
  content: ''; position: absolute;
  top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.4), transparent);
}

/* ---- Steps ---- */
.calc-step { display: none; animation: calcStepIn 0.5s var(--transition); }
.calc-step.active { display: block; }
@keyframes calcStepIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.calc-step-grid {
  display: grid; grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 56px; align-items: start;
}
.calc-step-meta { position: sticky; top: 120px; }
.calc-step-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #22C55E; margin-bottom: 18px;
  padding: 4px 0; border-bottom: 1.5px solid rgba(34, 197, 94, 0.35);
}
.calc-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff; margin: 0 0 14px;
}
.calc-q-sub {
  color: rgba(255,255,255,0.55);
  font-size: 15px; line-height: 1.55; margin: 0;
}

/* ---- Options ---- */
.calc-options {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin: 0;
}
.calc-options-volume { grid-template-columns: repeat(2, 1fr); }
.calc-options-location { grid-template-columns: 1fr; }

.calc-option {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px; row-gap: 2px;
  align-items: center;
  padding: 20px 22px;
  text-align: left; cursor: pointer;
  background: rgba(255,255,255,0.035);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  color: #fff;
  transition: transform 0.25s var(--transition),
              border-color 0.25s ease,
              background 0.25s ease,
              box-shadow 0.3s ease;
  overflow: hidden;
}
.calc-option::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(34,197,94,0), rgba(34,197,94,0.12));
  opacity: 0; transition: opacity 0.25s ease;
  pointer-events: none;
}
.calc-option:hover {
  border-color: rgba(34,197,94,0.55);
  transform: translateY(-3px);
  background: rgba(34,197,94,0.06);
  box-shadow: 0 14px 32px -14px rgba(34,197,94,0.5);
}
.calc-option:hover::before { opacity: 1; }
.calc-option:hover .calc-option-icon {
  border-color: rgba(34,197,94,0.55);
  color: #4ADE80;
  transform: scale(1.05) rotate(-2deg);
}

.calc-option-icon {
  grid-row: 1 / span 2; grid-column: 1;
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  transition: all 0.3s var(--transition);
}
.calc-option-icon svg { width: 24px; height: 24px; }

.calc-option-title {
  grid-row: 1; grid-column: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15.5px; font-weight: 600; line-height: 1.25;
  color: #fff;
}
.calc-option-sub {
  grid-row: 2; grid-column: 2;
  font-size: 13px; color: rgba(255,255,255,0.55);
}

.calc-option.selected {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 22px 42px -14px rgba(22, 163, 74, 0.6);
}
.calc-option.selected::before { opacity: 0; }
.calc-option.selected .calc-option-icon {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.calc-option.selected .calc-option-sub { color: rgba(255,255,255,0.85); }
.calc-option.selected::after {
  content: '';
  position: absolute; top: 12px; right: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  animation: calcPop 0.35s var(--transition);
}
@keyframes calcPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ---- Result ---- */
.calc-result { margin: 0; }
.calc-result-inner {
  position: relative; text-align: center;
  background: #fff; color: #0A0A0A;
  border-radius: 24px;
  padding: 48px 40px 40px;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.6);
  max-width: 720px; margin: 0 auto;
  overflow: hidden;
}
.calc-result-inner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #16A34A, #22C55E, #4ADE80, #22C55E, #16A34A);
  background-size: 200% 100%;
  animation: calcRibbon 4s linear infinite;
}
@keyframes calcRibbon {
  0%   { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}
.calc-result-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--green-soft); color: var(--green-dark);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.calc-result-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16A34A; position: relative; flex-shrink: 0;
}
.calc-result-pulse::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; background: rgba(22,163,74,0.4);
  animation: calcSonar 1.6s ease-out infinite;
}
.calc-result-title {
  font-size: clamp(30px, 4vw, 44px);
  margin: 18px 0 10px;
  background: var(--gradient-green);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.calc-result-desc {
  color: var(--grey-700); font-size: 16px;
  max-width: 480px; margin: 0 auto;
}
.calc-result-visual {
  margin: 28px auto;
  max-width: 280px;
  animation: skipDrop 0.7s var(--transition);
}
.calc-result-visual svg { width: 100%; height: auto; }
@keyframes skipDrop {
  0%   { transform: translateY(-30px) rotate(-5deg); opacity: 0; }
  60%  { transform: translateY(6px) rotate(2deg); opacity: 1; }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}

.calc-result-spec {
  display: flex; align-items: center; justify-content: space-around;
  max-width: 580px; margin: 0 auto 30px;
  padding: 22px 28px;
  background: #F5F7F6; border-radius: 16px;
}
.calc-result-spec > div {
  flex: 1; display: flex; flex-direction: column;
  gap: 6px; align-items: center;
}
.spec-divider {
  width: 1px; height: 36px; background: rgba(0,0,0,0.08);
  flex: 0 0 1px;
}
.spec-label {
  font-size: 11px; font-weight: 700; color: var(--grey-500);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.spec-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--black);
}

.calc-result-actions {
  display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.calc-result-book {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px !important;
  font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
  box-shadow: 0 14px 32px -10px rgba(22, 163, 74, 0.55);
}
.calc-result-book svg { width: 18px; height: 18px; transition: transform 0.25s var(--transition); }
.calc-result-book:hover svg { transform: translateX(4px); }
.calc-result-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--grey-700);
  border: 1.5px solid var(--grey-200);
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.calc-result-call svg { width: 15px; height: 15px; color: var(--green); }
.calc-result-call:hover { background: var(--grey-100); color: var(--black); border-color: var(--grey-300); text-decoration: none; }

.btn-ghost-plain {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0;
  padding: 12px 14px;
  color: var(--grey-500); font-weight: 600; font-size: 13px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.btn-ghost-plain svg { width: 14px; height: 14px; }
.btn-ghost-plain:hover { color: var(--black); }

/* ===========================================================
   ANIMATIONS - reveal on scroll
   =========================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  /* Show toggle, hide desktop nav links + CTA */
  .nav-toggle { display: flex; }
  .nav-links,
  .nav-inner > .nav-cta { display: none; }
  /* Mobile drawer becomes available (still hidden until .open) */
  .nav-mobile.open { display: flex; }

  .hero-grid-layout { grid-template-columns: 1fr; gap: 48px; }
  .skips-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .features-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .waste-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 56px 32px; gap: 32px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---- Calculator responsive ---- */
@media (max-width: 960px) {
  .calc-step-grid { grid-template-columns: 1fr; gap: 32px; }
  .calc-step-meta { position: static; }
  .calc-frame { padding: 36px 28px; }
  .calc-stepper { gap: 8px; }
}
@media (max-width: 640px) {
  .calculator-section { padding-top: 72px; padding-bottom: 72px; }
  .calc-frame { padding: 28px 20px; border-radius: 22px; }
  .calc-stepper { margin-bottom: 28px; }
  .calc-stepper::before { top: 20px; left: 14%; right: 14%; }
  .calc-stepper-mark { width: 40px; height: 40px; border-radius: 12px; }
  .calc-stepper-num { font-size: 12px; }
  .calc-stepper-tick { width: 18px; height: 18px; }
  .calc-stepper-label { font-size: 9.5px; letter-spacing: 0.06em; }
  .calc-options, .calc-options-volume { grid-template-columns: 1fr; gap: 10px; }
  .calc-option { grid-template-columns: 44px 1fr; column-gap: 14px; padding: 16px 18px; }
  .calc-option-icon { width: 44px; height: 44px; border-radius: 12px; }
  .calc-option-icon svg { width: 22px; height: 22px; }
  .calc-option-title { font-size: 15px; }
  .calc-result-inner { padding: 36px 24px 32px; }
  .calc-result-spec { flex-direction: column; gap: 16px; padding: 20px; }
  .spec-divider { width: 40px; height: 1px; }
  .calc-result-actions .btn-primary,
  .calc-result-actions .btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}


/* ===========================================================
   PERMIT PRICING BLOCK + CALLOUT
   =========================================================== */
.skip-price-block {
  display: flex; flex-direction: column; gap: 8px;
  margin: 16px 0 24px;
  padding: 14px;
  background: var(--grey-100);
  border-radius: 12px;
}
.skip-card.featured .skip-price-block { background: rgba(255, 255, 255, 0.08); }
.skip-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 2px;
}
.skip-price-row + .skip-price-row {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 12px;
}
.skip-card.featured .skip-price-row + .skip-price-row { border-top-color: rgba(255, 255, 255, 0.15); }
.skip-price-label {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px; font-weight: 600; text-align: left;
}
.skip-price-label small {
  font-size: 11px; font-weight: 500; opacity: 0.65;
  text-transform: none; letter-spacing: 0;
}
.skip-price-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1;
  white-space: nowrap;
}
.skip-price-row-permit .skip-price-value { color: var(--green-dark); }
.skip-card.featured .skip-price-row-permit .skip-price-value { color: var(--green-bright); }

/* Permit callout above skip cards */
.permit-callout {
  max-width: 820px; margin: 0 auto 36px;
  padding: 18px 22px;
  background: var(--green-soft);
  border: 1px solid var(--green-bright);
  border-left: 5px solid var(--green);
  border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
}
.permit-callout-icon {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green); color: var(--white);
  display: grid; place-items: center;
}
.permit-callout-icon svg { width: 22px; height: 22px; }
.permit-callout-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; color: var(--green-dark);
  margin-bottom: 2px;
}
.permit-callout-text span { font-size: 14px; color: var(--grey-700); }
@media (max-width: 600px) {
  .permit-callout { flex-direction: column; text-align: center; gap: 10px; }
}


/* ===========================================================
   CHECKOUT PAGE + PER-ROW BOOK BUTTONS
   =========================================================== */
.checkout-page { background: var(--grey-100); }
.hero-checkout { padding: 100px 0 60px; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

.checkout-form-col, .checkout-summary-col {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding: 28px;
}
.checkout-summary-col { position: sticky; top: 100px; }
@media (max-width: 900px) { .checkout-summary-col { position: static; } }

.checkout-fieldset {
  border: 0;
  padding: 0;
  margin-bottom: 24px;
}
.checkout-fieldset legend {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  padding: 0 0 12px 0;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--green-soft);
  width: 100%;
}
.checkout-fieldset label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--grey-700);
  margin-bottom: 14px;
}
.checkout-fieldset label small {
  font-weight: 500;
  font-size: 12px;
  color: var(--grey-500);
}
.checkout-fieldset input[type="text"],
.checkout-fieldset input[type="email"],
.checkout-fieldset input[type="tel"],
.checkout-fieldset select,
.checkout-fieldset textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--grey-300);
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.checkout-fieldset input:focus,
.checkout-fieldset select:focus,
.checkout-fieldset textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.checkout-fieldset textarea { font-family: inherit; resize: vertical; min-height: 80px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* Location choice (toggle) */
.location-toggle {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location-option {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--grey-100);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0 !important;
}
.location-option input[type="radio"] {
  margin: 2px 0 0 0;
  accent-color: var(--green);
  flex-shrink: 0;
  cursor: pointer;
}
.location-option strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 2px;
}
.location-option small {
  font-size: 13px;
  color: var(--grey-500);
}
.location-option:hover {
  border-color: var(--green-bright);
  background: var(--green-soft);
}
.location-option.selected {
  border-color: var(--green);
  background: var(--green-soft);
  box-shadow: 0 4px 12px rgba(22,163,74,0.15);
}
.location-option.selected strong { color: var(--green-dark); }

.checkout-fineprint {
  font-size: 13px;
  color: var(--grey-500);
  padding: 14px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  margin-top: 12px;
}

/* Order summary */
.checkout-summary h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--black);
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--grey-300);
}
.checkout-line strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 2px;
}
.checkout-line small { font-size: 12px; color: var(--grey-500); }
.checkout-line-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}
.checkout-line-sub { padding: 6px 0; border-bottom: 0; }
.checkout-line-sub small { color: var(--grey-700); font-weight: 500; }
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 8px;
  border-top: 2px solid var(--green-soft);
  margin-top: 8px;
}
.checkout-total small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 2px;
}
.checkout-total-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.checkout-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  margin-top: 20px;
  justify-content: center;
  gap: 10px;
}
.checkout-submit svg { width: 20px; height: 20px; }

.checkout-secure {
  text-align: center;
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Alerts */
.checkout-alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.checkout-alert-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}
.checkout-alert ul { margin: 6px 0 0 18px; padding: 0; }

/* Success page badge */
.success-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gradient-green);
  color: var(--white);
  font-size: 44px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.35);
}

/* Book-per-row button on skip cards */
.skip-price-book {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  margin-left: 10px;
  flex-shrink: 0;
  text-decoration: none;
  transition: all 0.15s ease;
}
.skip-price-book:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}
.skip-card.featured .skip-price-book { background: var(--green-bright); color: var(--black); }
.skip-card.featured .skip-price-book:hover { background: var(--white); }

/* ===========================================================
   EMBEDDED STRIPE CHECKOUT
   =========================================================== */
.embedded-checkout-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding: 32px;
}
.embedded-checkout-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-100);
}
.embedded-checkout-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 6px;
}
.embedded-checkout-head a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}
.embedded-checkout-head a:hover { text-decoration: underline; }
#checkout {
  min-height: 600px;
  /* Stripe iframe sizes itself; this just guarantees some space while loading */
}


/* ===========================================================
   HERO CARD - BOOK NOW BUTTON
   =========================================================== */
.hero-card-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}
.hero-card-book:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.45);
  text-decoration: none;
}
.hero-card-1 .hero-card-book { background: var(--green); }

/* ===========================================================
   POSTCODE LOOKUP (checkout)
   =========================================================== */
.postcode-lookup {
  padding: 14px 16px;
  background: var(--green-soft);
  border: 1px solid var(--green-bright);
  border-radius: 12px;
  margin-bottom: 16px;
}
.postcode-lookup > label { color: var(--green-dark); font-weight: 700; }
.postcode-lookup-row {
  display: flex; gap: 8px; margin-top: 6px;
}
.postcode-lookup-row input[type="text"] {
  flex: 1 1 auto;
  padding: 12px 14px;
  font-size: 15px; font-weight: 500;
  border: 1.5px solid var(--grey-300);
  border-radius: 10px;
  text-transform: uppercase;
}
.postcode-lookup-row input:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
.postcode-lookup-row button {
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 14px; font-weight: 600;
  color: var(--white); background: var(--green);
  border: 0; border-radius: 10px; cursor: pointer;
  transition: background 0.15s ease;
}
.postcode-lookup-row button:hover { background: var(--green-dark); }
#postcode_lookup_select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px; font-weight: 500;
  background: var(--white);
  border: 1.5px solid var(--grey-300);
  border-radius: 10px;
}
#postcode_lookup_select:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}
#postcode_lookup_status { font-size: 13px; margin-top: 6px; }

@media (max-width: 500px) {
  .postcode-lookup-row { flex-direction: column; }
  .postcode-lookup-row button { width: 100%; }
}

/* ===========================================================
   PAYMENT BAND (hero-adjacent trust strip)
   =========================================================== */
.pay-band { background: #F5F7F6; padding: 40px 0; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.pay-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.pay-band-text { flex: 1 1 280px; }
.pay-band-text h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; margin: 0 0 6px; color: var(--black); letter-spacing: -0.01em; }
.pay-band-text p { margin: 0; font-size: 15px; color: var(--grey-700); line-height: 1.55; }
.pay-band-logos { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: center; }
.pay-band-foot { margin: 24px 0 0; text-align: center; font-size: 12.5px; color: var(--grey-500); line-height: 1.5; }
.pay-logo { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 10px; padding: 10px 16px; height: 44px; min-width: 64px; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: transform 0.15s ease; }
.pay-logo:hover { transform: translateY(-2px); }
.pay-apple { background: #000; color: #fff; border-color: #000; }
.pay-apple svg { width: 16px; height: 16px; }
.pay-google { background: #fff; color: #5F6368; padding: 10px 14px; }
.gpay-g { position: relative; width: 18px; height: 18px; border-radius: 50%; overflow: hidden; display: inline-block; flex-shrink: 0; }
.gpay-g span { position: absolute; width: 50%; height: 50%; }
.gpay-g span:nth-child(1) { top: 0; left: 0; background: #EA4335; }
.gpay-g span:nth-child(2) { top: 0; right: 0; background: #FBBC05; }
.gpay-g span:nth-child(3) { bottom: 0; left: 0; background: #34A853; }
.gpay-g span:nth-child(4) { bottom: 0; right: 0; background: #4285F4; }
.pay-visa { padding: 10px 20px; }
.pay-visa span { font-family: 'Space Grotesk', sans-serif; font-style: italic; font-weight: 900; font-size: 18px; color: #1A1F71; letter-spacing: 0.06em; }
.pay-mc { padding: 10px 14px; gap: 0; }
.mc-a, .mc-b { width: 22px; height: 22px; border-radius: 50%; display: inline-block; }
.mc-a { background: #EB001B; }
.mc-b { background: #F79E1B; margin-left: -8px; mix-blend-mode: multiply; }
.pay-klarna { background: #FFA8CD; color: #0A0A0A; border-color: #FFA8CD; padding: 10px 18px; }
.pay-klarna span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
@media (max-width: 640px) {
  .pay-band { padding: 28px 0; }
  .pay-band-inner { flex-direction: column; text-align: center; gap: 20px; }
  .pay-band-text h3 { font-size: 19px; }
  .pay-logo { padding: 8px 12px; height: 40px; min-width: 54px; }
}

/* ===========================================================
   FOOTER - nearby depots row (auto-computed from coords)
   =========================================================== */
.footer-nearby {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px;
  padding: 18px 0; margin-bottom: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13.5px;
}
.footer-nearby-label { color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: 0.02em; margin-right: 4px; }
.footer-nearby a { color: rgba(255,255,255,0.85); text-decoration: none; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.05); transition: background 0.15s ease, color 0.15s ease; }
.footer-nearby a:hover { background: var(--green); color: #fff; }
.footer-nearby a small { color: rgba(255,255,255,0.55); font-size: 11.5px; margin-left: 3px; }
.footer-nearby a:hover small { color: rgba(255,255,255,0.85); }
.footer-nearby-all { background: rgba(34,197,94,0.15) !important; color: #4ADE80 !important; font-weight: 700; }
.footer-nearby-all:hover { background: var(--green) !important; color: #fff !important; }

/* ===========================================================
   MOBILE / TABLET FIXES
   =========================================================== */
/* Un-stack the hero cards at the SAME breakpoint the hero goes single-column
   (.hero-grid-layout { grid-template-columns: 1fr } at <=900px), otherwise
   the absolute-positioned tilted cards overlap. */
@media (max-width: 900px) {
  .hero-card-wrap {
    position: relative;
    height: auto;
    display: flex; flex-direction: column; gap: 18px;
    max-width: 460px; margin: 0 auto; padding: 8px 4px;
  }
  .hero-card {
    position: static; width: 100%;
    transform: none;
  }
  .hero-card-1, .hero-card-2 { transform: none; }
  .hero-card-1:hover, .hero-card-2:hover { transform: translateY(-4px); }
  .floating-badge { display: none; }
}

@media (max-width: 640px) {
  /* Tighter hero card sizing on phones */
  .hero-card { padding: 24px; }
  .hero-card h3 { font-size: 20px; }
  .hero-card .big-price { font-size: 38px; }

  /* Skip cards: center the header (illustration, title, subtitle) */
  .skip-card { padding: 28px 22px; }
  .skip-illustration { margin-left: auto; margin-right: auto; }
  .skip-card > h3,
  .skip-card > .skip-sub { text-align: center; }

  /* Pay band: tighten the vertical gap between text and logos on mobile */
  .pay-band { padding: 22px 0; }
  .pay-band-inner { gap: 12px; }
  .pay-band-text { flex: 1 1 auto; }
  .pay-band-text p { font-size: 14px; }
  .pay-band-foot { margin-top: 14px; font-size: 12px; }
}
