/* Paste your full 1107-line styles.css here (entire file, start to end). */

/* IMPORTANT:
   - Do NOT remove anything.
   - Do NOT reorder sections.
   - I will edit only the existing header/logo/nav typography rules to:
     1) match portal header logo scale,
     2) add subtle logo hover polish,
     3) align logo/text baseline perfectly.
*/
/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background-color: #f9f3eb; /* warm beige */
  line-height: 1.6;
}

/* Brand colours */
:root {
  --hb-teal: #00838f;
  --hb-teal-soft: #e0f4f6;
  --hb-gold: #f9a825;
  --hb-gold-soft: #fff5d3;
  --hb-dark: #101820;
  --hb-muted: #6b7280;
  --hb-light: #ffffff;
  --hb-border: #e0d5c7;
  --hb-bg-soft: #f4e7d9;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.section { padding: 4.5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header.left { text-align: left; }

.section-header h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.section-text {
  max-width: 640px;
  margin-inline: auto;
  color: var(--hb-muted);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hb-teal);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--hb-teal), #00a1a9);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 131, 143, 0.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 131, 143, 0.28);
}

.btn.outline {
  background: transparent;
  border-color: var(--hb-teal);
  color: var(--hb-teal);
}

.btn.outline:hover {
  background: rgba(0, 131, 143, 0.06);
}

.btn.ghost {
  background: #ffffff;
  color: var(--hb-teal);
  border-color: rgba(0, 131, 143, 0.2);
}

.btn.ghost:hover { background: var(--hb-teal-soft); }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(24, 20, 15, 0.98);
  color: #f9fafb;
  padding: 0.85rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

.cookie-inner a {
  color: #fee2b3;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  font-size: 0.8rem;
  padding-inline: 0.95rem;
}

/* ========== COOKIE PREFERENCES PANEL ========== */
.cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-preferences.open { display: flex; }

.cookie-pref-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.cookie-pref-inner {
  position: relative;
  z-index: 1;
  width: min(520px, 100% - 2.5rem);
  max-height: min(460px, 100vh - 3rem);
  background: #fffaf3;
  border-radius: 1.2rem;
  border: 1px solid var(--hb-border);
  padding: 1.5rem 1.4rem 1.2rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.4);
  overflow-y: auto;
}

.cookie-pref-inner h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.cookie-pref-text {
  font-size: 0.9rem;
  color: var(--hb-muted);
  margin-bottom: 1rem;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
  color: var(--hb-muted);
}

.cookie-option strong { color: #111827; }

.cookie-option input {
  margin-top: 0.15rem;
}

.cookie-pref-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.cookie-pref-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--hb-muted);
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 243, 235, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(224, 213, 199, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.95rem;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
}

.logo-wrap:hover .logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.logo-wrap:hover .logo-img {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 4px 10px rgba(0, 131, 143, 0.25));
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}


.logo-title {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.1;
}


.logo-tagline {
  font-size: 0.75rem;
  line-height: 1.1;
  color: var(--hb-muted);
}


/* NAV */
.main-nav { position: relative; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-line {
  width: 22px;
  height: 2px;
  background: var(--hb-dark);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--hb-muted);
  font-weight: 500;
}

.nav-links a:hover { color: var(--hb-teal); }

.nav-referral {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--hb-gold);
  color: #111827;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(249, 168, 37, 0.4);
}

