/* Founder Salahkar v1.7: PDF brand colors
   Green #086040 · Blue #3955B8 · Orange #F85820 · Logo from PDF
   Desktop: original topbar + dark nav  |  Mobile: compact + drawer
   ========================================================================== */

:root {
  --green: #086040;
  --green-mid: #0a734c;
  --green-deep: #054830;
  --blue: #3955b8;
  --blue-deep: #2f46a0;
  --blue-navy: #1a2f7a;
  --orange: #f85820;
  --orange-soft: #ff6d3a;
  --orange-deep: #e04818;
  --ivory: #f4f7f5;
  --paper: #ffffff;
  --ink: #161916;
  --muted: #5a615c;
  --line: rgba(8, 96, 64, 0.14);
  --nav: #111111;
  --font-display: "Outfit", system-ui, sans-serif;
  --font: "Outfit", system-ui, sans-serif;
  --max: 1140px;
  --pad: 16px;
  --touch: 48px;
  --header-h: 64px;
  --bar-h: 64px;
  --radius: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 12px 32px rgba(8, 96, 64, 0.12);

  /* aliases used by older rules */
  --forest: var(--green);
  --forest-mid: var(--green-mid);
  --forest-deep: var(--green-deep);
  --gold: var(--orange);
  --gold-soft: var(--orange-soft);
  --gold-deep: var(--orange-deep);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}

body.nav-open { overflow: hidden; touch-action: none; }

@media (min-width: 900px) {
  body { padding-bottom: 0; font-size: 17px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-mid); text-underline-offset: 0.15em; }
