/* ============================================================
   Wolds Digital Ltd — Main Stylesheet
   Brand: Navy #1d3557 · Green #7ab542
   ============================================================ */

/* === CSS Variables === */
:root {
  --navy:        #1d3557;
  --navy-deep:   #142745;
  --navy-light:  #2a4a73;
  --green:       #7ab542;
  --green-soft:  #a3d06a;
  --green-dark:  #5e8f30;
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-soft:     #f5f7fb;
  --bg-alt:      #eef1f7;
  --text:        #1a2e4a;
  --text-light:  #5a6b86;
  --border:      rgba(29,53,87,0.12);
  --shadow-sm:   0 2px 8px rgba(29,53,87,0.08);
  --shadow:      0 8px 32px rgba(29,53,87,0.12);
  --shadow-lg:   0 20px 60px rgba(29,53,87,0.18);
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.2s ease;
  --nav-height:  72px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* === Typography === */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-light); line-height: 1.75; }
.accent { color: var(--green); }
strong { font-weight: 700; }

/* Accessibility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }

/* === Layout === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--green); color: #fff; box-shadow: 0 4px 20px rgba(122,181,66,0.3); }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 8px 28px rgba(122,181,66,0.4); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }

.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--bg-soft); }

.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--bg-soft); color: var(--navy-deep); }

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(29,53,87,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bg-soft);
  padding: 4px;
  object-fit: contain;
}
.nav-logo-text { font-weight: 800; font-size: 1.05rem; color: var(--navy); letter-spacing: -0.01em; }
.nav-logo-text span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--bg-soft); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu open state */
.nav-menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Breadcrumb === */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb ol { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem 0; }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li + li::before { content: '›'; color: var(--text-light); opacity: 0.5; margin-right: 0.25rem; }
.breadcrumb a { color: var(--navy); font-weight: 600; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb [aria-current] { color: var(--text-light); }

/* === Section Labels === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-header { max-width: 58ch; margin-bottom: 3rem; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* === Hero (Home) === */
.hero {
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(122,181,66,0.08) 0%, transparent 65%),
    linear-gradient(180deg, #f8fbf5 0%, #ffffff 60%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(29,53,87,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(29,53,87,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
  max-width: 820px;
  margin: 0 auto;
}
.hero-content { width: 100%; }
.hero h1 { color: var(--navy); margin-bottom: 1.5rem; }
.hero .lead { color: var(--text-light); margin-bottom: 2.5rem; max-width: 60ch; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; justify-content: center; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 0.3rem 1.25rem;
  border-right: 1px solid var(--border);
}
.hero-trust-item:last-child { border-right: none; }
.hero-trust-item svg { color: var(--green); width: 15px; height: 15px; flex-shrink: 0; }

/* hide the old ring visual — hero is now centered */
.hero-visual { display: none; }
.hero-logo-ring,
.hero-logo-inner,
.hero-badge { display: none; }

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-logo-ring::before { animation: none; } }

/* === Page Hero (inner pages) === */
.page-hero {
  background: var(--navy);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(122,181,66,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(122,181,66,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.72); max-width: 58ch; margin: 0 auto; }

/* === Service Cards (overview) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(122,181,66,0.25); }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(122,181,66,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.service-card p { color: var(--text-light); font-size: 0.94rem; margin-bottom: 1.25rem; }
.card-link {
  color: var(--green);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.55rem; }
.card-link svg { width: 14px; height: 14px; }

/* === Features / USP === */
.features-section { background: var(--bg-soft); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}
.feature-card { text-align: center; }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--green);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-card p { color: var(--text-light); font-size: 0.92rem; }

