/* ===================================================
   ACT PRO SERVICES — DESIGN SYSTEM
   Navy #0D2040 | Green #5A9716
   Space Grotesk (display) + Inter (body)
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0D2040;
  --navy-light: #17335E;
  --navy-soft: #EAF0F7;
  --green: #5A9716;
  --green-dark: #487C10;
  --green-soft: #EEF6E4;
  --white: #FFFFFF;
  --off-white: #F7F9FB;
  --grey-700: #4A5568;
  --grey-500: #718096;
  --grey-200: #E2E8F0;
  --grey-100: #F1F4F8;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(13,32,64,0.08);
  --shadow-md: 0 8px 24px rgba(13,32,64,0.10);
  --shadow-lg: 0 20px 48px rgba(13,32,64,0.14);

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h1 .hl { color: var(--green); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { color: var(--grey-700); }
.inline-link { color: var(--green-dark); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(90,151,22,0.35); text-underline-offset: 2px; transition: text-decoration-color 0.2s ease; }
.inline-link:hover { text-decoration-color: var(--green-dark); }
.bg-navy .inline-link { color: #A7D66B; text-decoration-color: rgba(167,214,107,0.4); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(90,151,22,0.28);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(90,151,22,0.35); }
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============ HEADER / NAV ============ */
header.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 92px; width: auto; margin: -10px 0; }

nav.main-nav { display: flex; align-items: center; gap: 32px; }
nav.main-nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
nav.main-nav a.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  padding: 8px 2px;
  position: relative;
}
nav.main-nav a.nav-link:hover { color: var(--green-dark); }
nav.main-nav .dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
  min-width: 460px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: all 0.18s ease;
}
.dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 0.87rem; font-weight: 500; color: var(--navy);
}
.dropdown-panel a:hover { background: var(--grey-100); color: var(--green-dark); }
.dropdown-panel .group-label {
  grid-column: 1 / -1;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--grey-500);
  padding: 6px 12px 2px;
}
.dropdown-panel .group-label.green { color: var(--green-dark); }
.dropdown-panel .group-label.navy { color: var(--navy-light); }
.dropdown-panel.single-col { grid-template-columns: 1fr; min-width: 250px; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--navy); display: flex; align-items: center; gap: 6px; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, #1E3A6B 100%);
  color: var(--white);
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; right: -10%; top: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(90,151,22,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
.hero .eyebrow { background: rgba(90,151,22,0.18); color: #A7D66B; }
.hero .eyebrow::before { background: #A7D66B; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p.lead { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 540px; margin-bottom: 32px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-item .ico { width: 34px; height: 34px; border-radius: 50%; background: rgba(90,151,22,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-trust-item span { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 500; }

.hero-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(6px);
}
.hero-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-visual-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}
.hero-visual-card .ico-big { width: 44px; height: 44px; margin: 0 auto 12px; }
.hero-visual-card h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 4px; }
.hero-visual-card p { color: rgba(255,255,255,0.65); font-size: 0.78rem; margin: 0; }

/* ============ SECTIONS ============ */
section { padding: 88px 0; }
section.tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p.sub { font-size: 1.05rem; margin-top: 14px; }

.bg-soft { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.75); }

/* Trust bar */
.trust-bar { background: var(--navy); padding: 34px 0; position: relative; }
.trust-bar-row { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; position: relative; z-index: 1; }
.trust-bar-item { display: flex; align-items: center; gap: 14px; padding: 8px 32px; flex-shrink: 0; }
.trust-bar-icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(90,151,22,0.18); border: 2px solid rgba(167,214,107,0.45);
  display: flex; align-items: center; justify-content: center;
}
.trust-bar-item span { font-size: 0.92rem; font-weight: 600; color: var(--white); white-space: nowrap; }
.trust-bar-divider { width: 1px; height: 34px; background: rgba(255,255,255,0.14); flex-shrink: 0; }

/* Cards grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .ico-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card.green .ico-wrap { background: var(--green-soft); }
.service-card.navy .ico-wrap { background: var(--navy-soft); }
.service-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 14px; }
.service-card a.card-link { font-size: 0.85rem; font-weight: 600; color: var(--green-dark); display: inline-flex; align-items: center; gap: 5px; }
.service-card.navy a.card-link { color: var(--navy-light); }

/* Two-category split (signature element) */
.split-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.split-panel { padding: 44px 40px; position: relative; }
.split-panel.panel-green { background: linear-gradient(160deg, #6BAF1E 0%, var(--green-dark) 100%); color: var(--white); }
.split-panel.panel-navy { background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%); color: var(--white); }
.split-panel .panel-label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; margin-bottom: 10px; }
.split-panel h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.split-panel ul { list-style: none; margin-bottom: 24px; }
.split-panel ul li { padding: 9px 0 9px 26px; position: relative; font-size: 0.93rem; color: rgba(255,255,255,0.88); border-bottom: 1px solid rgba(255,255,255,0.12); }
.split-panel ul li:last-child { border-bottom: none; }
.split-panel ul li::before { content: '✓'; position: absolute; left: 0; top: 9px; font-weight: 700; }

/* How it works / steps */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step-item { text-align: left; }
.step-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--green); opacity: 0.35; margin-bottom: 10px; }
.step-item h4 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.88rem; }

/* Why choose grid */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-item { display: flex; gap: 16px; padding: 24px; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); }
.why-item .ico-wrap { width: 44px; height: 44px; border-radius: 10px; background: var(--green-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item h4 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.88rem; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-200); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 4px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--navy);
}
.faq-q .plus { font-size: 1.4rem; color: var(--green); transition: transform 0.2s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 4px 22px; font-size: 0.93rem; }