a:hover { color: var(--gold-deep); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

h1 { font-size: 1.65rem; }
h2 { font-size: 1.45rem; }
h3 { font-size: 1.05rem; font-family: var(--font); font-weight: 600; }

@media (min-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
}

p { margin: 0 0 0.9rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 4000;
  background: var(--forest);
  color: #fff;
  padding: 0.75rem 1rem;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: var(--touch);
  padding: 0.75rem 1.1rem;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn--block { width: 100%; }
.btn--block-mobile { width: 100%; }
@media (min-width: 560px) {
  .btn--block-mobile { width: auto; }
}
.btn--pill { border-radius: 999px; }

.btn--orange,
.btn--gold {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--orange:hover,
.btn--gold:hover {
  background: var(--orange-deep);
  color: #fff;
}

.btn--green,
.btn--primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn--green:hover,
.btn--primary:hover {
  background: var(--green-deep);
  color: #fff;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn--ghost-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-dark:hover {
  border-color: var(--orange);
  color: var(--orange-soft);
}

.btn--submit {
  background: var(--green);
  color: #fff;
}
.btn--submit:hover {
  background: var(--orange);
  color: #fff;
}

.btn--sm {
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
}

/* ========== HEADER: desktop topbar + dark nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: #fff;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(8, 96, 64, 0.1);
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  min-height: var(--header-h);
  padding: 0.55rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  margin: 0;
  margin-right: auto;
  flex: 0 1 auto;
  max-width: min(260px, 62vw);
}

.brand--custom .custom-logo-link {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0;
  line-height: 0;
}

.brand-logo,
.brand .custom-logo,
.custom-logo-link img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 900px) {
  .brand { max-width: 280px; }
  .brand-logo,
  .brand .custom-logo,
  .custom-logo-link img {
    height: 50px;
  }
}

.topbar__contact {
  display: none;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  margin-left: 0;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.topbar__link:hover { color: var(--green); }
.topbar__icon { color: var(--green); width: 1rem; height: 1rem; display: inline-flex; }
.topbar__icon--mail { color: var(--orange); }

.topbar__mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: 0;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch);
  height: var(--touch);
  border-radius: 10px;
  color: var(--green);
  text-decoration: none;
  background: var(--ivory);
}
.header-call .fs-icon { width: 1.15rem; height: 1.15rem; }

.nav-toggle {
  width: var(--touch);
  height: var(--touch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

body.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dark navbar: desktop only strip */
.navbar {
  display: none;
  background: var(--nav);
}

.navbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.35rem var(--pad);
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-desktop {
  flex: 1;
  min-width: 0;
}

.navbar__cta {
  display: inline-flex;
  margin-left: auto;
  min-height: 2.35rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.82rem;
  white-space: nowrap;
  background: var(--green) !important;
  border-color: var(--green) !important;
}
.navbar__cta:hover {
  background: var(--green-mid) !important;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(5, 72, 48, 0.55);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.nav-backdrop[hidden] {
  display: none !important;
}

/* Mobile drawer (outside sticky header) */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 360;
  width: min(86vw, 320px);
  height: 100%;
  height: 100dvh;
  background: var(--green-deep);
  transform: translateX(100%);
  transition: transform 0.28s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
}
.site-nav.is-open {
  transform: translateX(0);
}
.site-nav[hidden] {
  display: none !important;
}

.site-nav__panel {
  padding: 18px 18px 28px;
}

.site-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.site-nav__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-soft);
}

.site-nav__close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li > a,
.nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.65rem 0.2rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-list > li > a:hover,
.nav-link:hover { color: var(--orange-soft); }

.nav-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0.4rem 0.75rem;
}
.nav-list .sub-menu a {
  display: block;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-drawer-cta {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.site-nav__email {
  display: block;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-decoration: none;
  word-break: break-all;
}

/* Desktop: classic topbar + black nav */
@media (min-width: 1024px) {
  .topbar__contact { display: flex; }
  .topbar__mobile-actions { display: none; }

  .navbar { display: block; }

  .site-nav,
  .nav-backdrop { display: none !important; }

  .nav-list--desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.1rem;
    width: 100%;
  }

  .nav-list--desktop > li > a,
  .nav-list--desktop .nav-link {
    min-height: auto;
    padding: 0.55rem 0.7rem;
    border-bottom: 0;
    font-size: 0.86rem;
    border-radius: 6px;
  }
  .nav-list--desktop > li > a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .nav-list--desktop > .menu-item-has-children { position: relative; }
  .nav-list--desktop > .menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 0.4rem;
    background: #1c1c1c;
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 40;
  }
  .nav-list--desktop > .menu-item-has-children:hover > .sub-menu,
  .nav-list--desktop > .menu-item-has-children:focus-within > .sub-menu {
    display: block;
  }
  .nav-list--desktop .sub-menu a {
    padding: 0.55rem 0.7rem;
    border-radius: 6px;
  }
  .nav-list--desktop .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--orange-soft);
  }
}

/* ========== ICONS ========== */
.fs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.15em;
  height: 1.15em;
  line-height: 0;
}
.fs-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.fs-icon--btn {
  width: 1.15rem;
  height: 1.15rem;
}

/* ========== HERO ========== */
.hero {
  background:
    radial-gradient(ellipse 70% 55% at 95% 0%, rgba(57, 85, 184, 0.35), transparent 50%),
    linear-gradient(155deg, var(--green-deep) 0%, var(--green) 48%, var(--blue) 130%);
  color: #fff;
  padding: 24px var(--pad) 28px;
}

@media (min-width: 900px) {
  .hero { padding: 48px var(--pad) 56px; }
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.hero__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
  max-width: none;
}

@media (min-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
}
@media (min-width: 900px) {
  .hero h1 { font-size: 2.35rem; max-width: 14ch; }
}

.hero__title-full { display: none; }
.hero__title-short { display: inline; }

@media (min-width: 900px) {
  .hero__title-short { display: none; }
  .hero__title-full { display: inline; }
}

