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

:root {
  --green:        #2D4A27;
  --green-light:  #3d6434;
  --gold:         #F5A800;
  --gold-light:   #ffc233;
}

html { scroll-behavior: smooth; font-size: 90%; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: #1f2937;
  background: linear-gradient(rgba(255,255,255,.30), rgba(255,255,255,.30)), url('images/bg-parchment.jpg') center center / cover fixed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
a.inline-link { color: var(--green); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
img { max-width: 100%; display: block; }

/* ── Layout ────────────────────────────────── */
.container { max-width: 1040px; margin: 0 auto; padding: 0 1.5rem; }

main { flex: 1; }

/* ── Header ────────────────────────────────── */
.header-date { display: flex; align-items: center; justify-content: flex-end; gap: .5rem; font-size: .72rem; color: var(--green); margin-top: 1.25rem; padding-right: 2px; }
.header-contact-link { display: flex; align-items: center; gap: .3rem; color: #6b7280; font-weight: 500; transition: color .15s; }
.header-contact-link:hover { color: var(--green); }
.header-contact-divider { color: #d1d5db; font-size: .65rem; }

header {
  background: #ffffff;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7.35rem;
}

header img.logo { height: 4rem; width: auto; max-width: none; object-fit: contain; margin-top: -6px; margin-right: 1.5rem; }

nav.desktop { display: flex; align-items: center; gap: .25rem; border: 1.5px solid var(--gold); border-radius: .5rem; padding: .375rem .5rem; margin-top: 6px; }

nav a {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: .375rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--green);
  transition: color .15s, background .15s;
}

nav a:hover       { background: var(--green); color: #fff; }
nav a.active      { background: var(--gold); color: var(--green); font-weight: 700; }

/* mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green);
  padding: .5rem;
}

nav.mobile {
  display: none;
  flex-direction: column;
  background: var(--green);
  margin: 0 -1.5rem;
  padding: .5rem 1.5rem 1rem;
  position: relative;
  z-index: 2;
}

nav.mobile a {
  display: block;
  padding: .75rem 1rem;
  border-radius: .375rem;
  margin-bottom: .25rem;
  color: #fff;
  transition: background .15s;
}
nav.mobile a:hover { background: rgba(255,255,255,.08); color: var(--gold); }
.mobile-sub-parent:hover { background: rgba(255,255,255,.08); border-radius: .375rem; }
.mobile-sub-parent:hover .mobile-sub-label { color: var(--gold); }

/* ── Dropdown ──────────────────────────────── */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: .3rem; }
.nav-item .chevron { transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + .75rem);
  right: 0;
  left: auto;
  transform: translateY(-8px);
  background: var(--green);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 .5rem .5rem;
  min-width: fit-content;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .6rem 1.25rem;
  color: #fff;
  font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 0;
  background: none;
}
.dropdown a:last-child { border-bottom: none; border-radius: 0 0 .5rem .5rem; }
.dropdown a:hover { background: rgba(255,255,255,.1); color: var(--gold); }

/* ── Flyout submenu ─────────────────────────── */
.dropdown-parent { position: relative; }
.dropdown-category { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .6rem 1.25rem; color: #fff; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); cursor: default; transition: background .15s, color .15s; }
.dropdown-category:hover { background: rgba(255,255,255,.1); color: var(--gold); }
.dropdown-category svg { flex-shrink: 0; opacity: .75; }
.sub-dropdown { position: absolute; left: 100%; top: -3px; background: var(--green); border-top: 2px solid var(--gold); border-radius: 0 .5rem .5rem .5rem; min-width: fit-content; white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.25); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .15s, visibility 0s .15s; z-index: 101; }
.dropdown-parent:hover .sub-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .15s, visibility 0s; }
.sub-dropdown a { display: block; padding: .6rem 1.25rem; color: #fff; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.sub-dropdown a:last-child { border-bottom: none; border-radius: 0 0 .5rem .5rem; }
.sub-dropdown a:hover { background: rgba(255,255,255,.1); color: var(--gold); }

/* ── Mobile category sub-items ──────────────── */
.mobile-sub-parent { display: flex; align-items: center; justify-content: space-between; padding: .45rem 1rem .45rem 1.5rem; }
.mobile-sub-label { color: #fff; font-size: .875rem; font-weight: 400; }
.mobile-cat-sub { display: none; }
.mobile-cat-sub.open { display: block; }
.mobile-cat-sub a { padding-left: 2.5rem !important; font-size: .82rem; opacity: .9; }

/* Mobile sub-menu */
.mobile-sub {
  display: none;
  flex-direction: column;
  margin: -.25rem .5rem .5rem 1rem;
  padding-left: .75rem;
  border-left: 2px solid var(--gold);
}
.mobile-sub.open { display: flex; }
.mobile-sub a { font-size: .85rem; padding: .45rem .75rem; color: rgba(255,255,255,.8); margin-bottom: 0; }
.mobile-sub a:hover { color: var(--gold); background: none; }
.mobile-parent { display: flex !important; justify-content: space-between; align-items: center; }
.mobile-chevron-btn { background: none; border: none; color: #fff; cursor: pointer; padding: .25rem; display: flex; align-items: center; }
.mobile-chevron-btn .chevron { transition: transform .2s; }

@media (max-width: 767px) {
  nav.desktop    { display: none; }
  .menu-toggle   { display: block; }
  nav.mobile.open { display: flex; }
}

/* ── Footer ────────────────────────────────── */
footer {
  background: var(--green);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 30px,
    rgba(255,255,255,.018) 30px,
    rgba(255,255,255,.018) 60px
  );
  color: #fff;
  padding: 1.75rem 0 0;
  position: relative;
  overflow: hidden;
}


.footer-logo { height: 5.5rem; width: auto; display: block; margin-top: -1.5rem; margin-bottom: .75rem; margin-left: -.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

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

.footer-grid h3 { color: var(--gold); font-size: 1rem; font-weight: 700; margin-bottom: .75rem; }
.footer-grid h3 span { text-decoration: underline; text-underline-offset: 4px; }

.footer-grid p,
.footer-grid a,
.footer-grid li { font-size: .875rem; color: #fff; line-height: 1.7; }

.footer-grid ul { list-style: none; }
.footer-grid > div:nth-child(2) { text-align: center; }
.footer-grid > div:nth-child(2) ul { display: inline-block; text-align: left; }
.footer-grid > div:nth-child(2) li::before { content: '•'; color: var(--gold); margin-right: .4rem; }

.footer-grid a:hover { color: var(--gold); }

.footer-contact li { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .5rem; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  background: #243d1e;
  border-top: 1px solid var(--gold);
  padding: .875rem 0;
  text-align: center;
  font-size: .75rem;
  color: #fff;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-block;
  font-weight: 700;
  padding: .65rem 1.5rem;
  border-radius: .375rem;
  transition: background .2s, color .2s;
  font-size: .9rem;
  cursor: pointer;
  border: none;
}

.btn-gold  { background: var(--gold);  color: var(--green); }
.btn-gold:hover { background: var(--gold-light); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--gold); color: var(--green); }
@media (hover: none) { .btn-green:hover { background: var(--green); color: #fff; } }
.cta-banner .btn-green:hover { background: #fff; color: var(--green); }
.cta-banner .btn-outline-green { background: var(--green); color: #fff; border-color: transparent; }
.cta-banner .btn-outline-green:hover { background: #fff; color: var(--green); border-color: transparent; }
@media (hover: none) { .cta-banner .btn-green:hover, .cta-banner .btn-outline-green:hover { background: var(--green); color: #fff; } }

.btn-outline-green { border: 2px solid var(--green); color: var(--green); background: transparent; }
.btn-outline-green:hover { background: var(--green); color: #fff; }

.btn-outline-white { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.hero-split .btn-gold { background: var(--gold); color: var(--green); border: 2px solid var(--gold); }
.hero-split .hero-btns:hover .btn-gold { background: transparent; color: #fff; border-color: #fff; }
.hero-split .hero-btns .btn-gold:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
.hero-split .btn-outline-white:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
@media (hover: none) { .hero-split .hero-btns:hover .btn-gold { background: var(--gold); color: var(--green); border-color: var(--gold); } }

/* ── Inner Page Hero Split ──────────────────── */
.page-hero-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  height: 24vh;
  min-height: 175px;
  overflow: hidden;
}

.page-hero-text {
  background: var(--green);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 30px,
    rgba(255,255,255,.018) 30px,
    rgba(255,255,255,.018) 60px
  );
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 2rem 0 2.5rem;
}

.page-hero-text h1 {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 .75rem;
  line-height: 1.2;
}

.page-hero-text h1 span { color: var(--gold); }

.page-hero-text p {
  color: #fff;
  font-size: .9rem;
  line-height: 1.75;
  margin: 0;
}

.page-hero-image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

.gold-bar { height: 2px; background: var(--gold); }

/* ── Hero Split ────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.hero-split-text {
  background: var(--green);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 30px,
    rgba(255,255,255,.018) 30px,
    rgba(255,255,255,.018) 60px
  );
  color: #fff;
  display: flex;
  align-items: center;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
}

.hero-split-text h1 {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: heroSlideUp .7s ease both;
  animation-delay: .15s;
}

.hero-split-text h1 span { color: var(--gold); display: block; }

.hero-split-text p {
  color: #fff;
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  animation: heroSlideUp .7s ease both;
  animation-delay: .7s;
}

.hero-split-text .hero-btns {
  animation: heroSlideUp .7s ease both;
  animation-delay: 1.2s;
  width: fit-content;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-split-images {
  position: relative;
  overflow: hidden;
}

.hero-split-images::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,.3);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.hero-prev { left: 1.25rem; }
.hero-next { right: 1.25rem; }

.hero-prev:hover,
.hero-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .6rem;
}

.hero-dot {
  width: .625rem;
  height: .625rem;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  padding: 0;
  transition: background .2s, border-color .2s, transform .2s;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

.section { padding: 1.75rem 0; }
.section-gray { background: #f9fafb; }
.section-green { background: var(--green); color: #fff; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.section-gold  { background: var(--gold); border-top: 1px solid var(--green); border-bottom: 1px solid var(--green); }

.section-title {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: var(--green);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}
.section-green .section-title { color: #fff; }
.section-subtitle { color: #374151; text-align: center; max-width: 38rem; margin: 0 auto 2rem; line-height: 1.75; font-size: .9rem; }

/* ── Cards ─────────────────────────────────── */
.card {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  padding: 1.5rem;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.13); transform: translateY(-4px); }
.card-top-gold  { border-top: 4px solid var(--gold); }
.card-left-gold { border-left: 4px solid var(--gold); }
.card h3 { font-size: .95rem; }
.card.card-top-gold { display: grid; grid-template-columns: 3rem 1fr; column-gap: .875rem; row-gap: .625rem; align-items: start; }
.card.card-top-gold .service-icon, .card.card-top-gold .icon-circle { grid-column: 1; grid-row: 1; margin-bottom: 0; align-self: center; }
.card.card-top-gold h3 { grid-column: 2; grid-row: 1; align-self: center; margin-bottom: 0 !important; }
.card.card-top-gold > p, .card.card-top-gold > ul, .card.card-top-gold > div { grid-column: 1 / -1; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  nav.desktop { gap: .1rem; }
  nav.desktop > a, nav.desktop .nav-item > a { padding: .5rem .6rem; }
  .dropdown a, .dropdown-category, .sub-dropdown a { font-size: .78rem; padding-left: .875rem; padding-right: .875rem; }
}
@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* ── Icon circle ───────────────────────────── */
.icon-circle {
  width: 2.5rem; height: 2.5rem;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

/* ── Check list ────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.check-list li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9rem; color: #4b5563; line-height: 1.5; }
.check-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-grid .check-list li { color: #fff; }

/* ── CTA banner ────────────────────────────── */
.cta-banner { padding: 1rem 0; text-align: center; }
.cta-banner h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.cta-banner p  { font-size: .95rem; margin-bottom: 1rem; opacity: .85; }
.cta-banner .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Forms ─────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--green); }
.form-group label span { color: #ef4444; }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: #1f2937;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,168,0,.2);
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ── Table ─────────────────────────────────── */
.rate-table { background: #fff; border-radius: .75rem; box-shadow: 0 1px 3px rgba(0,0,0,.08); overflow: hidden; }
.rate-table-head { background: var(--green); display: grid; grid-template-columns: 2fr 1fr; padding: .75rem 1.25rem; }
.rate-table-head span { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #fff; }
.rate-table-head span:last-child { text-align: right; }
.rate-row { display: grid; grid-template-columns: 2fr 1fr; padding: 1rem 1.25rem; border-bottom: 1px solid #f3f4f6; align-items: start; }
.rate-row:nth-child(odd) { background: #f9fafb; }
.rate-row:last-child { border-bottom: none; }
.rate-row:hover { background: #fdf0c8; }
.rate-row-name { font-weight: 600; color: var(--green); margin-bottom: .25rem; }
.rate-row-desc { font-size: .8rem; color: #374151; line-height: 1.5; }
.rate-row-price { text-align: right; }
.rate-row-price a { font-size: .875rem; font-weight: 600; color: var(--gold); }
.rate-row-price a:hover { color: var(--gold-light); }

/* ── Responsive layout helpers ──────────────── */
.layout-split    { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.layout-contact  { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: start; }
.layout-services { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.stat-strip      { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; text-align: center; }
.stat-divider    { border-left: 2px solid rgba(0,0,0,.1); padding-left: 3rem; }

/* ── Contact info list ─────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: .75rem; }
.contact-info-item .icon-circle { width: 2rem; height: 2rem; margin: 0; }
.contact-info-item p { font-weight: 600; color: var(--green); margin-bottom: .125rem; font-size: .9rem; }
.contact-info-item a,
.contact-info-item span { font-size: .875rem; color: #374151; word-break: break-word; overflow-wrap: break-word; }
.contact-info-item a:hover { color: var(--gold); }

/* ── FAQ accordion ─────────────────────────── */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: .625rem; }
.faq-item { background: #fff; border-radius: .5rem; box-shadow: 0 1px 3px rgba(0,0,0,.08); overflow: hidden; border-left: 4px solid transparent; transition: border-color .2s; }
.faq-item.open { border-left-color: var(--gold); }
.faq-question { width: 100%; text-align: left; padding: .9rem 1.25rem; background: none; border: none; font-size: .9rem; font-weight: 600; color: var(--green); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: inherit; }
.faq-question:hover { background: #f9fafb; }
.faq-chevron { flex-shrink: 0; color: var(--gold); transition: transform .25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1rem; color: #374151; line-height: 1.75; font-size: .875rem; }
.faq-item.open .faq-answer { display: block; }


/* ── Product page — v2 layout (pb2) ─────────── */
.pb2-hero { background:linear-gradient(135deg,#1a2d17 0%,#2D4A27 55%,#3a5c30 100%),repeating-linear-gradient(135deg,transparent 0,transparent 30px,rgba(255,255,255,.015) 30px,rgba(255,255,255,.015) 60px); height:39vh; min-height:320px; display:flex; align-items:center; overflow:hidden; color:#fff; position:relative; }
.pb2-hero .container { width:100%; }
.pb2-hero-inner { display:grid; grid-template-columns:1fr 300px; gap:3rem; align-items:start; }
.pb2-crumb { font-size:.7rem; color:rgba(255,255,255,.4); letter-spacing:.07em; text-transform:uppercase; margin-bottom:1.25rem; animation:heroSlideUp .5s ease both; animation-delay:.1s; }
.pb2-crumb span { color:var(--gold); font-weight:600; }
.pb2-hero h1, .pb2-hero-title { font-size:clamp(1.4rem,2.8vw,2.4rem); font-weight:800; line-height:1.2; letter-spacing:-.01em; margin-bottom:1.25rem; text-decoration:underline; text-decoration-color:var(--gold); text-decoration-thickness:3px; text-underline-offset:14px; animation:heroSlideUp .7s ease both; animation-delay:.2s; }
.pb2-hero h1 span, .pb2-hero-title span { color:var(--gold); }
.pb2-tagline { font-size:.95rem; color:#fff; line-height:1.75; max-width:44ch; animation:heroSlideUp .7s ease both; animation-delay:.55s; }
.pb2-use-cases { display:flex; flex-wrap:wrap; gap:.5rem .875rem; margin-top:1rem; padding-top:.875rem; border-top:1px solid rgba(255,255,255,.2); }
.pb2-use-cases span { font-size:.75rem; color:rgba(255,255,255,.7); display:flex; align-items:center; gap:.375rem; }
.pb2-use-cases span::before { content:''; width:.45rem; height:.45rem; border-radius:50%; background:var(--gold); flex-shrink:0; }
.pb2-panel { background:rgba(0,0,0,.28); border:1px solid rgba(245,168,0,.28); border-radius:.875rem; padding:1.5rem; animation:slideInRight .7s ease both; animation-delay:.45s; }
.pb2-panel-item { padding:.75rem 0; border-bottom:1px solid rgba(255,255,255,.09); }
.pb2-panel-item:first-child { padding-top:0; }
.pb2-panel-item:last-child { border-bottom:none; padding-bottom:0; }
.pb2-panel-label { font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--gold); margin-bottom:.3rem; }
.pb2-panel-value { font-size:.95rem; font-weight:600; color:#fff; text-transform:capitalize; }
.pb2-overview { padding:3rem 0; background:#fff; }
.pb2-overview-inner { display:grid; grid-template-columns:1fr 310px; gap:3rem; align-items:start; }
.pb2-overview h2, .pb2-overview h1 { font-size:1.45rem; font-weight:800; color:var(--green); letter-spacing:-.01em; line-height:1.4; margin-bottom:.625rem; text-decoration:underline; text-decoration-color:var(--gold); text-decoration-thickness:3px; text-underline-offset:8px; }
.pb2-overview p { color:#374151; line-height:1.8; margin-bottom:1rem; font-size:.9375rem; }
.pb2-overview p:last-child { margin-bottom:0; }
.pb2-glance { background:var(--green); background-image:repeating-linear-gradient(135deg,transparent 0,transparent 30px,rgba(255,255,255,.018) 30px,rgba(255,255,255,.018) 60px); border-radius:.875rem; padding:1.5rem; position:sticky; top:6rem; }
.pb2-glance-title { font-size:.65rem; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:.12em; margin-bottom:1.25rem; padding-bottom:.625rem; border-bottom:1px solid rgba(245,168,0,.3); }
.pb2-glance-row { display:flex; justify-content:space-between; align-items:baseline; padding:.6rem 0; border-bottom:1px solid rgba(255,255,255,.08); font-size:.85rem; }
.pb2-glance-row:last-of-type { border-bottom:none; }
.pb2-glance-key { color:rgba(255,255,255,.6); }
.pb2-glance-val { color:#fff; font-weight:600; text-align:right; }
.pb2-glance-cta { margin-top:1.25rem; display:flex; flex-direction:column; gap:.5rem; }
.pb2-glance-cta .btn { display:block; text-align:center; }
.pb2-included .section-title, .pb2-steps .section-title, .pb2-included ~ .section-green .section-title { text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 3px; }
.pb2-included { padding:1.25rem 0; background:#f9fafb; }
.pb2-inc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:#e5e7eb; border:1px solid #e5e7eb; border-radius:.875rem; overflow:hidden; margin-top:2rem; }
.pb2-inc-item { background:#fff; padding:1.25rem 1.5rem; display:flex; align-items:flex-start; gap:.875rem; transition:background .2s; }
.pb2-inc-item:hover { background:#fafafa; }
.pb2-inc-icon { width:2rem; height:2rem; background:var(--green); border-radius:.375rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:.1rem; }
.pb2-inc-text h4 { font-size:.875rem; font-weight:700; color:var(--green); margin-bottom:.2rem; }
.pb2-inc-text p { font-size:.8rem; color:#374151; line-height:1.5; margin:0; }
.pb2-steps { padding:0 0 1.25rem; background:#fff; }
.pb2-steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:2rem; }
.pb2-step { position:relative; padding:1.75rem 1.5rem 1.5rem; border-radius:.75rem; border:1px solid #e5e7eb; overflow:hidden; }
.pb2-step::before { content:''; position:absolute; top:0; left:0; width:4px; height:100%; background:var(--gold); }
.pb2-step-ghost { position:absolute; top:-.75rem; right:-.25rem; font-size:7rem; font-weight:900; color:var(--green); opacity:.13; line-height:1; pointer-events:none; user-select:none; }
.pb2-step-num { width:2.5rem; height:2.5rem; border-radius:50%; background:var(--gold); color:var(--green); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1rem; margin-bottom:1rem; flex-shrink:0; }
.pb2-step h4 { font-size:.95rem; font-weight:700; color:var(--green); margin-bottom:.5rem; }
.pb2-step p { font-size:.85rem; color:#374151; line-height:1.65; margin:0; }
.pb2-var { padding:2.5rem 0; background:#f9fafb; }
.pb2-var-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:1.75rem; }
.pb2-var-box { background:#fff; border-radius:.75rem; padding:1.5rem; border-top:4px solid var(--gold); box-shadow:0 1px 3px rgba(0,0,0,.08); }
.pb2-var-head { display:flex; align-items:center; gap:.625rem; margin-bottom:1rem; }
.pb2-var-head svg { color:var(--gold); flex-shrink:0; }
.pb2-var-head h3 { font-size:.8rem; font-weight:700; color:var(--green); text-transform:uppercase; letter-spacing:.07em; margin:0; }
.pb2-pills { display:grid; grid-template-columns:1fr 1fr; gap:.3rem .75rem; margin-top:.25rem; }
.pb2-pill { font-size:.85rem; font-weight:500; color:#374151; line-height:1.5; padding-left:1.1rem; position:relative; }
.pb2-pill::before { content:'•'; position:absolute; left:0; color:var(--gold); font-weight:700; }
@media (max-width:900px) {
  .pb2-hero { height:auto; min-height:unset; padding:2rem 0; }
  .pb2-hero-inner { grid-template-columns:1fr; }
  .pb2-panel { display:none; }
  .pb2-overview-inner { grid-template-columns:1fr; }
  .pb2-glance { position:static; }
  .pb2-inc-grid { grid-template-columns:repeat(2,1fr); }
  .pb2-steps-grid { grid-template-columns:1fr; gap:1.25rem; }
  .pb2-var-grid { grid-template-columns:1fr; }
}
@media (max-width:767px) {
  .pb2-hero { height:auto; min-height:unset; padding:1.75rem 0; }
  .pb2-panel { display:none; }
  .pb2-hero h1, .pb2-hero-title { font-size:1.4rem; line-height:1.4; text-underline-offset:8px; }
  .pb2-tagline { font-size:.875rem; line-height:1.65; }
  .pb2-crumb { margin-bottom:.75rem; }
  .pb2-overview { padding:1.25rem 0; }
  .pb2-overview h2 { font-size:1.2rem; }
  .pb2-inc-grid { margin-top:1rem; }
  .pb2-steps-grid { margin-top:1rem; }
  .pb2-var { padding:1.25rem 0; }
  .pb2-var-grid { margin-top:1rem; }
  .pb2-glance-cta { flex-direction:row; flex-wrap:wrap; }
  .pb2-glance-cta .btn { flex:1; min-width:140px; }
}
@media (max-width:640px) {
  .pb2-inc-grid { grid-template-columns:1fr; }
  .pb2-inc-item { padding:1rem; }
  .pb2-step { padding:1.25rem 1rem 1rem; }
  .pb2-var-box { padding:1.25rem; }
}
/* ── Service cards ─────────────────────────── */
.service-icon { width: 3rem; height: 3rem; background: var(--green); border-radius: .625rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: .875rem; }

/* ── Download cards ────────────────────────── */
.download-card { background: #fff; border-radius: .75rem; box-shadow: 0 1px 3px rgba(0,0,0,.08); padding: 1.5rem; display: grid; grid-template-columns: 2.5rem 1fr; column-gap: .75rem; row-gap: .625rem; align-items: start; border-top: 4px solid var(--gold); transition: box-shadow .25s, transform .25s; }
.download-card .download-icon { grid-column: 1; grid-row: 1; align-self: center; }
.download-card h3 { grid-column: 2; grid-row: 1; align-self: center; }
.download-card > p, .download-card > a { grid-column: 1 / -1; }
.download-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.13); transform: translateY(-4px); }
.download-icon { width: 2.5rem; height: 2.5rem; background: var(--green); border-radius: .5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.download-card h3 { font-size: 1rem; font-weight: 700; color: var(--green); }
.download-card p { font-size: .875rem; color: #374151; line-height: 1.65; flex: 1; }

/* ── Link cards ────────────────────────────── */
.link-card { background: #fff; border-radius: .75rem; box-shadow: 0 1px 3px rgba(0,0,0,.08); padding: 1.25rem; display: flex; align-items: flex-start; gap: .75rem; transition: box-shadow .25s, transform .25s; }
.link-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.12); transform: translateY(-3px); }
.link-card-icon { width: 2rem; height: 2rem; background: var(--green); border-radius: .375rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.link-card-body h3 { font-size: .95rem; font-weight: 700; color: var(--green); margin-bottom: .25rem; }
.link-card-body p { font-size: .825rem; color: #374151; line-height: 1.6; }
.link-card-body a { font-size: .825rem; font-weight: 600; color: var(--gold); }
.link-card-body a:hover { color: var(--gold-light); }

/* ── Card button row (employment position cards) ── */
.card-btn-row { display: flex; gap: .75rem; justify-content: flex-end; margin-top: .75rem; }
@media (max-width: 640px) { .card-btn-row { flex-direction: column; } .card-btn-row .btn { width: 100%; text-align: center; } }

/* ── Mobile optimizations ──────────────────── */
@media (max-width: 767px) {

  /* Header */
  .header-inner { height: 5rem; }
  header img.logo { height: 3.5rem; margin-top: 0; }

  .header-date { display: none; }

  /* Home hero split — stack vertically on mobile */
  .hero-split { grid-template-columns: 1fr; height: auto; min-height: unset; overflow: visible; }
  .hero-split-text { padding: 2rem 1.5rem; }
  .hero-split-text h1 { font-size: 1.5rem; }
  .hero-split-images { height: 30vh; min-height: 180px; }
  .hero-prev, .hero-next { display: none; }
  .hero-dot { width: .875rem; height: .875rem; }
  .hero-dots { bottom: 1rem; gap: .75rem; }

  /* Inner page hero split — stack vertically on mobile */
  .page-hero-split { grid-template-columns: 1fr; height: auto; min-height: unset; }
  .page-hero-text { padding: 1.75rem 1.5rem; }
  .page-hero-text h1 { font-size: 1.4rem; }
  .page-hero-text p { font-size: .85rem; }
  .page-hero-image { height: 32vh; min-height: 180px; }

  /* Sections */
  .section { padding: 1.25rem 0; }
  .cta-banner { padding: 1.25rem 0; }
  .cta-banner h2 { font-size: 1.25rem; }
  .section-subtitle { margin-bottom: 1.75rem; font-size: .85rem; }

  /* Responsive layout helpers → single column */
  .layout-split   { grid-template-columns: 1fr; gap: 2rem; }
  .layout-contact { grid-template-columns: 1fr; gap: 2rem; }
  .layout-services { grid-template-columns: 1fr; }

  /* grid-2 collapses earlier */
  .grid-2 { grid-template-columns: 1fr; }

  /* Stat strip — stack vertically, remove side borders */
  .stat-strip { gap: 1.25rem; flex-direction: column; align-items: center; }
  .stat-divider { border-left: none; padding-left: 0; border-top: 1px solid rgba(0,0,0,.15); padding-top: 1.25rem; width: 100%; }

  /* Cards — disable lift on touch devices */
  .card:hover          { transform: none; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
  .link-card:hover     { transform: none; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
  .download-card:hover { transform: none; box-shadow: 0 1px 3px rgba(0,0,0,.08); }

  /* Service card icon+title grid — tighten on mobile */
  .card.card-top-gold { column-gap: .625rem; row-gap: .625rem; }
  .card.card-top-gold .service-icon, .card.card-top-gold .icon-circle { width: 2.5rem; height: 2.5rem; }

  /* Buttons — stretch in rows */
  .btn-row { flex-direction: column; align-items: center; }
  .btn-row .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Rate table — stack price below description */
  .rate-row { grid-template-columns: 1fr; }
  .rate-row-price { text-align: left; margin-top: .5rem; }

  /* Footer */
  .footer-logo { margin-top: 0; margin-left: 0; }
  .footer-grid > div:nth-child(2) { text-align: left; }
  .footer-grid > div:nth-child(2) ul { display: block; }
}

@media (max-width: 480px) {
  .header-inner { height: 4.5rem; }
  header img.logo { height: 3rem; }
  .card { padding: 1.25rem; }
  .container { padding: 0 1rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }
  .hero-split-text h1 { font-size: 1.3rem; }
  .hero-split-text p { font-size: .82rem; }
  .page-hero-text h1 { font-size: 1.2rem; }
  .page-hero-text p { font-size: .82rem; }
  .page-hero-image { height: 26vh; min-height: 160px; }
}