/* Service area chips */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip { background: var(--white); border: 1px solid var(--grey-200); padding: 9px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; color: var(--navy); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 20px; padding: 56px 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; font-size: 1.7rem; }
.cta-banner p { color: rgba(255,255,255,0.88); margin: 0; }
.cta-banner .btn-primary { background: var(--white); color: var(--green-dark); box-shadow: none; }
.cta-banner .btn-primary:hover { background: var(--navy); color: var(--white); }

/* Testimonial placeholder */
.testimonial-note {
  border: 1.5px dashed var(--grey-200); border-radius: var(--radius);
  padding: 32px; text-align: center; color: var(--grey-500); font-size: 0.9rem;
}

/* Values grid (about) */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-item { text-align: center; padding: 26px 16px; }
.value-item .ico-wrap { width: 56px; height: 56px; border-radius: 14px; background: var(--green-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-item h4 { font-size: 0.98rem; margin-bottom: 8px; }
.value-item p { font-size: 0.85rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact-info-card { background: var(--navy); color: var(--white); border-radius: 18px; padding: 40px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ico { width: 40px; height: 40px; border-radius: 10px; background: rgba(90,151,22,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.contact-row .value { font-size: 0.95rem; font-weight: 500; }

.form-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: 18px; padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--grey-200); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--navy); background: var(--off-white);
  transition: border-color 0.15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); background: var(--white); }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--grey-500); margin-top: 14px; }
#form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; display: none; }
#form-status.success { color: var(--green-dark); display: block; }
#form-status.error { color: #B4232A; display: block; }

/* ============ FOOTER ============ */
footer.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 58px; width: auto; margin-bottom: 18px; display: block; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; max-width: 280px; }
.footer-col h3 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-socials a:hover { background: var(--green); }

/* Breadcrumb (for inner pages) */
.breadcrumb-bar { background: var(--off-white); padding: 16px 0; border-bottom: 1px solid var(--grey-200); }
.breadcrumb-bar ol { list-style: none; display: flex; gap: 8px; font-size: 0.84rem; color: var(--grey-500); }
.breadcrumb-bar a { color: var(--grey-500); }
.breadcrumb-bar a:hover { color: var(--green-dark); }
.breadcrumb-bar li:last-child { color: var(--navy); font-weight: 500; }

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ============ HERO MEDIA LAYER (admin-controlled background) ============ */
.hero { position: relative; }
.hero > .container { position: relative; z-index: 2; }
.hero-media-layer {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
video.hero-media-layer, img.hero-media-layer { width: 100%; height: 100%; object-fit: cover; }
.hero-media-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(13,32,64,0.86) 0%, rgba(13,32,64,0.72) 100%);
}

/* ============ APPOINTMENT BOOKING SECTION ============ */
.booking-section { background: var(--navy); padding: 88px 0; position: relative; overflow: hidden; }
.booking-section::before {
  content: ''; position: absolute; left: -10%; bottom: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(90,151,22,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.booking-section .section-head { position: relative; z-index: 2; }
.booking-card {
  background: var(--white); border-radius: 18px; padding: 40px;
  max-width: 720px; margin: 0 auto; position: relative; z-index: 2;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-top: 6px; }
.slot-chip {
  padding: 11px 14px; border: 1.5px solid var(--grey-200); border-radius: 8px;
  background: var(--off-white); font-size: 0.85rem; font-weight: 600; color: var(--navy);
  text-align: center; cursor: pointer; transition: all 0.15s ease;
}
.slot-chip:hover { border-color: var(--green); }
.slot-chip.selected { background: var(--green); border-color: var(--green); color: var(--white); }
.slot-chip.unavailable { background: var(--grey-100); color: var(--grey-200); cursor: not-allowed; text-decoration: line-through; }
.booking-empty-note { font-size: 0.85rem; color: var(--grey-500); padding: 14px; background: var(--off-white); border-radius: 8px; text-align: center; }
#booking-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; display: none; }
#booking-status.success { color: var(--green-dark); display: block; }
#booking-status.error { color: #B4232A; display: block; }

/* ============ SITE ANNOUNCEMENT POPUP ============ */
.site-popup-overlay {
  position: fixed; inset: 0; background: rgba(13,32,64,0.6); backdrop-filter: blur(3px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease; padding: 20px;
}
.site-popup-overlay.show { opacity: 1; visibility: visible; }
.site-popup-box {
  background: var(--white); border-radius: 16px; max-width: 420px; width: 100%;
  padding: 38px 32px 32px; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  transform: translateY(20px) scale(0.98); transition: transform 0.3s ease; text-align: center;
}
.site-popup-overlay.show .site-popup-box { transform: translateY(0) scale(1); }
.site-popup-close {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--grey-100); border: none; cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--grey-500); line-height: 1; transition: background 0.15s ease;
}
.site-popup-close:hover { background: var(--grey-200); }
.site-popup-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green-soft);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.site-popup-box p { font-size: 1rem; color: var(--navy); font-weight: 500; line-height: 1.6; margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav.main-nav, .nav-phone { display: none; }
  .mobile-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .split-services { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-row { flex-direction: column; gap: 14px; }
  .trust-bar-divider { display: none; }
  .trust-bar-item { padding: 0; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid.cols-4 { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .cta-banner { padding: 36px 28px; text-align: center; justify-content: center; }
}