.hero__sub {
  margin: 0 0 1rem;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero__sub { font-size: 1.05rem; }
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.hero__actions .btn {
  min-height: 46px;
  padding: 0.65rem 0.7rem;
  font-size: 0.88rem;
  width: 100%;
}

.hero-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

@media (min-width: 520px) {
  .hero-pills { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.hero-pills li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(196, 162, 101, 0.32);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.hero-pills .fs-icon {
  color: var(--gold-soft);
  width: 1rem;
  height: 1rem;
}

.hero__media {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(196, 162, 101, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  order: -1;
}

@media (min-width: 900px) {
  .hero__media { order: 0; }
}

.hero__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

@media (min-width: 480px) {
  .hero__media img { height: 220px; }
}
@media (min-width: 900px) {
  .hero__media img { height: 360px; }
}

.hero__media-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(252, 251, 249, 0.95);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
}
.hero__media-badge .fs-icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--gold-deep);
}

/* ========== QUOTE FORM ========== */
.quote-section {
  padding: 16px var(--pad) 8px;
  background: var(--ivory);
  scroll-margin-top: calc(var(--header-h) + 8px);
}

@media (min-width: 900px) {
  .quote-section {
    padding: 28px var(--pad) 8px;
    margin-top: 0;
    background: var(--ivory);
  }
  .quote-section__inner { display: block; }
  .quote-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    margin-top: 0;
  }
}

.quote-section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.quote-card {
  background: #fff;
  border: 1px solid rgba(196, 162, 101, 0.28);
  border-radius: var(--radius);
  padding: 18px 16px 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 480px) {
  .quote-card { padding: 22px 20px 24px; }
}

.quote-title {
  margin: 0 0 0.2rem;
  text-align: center;
  color: var(--forest);
  font-size: 1.45rem;
}

.quote-sub {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.lead-form { display: grid; gap: 0.75rem; }

.form-row label {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: var(--touch);
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(10, 61, 46, 0.16);
  border-radius: 10px;
  background: var(--ivory);
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  appearance: none;
}

.form-row textarea { min-height: 88px; resize: vertical; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.2);
}

