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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

button,
input,
textarea {
  font: inherit;
}

/* ROOT VARIABLES */
:root {
  --primary-dark: #212c42;
  --primary-blue: #374a93;
  --primary-blue-light: #4c62b3;
  --accent-orange: #df922f;
  --accent-orange-light: #e8a94f;
  --neutral-silver: #c0c0c0;
  --background-light: #f7f5f2;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --container-width: 1200px;
  --shadow-soft: 0 18px 50px rgba(33, 44, 66, 0.08);
  --border-soft: 1px solid rgba(33, 44, 66, 0.1);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0;
}

h4 {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
}

a:hover,
a:focus {
  color: var(--primary-blue);
  text-decoration: none;
}

ul {
  padding-left: 1.2rem;
}

/* GLOBAL LAYOUT */
.container {
  width: min(100% - 40px, var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: var(--primary-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li {
  color: var(--text-light);
}

.section-heading {
  margin-bottom: 52px;
  text-align: left;
}

.section-heading.narrow {
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
}

.eyebrow {
  display: block;
  margin-bottom: 0.95rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  text-align: left;
}

.section-heading h2,
.value-section h2,
.why-grid h2,
.contact-grid h2 {
  margin-bottom: 1.25rem;
}

.section-heading > * + *,
.value-grid > div > * + *,
.why-grid > div > * + *,
.contact-grid > div > * + * {
  margin-top: 0.95rem;
}

.section-heading > h2 + p,
.value-grid > div > h2 + p,
.why-grid > div > h2 + p,
.contact-grid > div > h2 + p {
  margin-top: 0;
}

.service-card > * + *,
.pillar-card > * + *,
.pricing-tier > * + *,
.hero-stat-card > * + *,
.checklist-card > * + *,
.contact-form > * + *,
.trust-card > * + *,
.value-highlight > * + * {
  margin-top: 0.95rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 999;
  background: #fff;
  color: var(--primary-dark);
  padding: 10px 14px;
  border-radius: 6px;
}

/* NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  color: var(--primary-dark);
  flex: 0 0 auto;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: 8.8ch;
}

.brand-wordmark {
  display: block;
  width: 100%;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.98;
}

.brand-accent {
  color: var(--accent-orange);
}

.brand-subtitle {
  display: block;
  font-size: 0.75rem;
  line-height: 1.18;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-align: left;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding-left: 0;
}

.site-nav a {
  color: var(--primary-dark);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent-orange);
}

.nav-cta {
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 999px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--accent-orange-light);
  border-color: var(--accent-orange-light);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--primary-blue-light);
  border-color: var(--primary-blue-light);
  color: #ffffff;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  padding: 90px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(223, 146, 47, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, var(--background-light) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hero-content > * + * {
  margin-top: 1.2rem;
}

.hero-tagline {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0;
}

.hero-text {
  max-width: 720px;
  font-size: 1.1rem;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0.25rem 0 0;
}

.hero-points li::marker {
  color: var(--accent-orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-stat-card,
.trust-card,
.service-card,
.pillar-card,
.pricing-tier,
.value-highlight,
.checklist-card,
.contact-form {
  background: #ffffff;
  border: var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.hero-stat-card {
  padding: 26px;
}

.stat-number {
  display: block;
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-orange);
}

/* TRUST */
.trust-strip {
  padding-top: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  padding: 26px 20px;
  text-align: center;
}

.trust-card h2 {
  margin-bottom: 0;
  color: var(--accent-orange);
}

/* CARDS */
.service-card,
.pillar-card {
  padding: 30px;
}

.service-card h3,
.pillar-card h3,
.checklist-card h3,
.contact-form h3,
.pricing-header h3,
.value-highlight h3 {
  margin-bottom: 0;
}

.featured-card {
  border-top: 5px solid var(--accent-orange);
}

.approach-grid .pillar-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.approach-grid .pillar-card h3 {
  color: #ffffff;
}

.approach-grid .pillar-card p {
  color: rgba(255, 255, 255, 0.88);
}

/* VALUE */
.value-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
}

.value-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.value-section h2,
.value-section p {
  color: #ffffff;
  text-align: left;
}

.value-highlight {
  padding: 34px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.value-number {
  display: block;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.pricing-column {
  padding: 28px;
  border-radius: 22px;
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.pricing-column-accent {
  background: var(--accent-orange);
}

.pricing-column h3,
.pricing-column h4,
.pricing-column p,
.pricing-column li,
.pricing-column span {
  color: #ffffff;
}

.pricing-header {
  margin-bottom: 22px;
}

.pricing-header > * + * {
  margin-top: 0.8rem;
}

.pricing-tier {
  padding: 22px;
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.pricing-tier:last-of-type {
  margin-bottom: 10px;
}

.pricing-tier h4,
.pricing-tier span,
.pricing-tier p,
.pricing-tier li {
  color: var(--primary-dark);
}

.pricing-tier-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pricing-tier ul {
  display: grid;
  gap: 8px;
}

.pricing-tier li::marker {
  color: var(--accent-orange);
}

.pricing-note {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* WHY */
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.checklist-card {
  padding: 30px;
}

.checklist-card ul {
  padding-left: 1.25rem;
  display: grid;
  gap: 14px;
}

.checklist-card li::marker {
  color: var(--accent-orange);
}

/* FORMS */
.contact-section {
  background: #ffffff;
}

.contact-form {
  padding: 28px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--primary-dark);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(33, 44, 66, 0.2);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text-dark);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(55, 74, 147, 0.25);
  border-color: var(--primary-blue);
}

.contact-details > * + * {
  margin-top: 0.75rem;
}

/* FOOTER */
.site-footer {
  padding: 42px 0 28px;
  background: var(--primary-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.site-footer p,
.site-footer a {
  color: #ffffff;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--accent-orange-light);
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.footer-description {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-heading {
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  line-height: 1.5;
}

.fineprint {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid,
  .value-grid,
  .why-grid,
  .contact-grid,
  .pricing-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 16px;
  }

  .site-nav ul {
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 18px 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 0 4px;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

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

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 64px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(100% - 28px, var(--container-width));
  }

  .hero-actions,
  .pricing-tier-head {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand-lockup {
    width: 8.2ch;
  }

  .brand-wordmark {
    font-size: 1.7rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .hero-tagline {
    font-size: 2rem;
  }

  .footer-grid {
    gap: 20px;
  }
}


/* v1.5.3 - FOOTER TWO-COLUMN + SOCIAL ICONS */
.footer-grid-two-col {
  grid-template-columns: 1.2fr 0.9fr;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.75rem;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-links-wrap {
  text-align: left;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .footer-right {
    justify-content: flex-start;
  }
}


/* v1.5.4 - SCOPED ZOHO FORM STYLES */
.vt-zoho-form {
                width: 100%;
                max-width: 100% !important;
                margin: 0;
                padding: 28px !important;
                background: #ffffff !important;
                color: var(--text-dark) !important;
              }

              .vt-zoho-form * {
                box-sizing: border-box;
                direction: ltr;
              }

              .vt-zoho-form form {
                width: 100%;
              }

              .vt-zoho-form .zcwf_row {
                margin: 0 0 18px 0;
              }

              .vt-zoho-form .zcwf_row:last-of-type {
                margin-bottom: 0;
              }

              .vt-zoho-form .zcwf_col_lab,
              .vt-zoho-form .zcwf_col_fld {
                float: none;
                width: 100%;
                padding: 0;
                margin: 0;
              }

              .vt-zoho-form .zcwf_col_lab {
                margin-bottom: 8px;
              }

              .vt-zoho-form .zcwf_col_lab label {
                display: block;
                margin: 0;
                font-family: "Inter", sans-serif !important;
                font-size: 1rem !important;
                font-weight: 700;
                color: var(--primary-dark);
                line-height: 1.3;
              }

              .vt-zoho-form .zcwf_col_fld input[type="text"],
              .vt-zoho-form .zcwf_col_fld textarea,
              .vt-zoho-form .zcwf_col_fld select,
              .vt-zoho-form .zcwf_col_fld .zcwf_col_fld_slt {
                width: 100% !important;
                min-height: 52px;
                padding: 14px 16px;
                border: 1px solid rgba(33, 44, 66, 0.2) !important;
                border-radius: 10px;
                background: #ffffff;
                color: var(--text-dark);
                font-family: "Inter", sans-serif !important;
                font-size: 1rem;
                line-height: 1.4;
                box-shadow: none;
                float: none;
                resize: vertical;
              }

              .vt-zoho-form .zcwf_col_fld textarea {
                min-height: 140px;
              }

              .vt-zoho-form .zcwf_col_fld input:focus,
              .vt-zoho-form .zcwf_col_fld textarea:focus,
              .vt-zoho-form .zcwf_col_fld select:focus,
              .vt-zoho-form .zcwf_col_fld .zcwf_col_fld_slt:focus {
                outline: 2px solid rgba(55, 74, 147, 0.25);
                border-color: var(--primary-blue) !important;
              }

              .vt-zoho-form .zcwf_col_help,
              .vt-zoho-form .zcwf_help_icon,
              .vt-zoho-form .zcwf_tooltip_over,
              .vt-zoho-form .zcwf_tooltip_ctn,
              .vt-zoho-form .zcwf_privacy_txt {
                display: none !important;
              }

              .vt-zoho-form .wfrm_fld_dpNn {
                display: none !important;
              }

              .vt-zoho-form .formsubmit,
              .vt-zoho-form .zcwf_button {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-height: 48px;
                padding: 12px 24px;
                border-radius: 6px;
                border: 2px solid transparent;
                font-family: "Inter", sans-serif !important;
                font-size: 1rem !important;
                font-weight: 700;
                cursor: pointer;
                transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
                box-shadow: none !important;
                white-space: nowrap;
                max-width: none;
              }

              .vt-zoho-form .formsubmit.zcwf_button {
                background: var(--accent-orange) !important;
                border-color: var(--accent-orange) !important;
                color: #ffffff !important;
                margin-right: 0;
              }

              .vt-zoho-form .formsubmit.zcwf_button:hover,
              .vt-zoho-form .formsubmit.zcwf_button:focus {
                background: var(--accent-orange-light) !important;
                border-color: var(--accent-orange-light) !important;
                color: #ffffff !important;
                transform: translateY(-1px);
              }

              .vt-zoho-form .form-actions {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                margin-top: 8px;
              }

              @media (max-width: 640px) {
                .vt-zoho-form {
                  padding: 24px !important;
                }

                .vt-zoho-form .formsubmit,
                .vt-zoho-form .zcwf_button {
                  width: 100%;
                }
              }


/* v1.7.1 - HERO REVIEW STRIP + SLIMMER TRUST BAND */
.hero {
  position: relative;
  padding: 120px 0 110px;
  background:
    linear-gradient(rgba(33, 44, 66, 0.58), rgba(33, 44, 66, 0.58)),
    url('/assets/images/handshake.jpg') center center / cover no-repeat;
}

.hero-grid-simple {
  grid-template-columns: 1fr;
  min-height: 420px;
  align-items: center;
}

.hero-content-simple {
  max-width: 720px;
}

.hero-content-simple > * + * {
  margin-top: 1.2rem;
}

.hero .hero-tagline,
.hero .hero-text {
  color: #ffffff;
}

.hero .hero-text {
  max-width: 640px;
}

.review-strip {
  background: #ffffff;
  border-bottom: var(--border-soft);
}

.review-strip-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.review-stars img {
  width: 24px;
  height: 24px;
  display: block;
}

.review-strip-text {
  margin: 0;
  font-weight: 600;
  color: var(--primary-dark);
}

.review-strip-cta {
  flex: 0 0 auto;
}

.trust-strip {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--background-light);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.trust-stat {
  text-align: center;
}

.trust-stat-number {
  display: block;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 0.9rem;
}

.trust-stat p {
  margin: 0;
}

@media (max-width: 1024px) {
  .trust-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-strip-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 96px 0 84px;
  }

  .review-strip-inner {
    gap: 14px;
  }

  .review-stars {
    width: 100%;
    justify-content: center;
  }

  .review-strip-text {
    width: 100%;
    text-align: center;
  }

  .review-strip-cta {
    width: 100%;
  }
}


/* v1.7.3 - COST SECTION THREE-BLOCK REDESIGN */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.impact-block {
  background: #ffffff;
  border: var(--border-soft);
  border-top: 5px solid var(--accent-orange);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 34px 30px;
}

.impact-block h3 {
  margin-bottom: 1rem;
}

.impact-block p {
  margin: 0;
}

@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}


/* v1.7.4 - COST / APPROACH / SERVICES SPACING + IMPACT BAND */
.cost-section,
.approach-section,
.services-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.cost-section .section-heading,
.approach-section .section-heading,
.services-section .section-heading {
  margin-bottom: 64px;
}

.impact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #ffffff;
  border: var(--border-soft);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.impact-band .impact-block {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 40px 36px;
}

.impact-band .impact-block + .impact-block {
  border-left: 1px solid rgba(33, 44, 66, 0.1);
}

.impact-band .impact-block h3 {
  margin-bottom: 1rem;
}

.approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.approach-grid .pillar-card {
  padding: 36px 32px;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.services-grid .service-card {
  padding: 34px 32px;
}

@media (max-width: 1024px) {
  .cost-section,
  .approach-section,
  .services-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .impact-band {
    grid-template-columns: 1fr;
  }

  .impact-band .impact-block + .impact-block {
    border-left: 0;
    border-top: 1px solid rgba(33, 44, 66, 0.1);
  }

  .approach-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .cost-section,
  .approach-section,
  .services-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cost-section .section-heading,
  .approach-section .section-heading,
  .services-section .section-heading {
    margin-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .impact-band .impact-block,
  .approach-grid .pillar-card,
  .services-grid .service-card {
    padding: 30px 24px;
  }
}


/* v1.7.6 - CLEANER SERVICE PANELS */
.services-grid {
  gap: 32px 36px;
}

.services-grid .service-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(33, 44, 66, 0.08);
  border-radius: 16px;
  box-shadow: none;
  padding: 30px 30px 28px;
}

.services-grid .service-card.featured-card {
  border-top: 1px solid rgba(33, 44, 66, 0.08);
}

.services-grid .service-card h3 {
  margin-bottom: 0.85rem;
}

.services-grid .service-card p {
  color: rgba(26, 26, 26, 0.88);
}

@media (max-width: 640px) {
  .services-grid {
    gap: 24px;
  }

  .services-grid .service-card {
    padding: 26px 24px;
  }
}


/* v1.7.12 - ABOUT / TRUST SECTION REBUILD */
.about-section {
  background: var(--background-light);
}

.about-section .section-heading {
  margin-bottom: 36px;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 40px;
  align-items: start;
}

.about-copy {
  padding-top: 0;
}

.about-copy > * + * {
  margin-top: 1rem;
}

.about-figure {
  margin: 0;
  align-self: start;
}

.about-photo {
  width: 100%;
  border-radius: 18px;
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.about-caption {
  margin-top: 14px;
  text-align: center;
  color: var(--primary-dark);
}

.about-caption-name {
  display: block;
  font-weight: 700;
}

.about-caption-title {
  display: block;
  font-size: 0.95rem;
  color: rgba(33, 44, 66, 0.74);
}

/* v1.7.12 - PRIVACY NOTICE BAR */
.privacy-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: rgba(33, 44, 66, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -10px 30px rgba(33, 44, 66, 0.18);
}

.privacy-notice.is-hidden {
  display: none;
}

.privacy-notice-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.privacy-notice-text {
  color: #ffffff;
  max-width: 900px;
}

.privacy-notice-btn {
  flex: 0 0 auto;
}

body.has-privacy-notice {
  padding-bottom: 114px;
}

@media (max-width: 1024px) {
  .about-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .privacy-notice-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-notice-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-section .section-heading {
    margin-bottom: 28px;
  }

  .about-body {
    gap: 22px;
  }

  body.has-privacy-notice {
    padding-bottom: 146px;
  }
}
