/* =============================================
   Metro Installations – Stylesheet
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1B3A57;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: #2A6F97; text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Layout ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.bg-white { background: #fff; }
.bg-light  { background: #F5F7FA; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.015em; }
h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.35; }
p  { color: #3a5872; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { color: #1B3A57; margin-bottom: 10px; }
.section-header p { font-size: 1.05rem; color: #5a7a94; max-width: 560px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2A6F97;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.btn-sm { padding: 9px 18px; font-size: 0.88rem; border-radius: 8px; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.w-full  { width: 100%; justify-content: center; }

.btn-primary {
  background: #2A6F97;
  color: #fff;
  border-color: #2A6F97;
}
.btn-primary:hover {
  background: #1d5a7e;
  border-color: #1d5a7e;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(42,111,151,0.3);
}

.btn-green {
  background: #6FBF73;
  color: #fff;
  border-color: #6FBF73;
}
.btn-green:hover {
  background: #58a65c;
  border-color: #58a65c;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(111,191,115,0.35);
}

.btn-outline-dark {
  background: transparent;
  color: #1B3A57;
  border-color: rgba(27,58,87,0.35);
}
.btn-outline-dark:hover {
  background: rgba(27,58,87,0.06);
  border-color: #1B3A57;
  color: #1B3A57;
  text-decoration: none;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #dde7f0;
  box-shadow: 0 1px 8px rgba(27,58,87,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 260px;
}
.logo:hover { text-decoration: none; }

.logo-img {
  height: auto;
  width: auto;
  max-height: 72px;
  max-width: 260px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3a5872;
  text-decoration: none;
  transition: color 0.14s;
}
.header-nav a:hover { color: #2A6F97; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1B3A57;
  text-decoration: none;
}
.header-phone:hover { color: #2A6F97; text-decoration: none; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #1B3A57;
  padding: 4px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(150deg, #dceef8 0%, #eaf3f9 40%, #f0f5f9 100%);
  border-bottom: 1px solid #ccdde9;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

/* decorative soft circle, top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,111,151,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2A6F97;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero-content h1 { color: #1B3A57; margin-bottom: 16px; }

.hero-sub {
  font-size: 1.1rem;
  color: #4a6880;
  max-width: 500px;
  margin-bottom: 32px;
}

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

.hero-note {
  font-size: 0.85rem;
  color: #7a99b0;
}

/* Hero trust card */
.hero-card {
  background: #fff;
  border: 1.5px solid #c8dcea;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(27,58,87,0.13);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2A6F97 0%, #1d5a7e 100%);
  color: #fff;
  padding: 16px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-card-list {
  list-style: none;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #1B3A57;
  font-weight: 500;
  line-height: 1.45;
}
.hero-card-list li .check { flex-shrink: 0; margin-top: 1px; }

.hero-card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #6FBF73;
  border-top: none;
  padding: 18px 22px;
  text-align: center;
  text-decoration: none;
  transition: background 0.14s;
  gap: 3px;
}
.hero-card-cta:hover { background: #58a65c; text-decoration: none; }
.hero-card-cta strong { font-size: 1.3rem; color: #fff; display: block; letter-spacing: -0.01em; }
.hero-card-cta span  { font-size: 0.8rem; color: rgba(255,255,255,0.85); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #dde7f0;
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 44px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2A6F97;
}

.trust-pill svg { color: #6FBF73; }

/* =============================================
   FEATURE CARDS (Why Trust)
   ============================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1.5px solid #dde7f0;
  border-radius: 14px;
  padding: 30px 26px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2A6F97, #6FBF73);
  border-radius: 14px 14px 0 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 28px rgba(27,58,87,0.1);
  border-color: #b8d0e4;
  transform: translateY(-2px);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #EBF3F9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #2A6F97;
}

.feature-card h3 { color: #1B3A57; margin-bottom: 8px; }
.feature-card p  { font-size: 0.92rem; color: #4a6880; line-height: 1.6; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.service-card {
  background: #fff;
  border: 1.5px solid #dde7f0;
  border-radius: 16px;
  padding: 36px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  border-top: 4px solid #2A6F97;
}
.service-card:hover {
  box-shadow: 0 10px 32px rgba(27,58,87,0.11);
  border-top-color: #6FBF73;
  transform: translateY(-3px);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #dceef8 0%, #eaf3f9 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A6F97;
}

.service-card h3 { color: #1B3A57; }
.service-card p  { font-size: 0.93rem; color: #4a6880; flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2A6F97;
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.15s;
}
.service-link:hover { gap: 10px; text-decoration: none; }

/* ---- Service Groups ---- */
.service-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.service-group {
  background: #fff;
  border: 1.5px solid #dde7f0;
  border-top: 4px solid #2A6F97;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-group:hover {
  box-shadow: 0 8px 28px rgba(27,58,87,0.1);
  transform: translateY(-2px);
}

.service-group-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-group-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #dceef8 0%, #eaf3f9 100%);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A6F97;
  flex-shrink: 0;
}

.service-group-header h3 {
  color: #1B3A57;
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.service-group-header p {
  font-size: 0.88rem;
  color: #5a7a94;
  line-height: 1.5;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: #1B3A57;
  font-weight: 500;
}
.service-list li svg { flex-shrink: 0; }
.service-note {
  font-weight: 400;
  color: #7a99b0;
  font-size: 0.85rem;
}

.services-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: #7a99b0;
}

/* ---- Brands ---- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.brand-card {
  background: #fff;
  border: 1.5px solid #dde7f0;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.brand-card:hover {
  border-color: #b8d0e4;
  box-shadow: 0 4px 18px rgba(42,111,151,0.1);
}
.brand-card:hover .brand-logo { opacity: 1; transform: scale(1.04); }

/* Inner wrapper sets the fixed display area */
.brand-logo-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Base logo styles */
.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Per-logo tweaks based on actual dimensions + visual whitespace */

/* pride.png  670×372 — balanced, no adjustment needed */
.logo-pride { max-width: 130px; }

/* invacare.svg — square canvas with oval logo; internal padding makes it look small */
.logo-invacare { height: 44px; max-width: 130px; transform: scale(1.25); }
.brand-card:hover .logo-invacare { transform: scale(1.3); }

/* merits.png — has internal whitespace padding, boost to match visual weight */
.logo-merits { max-width: 120px; transform: scale(1.2); }
.brand-card:hover .logo-merits { transform: scale(1.25); }

/* goldentech.png  615×132 — very flat/wide */
.logo-goldentech { height: 36px; max-width: 150px; }

/* shoprider.png  5780×998 — extremely wide */
.logo-shoprider { height: 36px; max-width: 150px; }

.brands-note {
  text-align: center;
  font-size: 0.9rem;
  color: #7a99b0;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, #1B3A57 0%, #2A6F97 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-band-text strong {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
}
.cta-band-text span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}

/* =============================================
   HOW IT WORKS (Steps)
   ============================================= */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
}