.form-note {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-alert {
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-alert--success { background: #e7f2ec; color: var(--forest); }
.form-alert--error { background: #fdecea; color: #8a1f11; }

@media (min-width: 640px) {
  .lead-form--contact {
    grid-template-columns: 1fr 1fr;
  }
  .lead-form--contact .form-row--full { grid-column: 1 / -1; }
}

/* ========== TRUST ========== */
.trust-bar {
  background: var(--forest-deep);
  padding: 12px 0;
  overflow: hidden;
}

.trust-bar__track {
  display: flex;
  gap: 0.55rem;
  padding: 0 var(--pad);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-bar__track::-webkit-scrollbar { display: none; }

.trust-bar__track > span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-bar__track .fs-icon {
  width: 0.95rem;
  height: 0.95rem;
  color: #ffd4c4;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}
.trust-bar__track .fs-icon svg {
  stroke: currentColor;
}

@media (min-width: 800px) {
  .trust-bar__track {
    max-width: var(--max);
    margin: 0 auto;
    justify-content: center;
    overflow: visible;
    flex-wrap: wrap;
  }
}

/* ========== SECTIONS ========== */
.section {
  padding: 36px 0;
}
@media (min-width: 900px) {
  .section { padding: 64px 0; }
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section-inner--narrow { max-width: 40rem; }
.content-width { max-width: 44rem; }

.title-accent {
  position: relative;
  display: inline-block;
  color: var(--blue-navy);
  padding-bottom: 0.45rem;
}
.title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.title-accent--center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.title-accent--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-intro { color: var(--muted); }
.section-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}

.about-more { display: none; }
@media (min-width: 700px) {
  .about-more { display: block; }
}

.specialize-label {
  font-weight: 600;
  color: var(--forest);
  margin-top: 1rem;
}

.about-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
  }
}

.about-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft, 0 8px 24px rgba(6, 38, 28, 0.08));
}
.about-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (min-width: 860px) {
  .about-photo img { height: 340px; }
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.check-list li {
  padding: 0.75rem 0.85rem 0.75rem 2rem;
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.92rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.05rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
  border-radius: 1px;
}

/* Services */
.section--services { background: var(--ivory); }

.services-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.15rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  padding: 1.15rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(6, 38, 28, 0.05);
}
.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
}
.service-card h3 {
  color: var(--blue-navy);
  margin-bottom: 0.4rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Resource */
.resource-banner {
  background: linear-gradient(125deg, var(--forest-deep), var(--forest));
  color: #fff;
  padding: 36px var(--pad);
}
.resource-banner__inner { max-width: var(--max); margin: 0 auto; }
.resource-banner h2 { color: #fff; }
.resource-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}

/* Process */
.process-steps {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
@media (min-width: 900px) {
  .process-step { grid-template-columns: 1fr; }
}

.process-step__num {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
}
.process-step h3 { margin-bottom: 0.25rem; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Why */
.why-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
@media (min-width: 640px) {
  .why-list { grid-template-columns: 1fr 1fr; }
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  font-weight: 600;
  font-size: 0.92rem;
}
.why-list li .fs-icon {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--gold-deep);
}

/* FAQ */
.section--faq { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2rem 1rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.accordion__trigger::-webkit-details-marker { display: none; }
.accordion__trigger::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--gold-deep);
  font-weight: 700;
}
.accordion__item[open] .accordion__trigger::after { content: "-"; }
.accordion__panel { padding: 0 0 1rem; color: var(--muted); }
.accordion__panel p { margin: 0; }

/* Inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: #fff;
  padding: 32px var(--pad);
}
.page-hero__inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 { color: #fff; }
.page-hero__lead {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.9rem;
}
.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.content-block { padding: 28px 0 40px; }

.policy-body { padding: 20px 0; }
.policy-toc {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .policy-toc { grid-template-columns: repeat(3, 1fr); }
}
.policy-toc a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.6rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.policy-section {
  margin-bottom: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.policy-section__toggle {
  width: 100%;
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 0;
  background: var(--ivory);
  text-align: left;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest);
  cursor: pointer;
}
.policy-section__icon::before { content: "−"; color: var(--gold-deep); }
.policy-section.is-collapsed .policy-section__icon::before { content: "+"; }
.policy-section__panel { padding: 0.25rem 1rem 1rem; }
.policy-section__panel[hidden] { display: none; }
.incentive { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.incentive:last-child { border-bottom: 0; }
.incentive h3 { color: var(--forest); margin-bottom: 0.25rem; }
.incentive p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.section--cta-close { background: var(--ivory); }
.cta-close { text-align: center; }
.cta-close .btn { width: 100%; max-width: 280px; margin: 0.4rem 0 1rem; }
.disclaimer {
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  text-align: left;
  font-size: 0.82rem;
  color: var(--muted);
}

.services-hub-grid {
  display: grid;
  gap: 0.85rem;
  padding: 24px 0 40px;
}
@media (min-width: 720px) {
  .services-hub-grid { grid-template-columns: 1fr 1fr; }
}
.hub-group {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.hub-group h2 {
  display: inline-block;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.3rem;
}
.hub-links { list-style: none; margin: 0; padding: 0; }
.hub-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.who-for {
  margin-top: 1.1rem;
  padding: 0.9rem;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
}
.service-cta { margin-top: 1.25rem; }
.service-cta .btn { width: 100%; max-width: 260px; }

.service-child-grid {
  list-style: none;
  margin: 0;
  padding: 24px 0 8px;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .service-child-grid { grid-template-columns: 1fr 1fr; }
}
.service-child-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.service-child-card:hover {
  border-color: rgba(8, 96, 64, 0.35);
  box-shadow: 0 8px 22px rgba(6, 38, 28, 0.08);
}
.service-child-card__title {
  font-weight: 700;
  color: var(--forest);
  font-size: 1.05rem;
}
.service-child-card__excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.service-child-card__cta {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}
.service-cta-box {
  margin-top: 1.5rem;
  padding: 1.15rem 1.2rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.service-cta-box h2 {
  margin: 0 0 0.35rem;
  color: var(--forest);
  font-size: 1.15rem;
}
.page-hero--service .eyebrow a,
.page-service-category .eyebrow a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.checklist li {
  position: relative;
  padding-left: 1.35rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
}

.page-contact .section-inner { padding-top: 24px; padding-bottom: 40px; }
.section-inner--split {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 800px) {
  .section-inner--split { grid-template-columns: 0.9fr 1.1fr; }
}
.lead-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(6, 38, 28, 0.06);
}
.contact-details h2 { color: var(--forest); }

/* Contact page: professional layout */
.page-hero--contact .page-hero__lead,
.page-hero--about .page-hero__lead { max-width: 40rem; }

.contact-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.contact-strip__grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .contact-strip__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .contact-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
.contact-strip__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.7rem;
  row-gap: 0.1rem;
  padding: 0.85rem 0.95rem;
  text-decoration: none;
  color: inherit;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
}
a.contact-strip__item:hover {
  border-color: rgba(8, 96, 64, 0.35);
  box-shadow: 0 6px 18px rgba(6, 38, 28, 0.07);
}
.contact-strip__icon {
  grid-row: 1 / span 2;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(8, 96, 64, 0.1);
  color: var(--forest);
  align-self: center;
}
.contact-strip__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-strip__value {
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--ink);
  word-break: break-word;
}