.nav-referral:hover { background: #ffb51a; }

/* LOGO HOVER POLISH */
.logo-wrap:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

/* ========== HERO ========== */
.hero { padding: 3.5rem 0 3.5rem; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.hero-text {
  color: var(--hb-muted);
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--hb-muted);
}

.hero-meta a { color: var(--hb-teal); }

/* HERO MEDIA */
.hero-media { display: flex; flex-direction: column; gap: 1rem; }

.hero-slider {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #000;
  min-height: 260px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active { opacity: 1; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.dot.active {
  width: 18px;
  background: var(--hb-gold);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  flex: 1 1 140px;
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  background: #fffaf3;
  border: 1px solid rgba(224, 213, 199, 0.9);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.badge-title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.badge-text {
  font-size: 0.8rem;
  color: var(--hb-muted);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PURPOSE (VISION, MISSION, VALUES) ========== */
.purpose-section {
  background: #fffaf3;
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.purpose-copy h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.purpose-copy p {
  font-size: 0.92rem;
  color: var(--hb-muted);
  max-width: 640px;
  margin-bottom: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.value-card {
  background: #ffffff;
  border-radius: 1.1rem;
  border: 1px solid var(--hb-border);
  padding: 1.1rem 1rem;
  font-size: 0.87rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

/* ========== SERVICES ========== */
.services {
  background: radial-gradient(circle at top left, #f4e7d9 0, #f9f3eb 45%, #f9f3eb 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: #ffffff;
  padding: 1.6rem 1.4rem 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid var(--hb-border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.service-card h3 { font-size: 1.1rem; }

.service-subtitle {
  font-size: 0.9rem;
  color: var(--hb-teal);
  font-weight: 500;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--hb-muted);
}

.service-list {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-list li::before {
  content: "•";
  color: var(--hb-teal);
  margin-right: 0.4rem;
}

.service-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hb-teal);
}

.service-link:hover { text-decoration: underline; }

/* NEW: keep buttons in service cards aligned at the bottom */
.service-card .btn {
  margin-top: auto;
}

.badge-coming-soon {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  border-radius: 999px;
  background: var(--hb-gold-soft);
  color: #8a6d0a;
  font-weight: 600;
  margin-top: 0.35rem;
}

.section-footer-cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* ========== WHY ========== */
.why { background: #fffaf3; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-item {
  padding: 1.3rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid var(--hb-border);
  background: #ffffff;
  font-size: 0.9rem;
}

/* ========== HOW IT WORKS ========== */
.how { background: #f4e7d9; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.step-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--hb-border);
  font-size: 0.9rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 131, 143, 0.09);
}

/* ========== HOURS & FLEET ========== */
.hours { background: #fffaf3; }

.hours-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.hours-cards { display: flex; flex-direction: column; gap: 1rem; }

.hours-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--hb-border);
  font-size: 0.9rem;
}

.hours-card h3 { margin-bottom: 0.6rem; }

.hours-card ul li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.hours-card .note {
  font-size: 0.8rem;
  color: var(--hb-muted);
  margin-top: 0.4rem;
}

.fleet-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem 1.1rem 1.3rem;
  border: 1px solid var(--hb-border);
  font-size: 0.9rem;
}

.fleet-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.fleet-grid img {
  border-radius: 0.7rem;
  height: 90px;
  object-fit: cover;
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--hb-teal), #00a1a9);
  color: #ffffff;
  padding: 2.8rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.cta-inner p {
  max-width: 480px;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-strip .btn.outline {
  border-color: #ffffff;
  color: #ffffff;
}

.cta-strip .btn.outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* PAGE HEROS */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(circle at top left, #f4e7d9 0, #f9f3eb 45%, #f9f3eb 100%);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.page-hero img {
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  height: 100%;
  object-fit: cover;
}

.page-hero h1 {
  font-size: clamp(2rem, 2.7vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.page-hero .hero-text { color: var(--hb-muted); }

.page-hero .hero-meta { margin-top: 0.9rem; }

/* SERVICE DETAILS */
.service-detail {
  padding: 3rem 0 3.5rem;
  background: #ffffff;
}

.service-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.service-columns h2 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.service-columns h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.service-columns p,
.service-columns li {
  font-size: 0.92rem;
  color: var(--hb-muted);
}

.service-columns ul li { margin-bottom: 0.35rem; }

/* SERVICE REFERRAL CTA */
.service-referral-cta {
  padding: 2.5rem 0;
  background: #f4e7d9;
}

/* FORMS */
.form-section {
  padding: 3rem 0 3.5rem;
  background: #ffffff;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
}

form { display: grid; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
  display: inline-block;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid var(--hb-border);
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  background-color: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--hb-teal);
  box-shadow: 0 0 0 1px rgba(0, 131, 143, 0.2);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.helper-text {
  font-size: 0.78rem;
  color: var(--hb-muted);
  margin-top: 0.15rem;
}

/* Error highlight used by JS */
.hb-error input,
.hb-error select,
.hb-error textarea {
  border-color: #b91c1c;
  box-shadow: 0 0 0 1px rgba(185, 28, 28, 0.25);
}

.hb-error-message {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #b91c1c;
}

/* THANK-YOU PAGES */
.thanks-section {
  padding: 3.5rem 0;
  background: #ffffff;
  text-align: center;
}

.thanks-section p {
  max-width: 560px;
  margin: 0.5rem auto;
  color: var(--hb-muted);
}

/* WORK WITH US */
.work-section {
  padding: 3rem 0 3.5rem;
  background: #ffffff;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.role-card {
  background: #fffaf3;
  border-radius: 1.1rem;
  border: 1px solid var(--hb-border);
  padding: 1.4rem 1.2rem;
  font-size: 0.9rem;
}

.role-card h3 { margin-bottom: 0.4rem; }

/* PRIVACY PAGE */
.privacy-section {
  padding: 3rem 0 3.5rem;
  background: #ffffff;
}

.privacy-section h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.privacy-section h2 {
  font-size: 1.3rem;
  margin: 1.4rem 0 0.4rem;
}

.privacy-section h3 {
  font-size: 1rem;
  margin: 1rem 0 0.3rem;
}

.privacy-section p,
.privacy-section li {
  font-size: 0.9rem;
  color: var(--hb-muted);
}

.privacy-section ul {
  padding-left: 1rem;
}

.privacy-section ul li {
  list-style: disc;
  margin-bottom: 0.3rem;
}

/* FOOTER */
.site-footer {
  background: #17110b;
  color: #e5e7eb;
  padding-top: 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 2.2rem;
  padding-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-title { font-weight: 700; font-size: 1rem; }

.footer-tagline { font-size: 0.8rem; color: #9ca3af; }

.footer-text {
  font-size: 0.85rem;
  color: #d1d5db;
  max-width: 380px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-column h3 {
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.footer-column h4 {
  font-size: 0.85rem;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
}

.footer-column ul li {
  margin-bottom: 0.25rem;
  color: #e5e7eb;
}

.footer-column a { color: #e5e7eb; }

.footer-email {
  display: inline-block;
  max-width: 100%;
  word-break: break-all;
}

.hours-mini li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

/* footer link hover / pop */
.footer-link {
  position: relative;
  display: inline-block;
  transition: color 0.15s ease, transform 0.15s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  background: var(--hb-gold);
  transition: width 0.18s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(75, 85, 99, 0.9);
  padding: 0.8rem 0;
  margin-top: 0.4rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: #d1d5db;
}

.footer-small { font-size: 0.75rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-media { order: -1; }
  .service-grid { grid-template-columns: minmax(0, 1fr); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: minmax(0, 1fr); }
  .hours-grid { grid-template-columns: minmax(0, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: minmax(0, 1fr); }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero-inner { grid-template-columns: minmax(0, 1fr); }
  .service-columns { grid-template-columns: minmax(0, 1fr); }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .roles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .purpose-layout { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  .header-inner { padding-block: 0.6rem; }
  .nav-toggle { display: flex; }

  .logo-img {
    width: 56px;
    height: 56px;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.6rem;
    background: #ffffff;
    border-radius: 0.8rem;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.25);
    padding: 0.75rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    min-width: 210px;
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 20;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-referral { width: 100%; text-align: center; justify-content: center; }

  .hero { padding-top: 2.8rem; }
  .hero-slider { min-height: 220px; }

  .footer-columns { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .roles-grid { grid-template-columns: minmax(0, 1fr); }
  .values-grid { grid-template-columns: minmax(0, 1fr); }

  .cookie-pref-inner {
    width: min(480px, 100% - 1.5rem);
    max-height: calc(100vh - 2rem);
  }
}