.step {
  flex: 1;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2A6F97;
  color: #2A6F97;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(42,111,151,0.18);
  flex-shrink: 0;
}

.step-body h3 { color: #1B3A57; margin-bottom: 8px; }
.step-body p  { font-size: 0.93rem; color: #4a6880; }

.step-connector {
  flex-shrink: 0;
  padding-top: 14px;
  opacity: 0.5;
}

.steps-cta { text-align: center; }

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 14px; font-size: 0.97rem; }
.about-text .btn { margin-top: 10px; }

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: #F5F7FA;
  border: 1.5px solid #dde7f0;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-icon { margin-bottom: 4px; }
.stat-label { font-size: 1rem; font-weight: 700; color: #1B3A57; }
.stat-desc  { font-size: 0.85rem; color: #5a7a94; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

.contact-phone-card {
  background: #1B3A57;
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.contact-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
}

.contact-phone-card h3 {
  color: #fff;
  font-size: 1.15rem;
}

.big-phone {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.big-phone:hover { color: #6FBF73; text-decoration: none; }

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  margin-top: 4px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.contact-details li svg { flex-shrink: 0; color: rgba(255,255,255,0.5); }
.contact-details a { color: rgba(255,255,255,0.85); }
.contact-details a:hover { color: #6FBF73; }

/* Form */
.contact-form-card {
  background: #fff;
  border: 1.5px solid #dde7f0;
  border-radius: 16px;
  padding: 36px 32px;
}

.contact-form-card h3 { font-size: 1.2rem; color: #1B3A57; margin-bottom: 6px; }
.contact-form-card > p { font-size: 0.92rem; color: #5a7a94; margin-bottom: 24px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1B3A57;
}

.optional { font-weight: 400; color: #8aa4b8; }

.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: #1B3A57;
  background: #F5F7FA;
  border: 1.5px solid #d0dce8;
  border-radius: 9px;
  padding: 11px 14px;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2A6F97;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42,111,151,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a8bfce; }
.form-group textarea { resize: vertical; min-height: 108px; }

/* ---- Email contact card ---- */
.contact-email-card {
  background: #fff;
  border: 1.5px solid #dde7f0;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-email-icon {
  width: 56px;
  height: 56px;
  background: #EBF3F9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A6F97;
  margin: 0 auto;
}

.contact-email-card h3 { font-size: 1.15rem; color: #1B3A57; }
.contact-email-card > p { font-size: 0.92rem; color: #5a7a94; }

.contact-email-address {
  font-size: 0.88rem;
  color: #7a99b0;
  text-align: center;
}

.contact-details-light {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #dde7f0;
  padding-top: 16px;
  margin-top: 4px;
}

.contact-details-light li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: #5a7a94;
}

.contact-details-light li svg { flex-shrink: 0; color: #a8bfce; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #1B3A57;
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}

.footer-links, .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a, .footer-contact-info a, .footer-contact-info span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.footer-links a:hover, .footer-contact-info a:hover { color: #6FBF73; text-decoration: none; }

.footer-bottom {
  padding: 16px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* =============================================
   STICKY MOBILE CALL BAR
   ============================================= */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #6FBF73;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.18);
}

.sticky-bar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

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

/* Tablet */
@media (max-width: 900px) {
  .card-grid      { grid-template-columns: repeat(2, 1fr); }
  .service-groups { grid-template-columns: 1fr; }
  .brands-grid    { grid-template-columns: repeat(3, 1fr); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
  .stat-card { flex: 1; min-width: 200px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 680px) {

  html { font-size: 16px; }
  .section { padding: 60px 0; }

  /* Header */
  .logo-img { max-height: 44px; margin-right: 0; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #dde7f0;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 20px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .header-nav.open { display: flex; }
  .header-nav a { font-size: 1rem; }
  .header-phone { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Hero */
  .hero { padding: 48px 0 60px; }
  .hero::before { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-card { order: -1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Cards */
  .card-grid      { grid-template-columns: 1fr; }
  .service-groups { grid-template-columns: 1fr; }
  .brands-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-logo     { height: 38px; }
  .logo-goldentech, .logo-shoprider { height: 28px; }

  /* Steps */
  .steps-row { flex-direction: column; align-items: center; gap: 8px; }
  .step { max-width: 100%; padding: 0; }
  .step-connector { transform: rotate(90deg); padding: 0; }

  /* CTA Band */
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-text  { align-items: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }

  /* Sticky bar */
  .sticky-bar { display: block; }
  .site-footer { padding-bottom: 64px; }
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid #6FBF73;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