.contact-layout {
  display: grid;
  gap: 1.35rem;
  padding: 28px 0 48px;
}
@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.95fr 1.15fr;
    align-items: start;
  }
}
.contact-aside { display: grid; gap: 1rem; }
.contact-promise {
  padding: 1.15rem 1.2rem;
  background: linear-gradient(160deg, rgba(8, 96, 64, 0.06), rgba(57, 85, 184, 0.05));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-promise h2 {
  margin: 0 0 0.45rem;
  color: var(--forest);
  font-size: 1.2rem;
}
.contact-promise p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-next {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: 0.9rem;
  display: grid;
  gap: 0.4rem;
}
.contact-promise__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.contact-promise__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-cards { display: grid; gap: 0.55rem; }
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.1rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
a.contact-card:hover {
  border-color: rgba(8, 96, 64, 0.35);
  box-shadow: 0 6px 18px rgba(6, 38, 28, 0.08);
}
.contact-card__icon {
  grid-row: 1 / span 2;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(8, 96, 64, 0.1);
  color: var(--forest);
  align-self: center;
}
.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card__value {
  font-size: 0.95rem;
  font-weight: 560;
  color: var(--ink);
  word-break: break-word;
}
.lead-panel--contact {
  padding: 1.25rem 1.2rem 1.35rem;
}
.lead-panel__title {
  margin: 0 0 0.25rem;
  color: var(--forest);
  font-size: 1.25rem;
}
.lead-panel__sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.lead-panel__privacy {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
.lead-panel__privacy a { color: var(--forest); }

/* About page */
.section--muted { background: var(--ivory); }
.about-intro { padding-top: 8px; }
.about-intro__grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 860px) {
  .about-intro__grid { grid-template-columns: 0.95fr 1.05fr; gap: 2rem; }
}
.about-intro__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(6, 38, 28, 0.08);
}
.about-intro__media img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media (min-width: 860px) {
  .about-intro__media img { height: 340px; }
}
.about-pillars {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
@media (min-width: 700px) {
  .about-pillars { grid-template-columns: 1fr 1fr; }
}
.about-pillar {
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.about-pillar__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(57, 85, 184, 0.1);
  color: var(--blue-navy);
  margin-bottom: 0.55rem;
}
.about-pillar h3 {
  margin: 0 0 0.35rem;
  color: var(--forest);
}
.about-pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.about-steps {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: about-step;
}
.about-steps li {
  counter-increment: about-step;
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem 0.95rem 3.4rem;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.about-steps li::before {
  content: counter(about-step);
  position: absolute;
  left: 0.9rem;
  top: 0.95rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-steps strong { color: var(--forest); }
.about-steps span { color: var(--muted); font-size: 0.92rem; }
.about-why {
  list-style: none;
  margin: 1rem auto 0;
  padding: 0;
  max-width: 36rem;
  display: grid;
  gap: 0.55rem;
}
.about-why li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 500;
}
.about-why .fs-icon { color: var(--orange); margin-top: 0.1rem; }
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0.75rem 0 0.5rem;
}
.about-cta-row .btn { width: auto; min-width: 160px; }
.about-office {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Legal pages */
.legal-meta {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.legal-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--forest);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.legal-content section { margin-bottom: 1.6rem; }
.legal-content h2 {
  margin: 0 0 0.55rem;
  color: var(--forest);
  font-size: 1.2rem;
}
.legal-content h3 {
  margin: 0.9rem 0 0.35rem;
  font-size: 1rem;
  color: var(--ink);
}
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.legal-content ul { padding-left: 1.15rem; }
.legal-contact {
  list-style: none;
  margin: 0;
  padding: 0.9rem 1rem;
  background: var(--ivory);
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
}
.legal-contact li { color: var(--ink); margin: 0.2rem 0; }

/* MP Policy page upgrades */
.page-hero--policy .page-hero__lead { max-width: 42rem; }
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}
.policy-highlights {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.policy-stat-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) {
  .policy-stat-row { grid-template-columns: repeat(4, 1fr); }
}
.policy-stat-row li {
  padding: 0.85rem 0.9rem;
  background: linear-gradient(165deg, rgba(8, 96, 64, 0.07), rgba(248, 88, 32, 0.05));
  border: 1px solid var(--line);
  border-radius: 12px;
}
.policy-stat__value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.policy-stat__label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}
.policy-stat-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.section--policy-intro { padding-top: 8px; }
.incentive__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.3rem;
}
.incentive__head h3 { margin: 0; }
.incentive__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--orange);
  background: rgba(248, 88, 32, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}