/* === Stats === */
.stats-section { background: var(--navy-deep); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}
.stat-label { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* === Local Section === */
.local-section { background: var(--bg-soft); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.local-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.local-panel::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(122,181,66,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.local-panel h3 { color: #fff; font-size: 1.4rem; margin-bottom: 0.75rem; }
.local-panel p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 1.5rem; }
.location-list { display: flex; flex-direction: column; gap: 0; }
.location-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}
.location-list li:last-child { border-bottom: none; }
.location-list svg { color: var(--green); width: 14px; height: 14px; flex-shrink: 0; }

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: #f59e0b; }
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-quote { color: var(--text); font-size: 0.95rem; font-style: italic; flex: 1; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; line-height: 1.2; }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* === CTA Banner === */
.cta-section {
  background: var(--green);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 90% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 54ch; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === Process Steps === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step-counter;
}
.step {
  padding: 1.75rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.step h4 { margin-bottom: 0.4rem; }
.step p { color: var(--text-light); font-size: 0.9rem; }

/* === Services Detail Page === */
.service-detail {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-grid.reverse .service-detail-panel { order: -1; }

.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content .lead { margin-bottom: 1.5rem; }
.check-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}
.check-list svg { color: var(--green); width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

.service-detail-panel {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.panel-icon {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--green);
}
.panel-icon svg { width: 40px; height: 40px; }
.panel-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.panel-tag {
  background: rgba(122,181,66,0.1);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(122,181,66,0.2);
}

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info .lead { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(122,181,66,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; margin-bottom: 0.25rem; }
.contact-detail-value { font-weight: 600; color: var(--text); font-size: 0.97rem; }
.contact-detail-value a { color: var(--navy); transition: color var(--transition); }
.contact-detail-value a:hover { color: var(--green); }

/* Form */
.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-card h3 { margin-bottom: 1.5rem; }
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.form-required { color: var(--green); }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 0.97rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(122,181,66,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6b86' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-hint { font-size: 0.8rem; color: var(--text-light); }
.form-privacy { font-size: 0.82rem; color: var(--text-light); margin-top: 0.5rem; }
.form-privacy a { color: var(--navy); font-weight: 600; }

.form-submit[aria-busy="true"] { opacity: 0.65; cursor: not-allowed; pointer-events: none; }
.form-submit[aria-busy="true"]::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-slow 0.7s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.form-inline-error {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #b91c1c;
}
.form-inline-error svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }

.form-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1rem;
  gap: 1rem;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(122,181,66,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
}
.form-success-icon svg { width: 28px; height: 28px; }
.form-success-msg h4 { color: var(--navy); margin-bottom: 0.25rem; }
.form-success-msg p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* === About Page === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 200px; height: 200px;
  background: rgba(122,181,66,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.about-visual img {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  position: relative;
  object-fit: contain;
}
.about-visual-tagline { color: rgba(255,255,255,0.72); font-size: 0.95rem; position: relative; }
.about-visual-tagline strong { color: #fff; display: block; font-size: 1.15rem; margin-bottom: 0.25rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.value-icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1rem;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.value-card p { color: var(--text-light); font-size: 0.9rem; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 1px; max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
  width: 100%;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-soft); }
.faq-chevron { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: var(--bg-soft);
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* === Footer === */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: clamp(3rem, 6vw, 5rem) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo img { width: 38px; height: 38px; border-radius: 8px; background: #fff; padding: 5px; object-fit: contain; }
.footer-logo-text { font-weight: 800; font-size: 1rem; color: #fff; }
.footer-logo-text span { color: var(--green); }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--green); color: #fff; }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--green); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--green); }

/* === Prose (legal / long-form content) === */
.prose {
  max-width: 72ch;
}
.prose h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.prose p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.prose ul, .prose ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}
.prose li { margin-bottom: 0.3rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--green-dark); }
.prose strong { color: var(--text); }
.prose .last-updated {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 2rem;
}

/* === Utilities === */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.bg-soft { background: var(--bg-soft); }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* === Pill / Badge === */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  background: rgba(122,181,66,0.1);
  border: 1px solid rgba(122,181,66,0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(122,181,66,0.5);
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(122,181,66,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(122,181,66,0); }
  100% { box-shadow: 0 0 0 0 rgba(122,181,66,0); }
}
@media (prefers-reduced-motion: reduce) { .pill .dot { animation: none; } }

/* === Responsive === */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse .service-detail-panel { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu-open .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