.policy-help {
  margin: 1.5rem 0 0.5rem;
  padding: 1.25rem 1.15rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.process-steps--policy { margin-top: 0.85rem; }

.post-list {
  display: grid;
  gap: 0.85rem;
  padding: 24px 0 40px;
}
.post-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.post-card__title a { text-decoration: none; color: var(--ink); }
.post-card__meta { color: var(--muted); font-size: 0.84rem; }

/* Footer */
.site-footer {
  background: linear-gradient(165deg, var(--forest-deep), #041611);
  color: #fff;
}

.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px var(--pad) 22px;
}

.footer-brand-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(196, 162, 101, 0.2);
}

.footer-logo {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}
.footer-logo .brand-name__a { color: #9eb0ff; }
.footer-logo .brand-name__b { color: #6dcea0; }

.footer-brand-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: 0.65rem;
  object-fit: contain;
}

.footer-tagline {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.footer-grid {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1.3fr; gap: 1.75rem; }
}

.footer-heading {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 0.2rem; }
.footer-list a,
.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-list a:hover,
.site-footer a:hover { color: var(--gold-soft); }

.footer-contact-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.footer-contact-list li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.footer-contact-list .fs-icon {
  margin-top: 0.15rem;
  color: var(--gold-soft);
  width: 1.05rem;
  height: 1.05rem;
}
.footer-contact-list a {
  color: #fff;
  word-break: break-word;
}

.footer-wa {
  width: 100%;
  max-width: 240px;
}
.btn--sm {
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
}

.footer-mid {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(196, 162, 101, 0.2);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 162, 101, 0.28);
  font-weight: 600;
  font-size: 0.8rem;
}
.footer-badge .fs-icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--gold-soft);
}

.footer-bottom {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  text-align: center;
  padding: 14px var(--pad);
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}
.footer-bottom p { margin: 0; }
.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.75); }

@media (min-width: 760px) {
  .footer-bottom {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    text-align: left;
    align-items: center;
  }
}

/* Bottom action bar: mobile only */
.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 240;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(252, 251, 249, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(6, 38, 28, 0.1);
}
.mobile-action-bar .btn {
  min-height: 44px;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .mobile-action-bar { display: none; }
}

.whatsapp-float {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 230;
  width: 52px;
  height: 52px;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.whatsapp-float .fs-icon {
  width: 1.55rem;
  height: 1.55rem;
}
.whatsapp-float:hover { color: #fff; }
@media (min-width: 900px) {
  .whatsapp-float { display: grid; }
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
