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

:root {
  --forest: #1a3a2a;
  --teal: #0d3b3b;
  --copper: #c17f3e;
  --copper-soft: #d29a63;
  --offwhite: #f8f6f1;
  --offwhite-2: #f2efe7;
  --charcoal: #2a2a2a;
  --muted: #5f655f;
  --line: #d8d5cb;
  --white: #ffffff;
  --shadow-soft: 0 20px 45px rgba(14, 26, 20, 0.09);
  --shadow-card: 0 18px 34px rgba(12, 31, 26, 0.12);
  --radius: 18px;
  --radius-xl: 28px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--offwhite);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

body.is-ready {
  opacity: 1;
  transform: translateY(0);
}

body.is-leaving {
  opacity: 0;
  transform: translateY(10px);
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 11vw, 8.5rem) 0;
}

.section-head {
  margin-bottom: clamp(1.8rem, 4vw, 3.2rem);
  max-width: 760px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--copper);
}

.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 9vw, 5.4rem);
  color: #fdfcf8;
}

h2 {
  font-size: clamp(1.8rem, 5.5vw, 3.6rem);
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--forest);
}

h3 {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  color: var(--forest);
}

.lead {
  font-size: clamp(1rem, 2.7vw, 1.24rem);
  color: rgba(253, 250, 242, 0.86);
  max-width: 62ch;
}

.text-muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.86rem 1.35rem;
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #f7f2ea;
  background: linear-gradient(135deg, #bc7740, #9f5f2e);
  box-shadow: 0 12px 25px rgba(157, 91, 46, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(157, 91, 46, 0.42);
}

.btn-light {
  color: #f8f6f1;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.15);
}

.btn-dark {
  color: var(--forest);
  border-color: rgba(26, 58, 42, 0.2);
  background: rgba(255, 255, 255, 0.75);
}

.btn-dark:hover {
  border-color: rgba(26, 58, 42, 0.35);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 33, 29, 0.82);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-badge {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fdfbf7;
  background: linear-gradient(145deg, #204f39, #153628);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand-copy strong {
  display: block;
  color: #ffffff;
  line-height: 1.05;
}

.brand-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-btn {
  justify-self: end;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  font-size: 1.2rem;
}

.site-nav {
  grid-column: 1 / -1;
  display: none;
  padding-bottom: 1rem;
}

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

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-nav a,
.site-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.62rem 0.75rem;
  font-weight: 600;
}

.site-nav summary {
  cursor: pointer;
  list-style: none;
}

.site-nav summary::-webkit-details-marker {
  display: none;
}

.site-nav summary::after {
  content: '▾';
  opacity: 0.85;
  font-size: 0.8rem;
}

.dropdown details {
  position: relative;
}

.dropdown-menu {
  margin-top: 0.35rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.dropdown-menu a {
  border-radius: 0;
  padding: 0.62rem 0.8rem;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-cta {
  margin-top: 0.45rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  background:
    linear-gradient(120deg, rgba(13, 50, 42, 0.92) 10%, rgba(12, 35, 35, 0.78) 60%, rgba(16, 47, 40, 0.96) 100%),
    url('/images/hero-banner.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: auto -12% -26% 44%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(193, 127, 62, 0.26), transparent 68%);
  filter: blur(3px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  padding: clamp(7.2rem, 15vw, 10.2rem) 0 clamp(3.5rem, 9vw, 6rem);
}

.hero-copy p {
  color: rgba(253, 249, 242, 0.87);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-metrics article {
  padding: 0.8rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.hero-metrics span {
  color: rgba(240, 233, 220, 0.88);
  font-size: 0.83rem;
}

.hero-visual {
  position: relative;
}

.product-float {
  max-width: 520px;
  margin-inline: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(160deg, rgba(248, 246, 241, 0.13), rgba(248, 246, 241, 0.02));
  box-shadow: 0 25px 60px rgba(6, 16, 14, 0.35);
  padding: 1rem;
}

.product-float img {
  border-radius: 16px;
  object-fit: contain;
  max-height: 400px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.1));
}

.hero-badge {
  position: absolute;
  right: 0.8rem;
  bottom: -1rem;
  width: 88px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
  padding: 0.45rem;
}

/* Story */
.story-wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.story-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid #e2dfd4;
  box-shadow: var(--shadow-soft);
}

.story-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.3rem, 9vw, 6rem);
  line-height: 1;
  margin-bottom: 0.9rem;
  color: var(--teal);
}

.story-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.story-photo img {
  min-height: 320px;
  object-fit: cover;
}

.story-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Category cards */
.category-grid {
  display: grid;
  gap: 1.1rem;
}

.category-card {
  display: grid;
  gap: 1rem;
  border-radius: 22px;
  border: 1px solid #ddd9cc;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(15, 34, 27, 0.16);
}

.category-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-card .content {
  padding: 0 1rem 1.2rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #1d4d38;
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 1rem;
}

.step-card {
  background: linear-gradient(170deg, #ffffff, #f3f0e8);
  border: 1px solid #ddd9cc;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.step-icon {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(145deg, #255542, #103530);
  margin-bottom: 0.85rem;
}

.step-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

/* Why */
.why {
  background: linear-gradient(135deg, #12372f, #0d2f34 52%, #102c27);
  color: rgba(248, 246, 239, 0.94);
}

.why h2,
.why h3 {
  color: #f8f6f1;
}

.why .section-head p {
  color: rgba(245, 236, 222, 0.85);
}

.why-grid {
  display: grid;
  gap: 1rem;
}

.why-card {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.why-card p {
  color: rgba(248, 246, 239, 0.84);
}

.why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
}

.usa-mark {
  width: 96px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.4rem;
  margin-top: 0.4rem;
}

/* Featured products */
.products-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #dedace;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.product-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.product-body {
  padding: 1rem;
}

.specs {
  margin: 0.8rem 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.specs li {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest);
}

.price-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.buy-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.buy-row .btn {
  flex: 1 1 150px;
}

/* Applications */
.apps-grid {
  display: grid;
  gap: 1rem;
}

.app-card {
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 27, 23, 0.82) 20%, rgba(12, 27, 23, 0.26));
  z-index: 1;
}

.app-card .bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.app-card:hover .bg {
  transform: scale(1.08);
}

.app-card .copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #f6f4ef;
}

.app-card .copy h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.app-card .copy p {
  color: rgba(249, 246, 239, 0.86);
  font-size: 0.92rem;
}

/* Trust */
.trust-wrap {
  display: grid;
  gap: 1rem;
}

.testimonials {
  display: grid;
  gap: 1rem;
}

.testimonial {
  background: #fff;
  border: 1px solid #dfdbce;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.testimonial p {
  font-size: 0.97rem;
}

.testimonial strong {
  display: block;
  color: var(--forest);
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.ceo-card {
  border-radius: 22px;
  border: 1px solid #ddd9cc;
  background: linear-gradient(160deg, #fdfcf9, #f0ece2);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.ceo-card blockquote {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--teal);
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 1.3;
}

.ceo-card .signature {
  margin-top: 1rem;
  color: #44574c;
}

/* Quote form */
.quote-band {
  background: linear-gradient(145deg, #17392f 0%, #0e2f2b 60%, #10261f 100%);
  color: rgba(249, 247, 241, 0.93);
}

.quote-band h2,
.quote-band h3 {
  color: #fff;
}

.quote-layout {
  display: grid;
  gap: 1.1rem;
}

.quote-info {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 1.2rem;
}

.quote-info a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 3px;
}

.quote-form {
  background: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 20px 36px rgba(7, 20, 17, 0.2);
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfc9bc;
  border-radius: 12px;
  font: inherit;
  padding: 0.75rem 0.8rem;
  background: #fff;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form small {
  display: block;
  margin-top: 0.7rem;
  color: #67625a;
  font-size: 0.8rem;
}

/* Footer */
.site-footer {
  background: #0f1e1a;
  color: rgba(238, 236, 230, 0.85);
  padding-top: 3.1rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer-grid h3 {
  color: #fff;
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  color: rgba(238, 236, 230, 0.85);
  margin: 0.24rem 0;
  font-size: 0.94rem;
}

.footer-grid a:hover {
  color: #f5c395;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-20px);
}

.reveal-right {
  transform: translateX(20px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateX(0);
}

/* Breakpoints */
@media (min-width: 700px) {
  .container {
    width: min(var(--max), calc(100% - 3rem));
  }

  .category-grid,
  .steps-grid,
  .products-grid,
  .apps-grid,
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quote-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .site-nav {
    grid-column: auto;
    display: block;
    padding: 0;
    margin-left: auto;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .site-nav a,
  .site-nav summary {
    padding: 0.5rem 0.72rem;
  }

  .site-nav a:hover,
  .site-nav summary:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 230px;
    backdrop-filter: blur(10px);
    background: rgba(17, 51, 46, 0.95);
    box-shadow: var(--shadow-card);
    z-index: 10;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.4rem;
  }

  .hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
    align-items: center;
  }

  .story-wrap,
  .trust-wrap,
  .quote-layout {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid,
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .apps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1320px) {
  .container {
    width: min(var(--max), calc(100% - 6rem));
  }

  .hero {
    background-position: center center;
  }
}

/* Phase 4 subpage system */
:root {
  --bg: var(--offwhite-2);
  --gold: var(--copper);
  --gold-2: #f5c395;
  --navy: var(--forest);
}

.hero.hero-subpage {
  min-height: auto;
  align-items: end;
  background:
    linear-gradient(128deg, rgba(16, 56, 44, 0.9) 8%, rgba(12, 38, 37, 0.86) 58%, rgba(15, 42, 34, 0.94) 100%),
    url('/images/hero-banner.jpg') center/cover no-repeat;
}

.hero.hero-subpage .container {
  padding: clamp(6.2rem, 10vw, 8.2rem) 0 clamp(2.8rem, 6vw, 4.5rem);
}

.hero.hero-subpage h1 {
  font-size: clamp(1.8rem, 6vw, 3.7rem);
  max-width: 16ch;
}

.hero.hero-subpage .lead {
  max-width: 72ch;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--forest);
  font-weight: 600;
}

.hero .breadcrumb,
.hero .breadcrumb a {
  color: rgba(246, 240, 228, 0.9);
}

.hero .breadcrumb a {
  color: var(--gold-2);
}

.section-alt {
  background: var(--offwhite-2);
}

.split {
  display: grid;
  gap: 1.1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.steps,
.steps-grid {
  counter-reset: phaseStep;
}

.step-card,
.form-card,
.quote-card,
.pricing-card,
.cta-card,
.calc-metric,
.form-panel {
  background: linear-gradient(170deg, #ffffff, #f3f0e8);
  border: 1px solid #ddd9cc;
  border-radius: 20px;
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.form-panel {
  padding: 1.2rem;
}

.category-card > h3,
.category-card > p,
.category-card > a,
.category-card > ul,
.category-card > .table-wrap,
.category-card > .map-placeholder,
.product-card > h3,
.product-card > p,
.product-card > a,
.product-card > ul,
.product-card > .table-wrap {
  margin-left: 1rem;
  margin-right: 1rem;
}

.category-card > h3,
.product-card > h3 {
  margin-top: 1rem;
}

.category-card > a,
.product-card > a {
  display: inline-flex;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #1d4d38;
}

.category-card > ul,
.product-card > ul,
.checklist {
  margin: 0.4rem 1rem 1rem;
  padding-left: 1rem;
}

.trust-grid,
.stats-grid,
.pricing-grid {
  display: grid;
  gap: 0.7rem;
}

.trust-grid article {
  padding: 0.8rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-grid strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.trust-grid span {
  color: rgba(240, 233, 220, 0.88);
  font-size: 0.83rem;
}

.stats-band {
  background: linear-gradient(130deg, #17392f, #10322f 64%, #0f2723);
  color: rgba(247, 242, 232, 0.92);
}

.stats-grid article {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stats-grid span {
  display: block;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
}

.stats-grid p {
  margin: 0.5rem 0 0;
  color: rgba(247, 242, 232, 0.88);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #ddd8cc;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.table-wrap table,
.compare-table,
.animal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.table-wrap th,
.table-wrap td,
.compare-table th,
.compare-table td,
.animal-table th,
.animal-table td {
  border-bottom: 1px solid #e7e2d6;
  padding: 0.68rem 0.72rem;
  text-align: left;
  vertical-align: top;
}

.table-wrap thead th,
.compare-table thead th,
.animal-table thead th {
  background: #f6f2e9;
  color: var(--forest);
  font-weight: 700;
}

.compare-us {
  color: #1c4f38;
  font-weight: 700;
}

.form-card label,
.form-panel label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea,
.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  border: 1px solid #cfc9bc;
  border-radius: 12px;
  font: inherit;
  padding: 0.72rem 0.78rem;
  background: #fff;
}

.form-card textarea,
.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 0.7rem;
}

.form-span-2 {
  grid-column: 1 / -1;
}

.map-placeholder {
  border: 1px dashed #c8c1b2;
  border-radius: 14px;
  padding: 1rem;
  background: #fbfaf7;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.timeline li {
  background: #fff;
  border: 1px solid #dfdbce;
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.timeline time {
  display: inline-block;
  margin-bottom: 0.28rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--copper);
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 0.7rem;
}

.faq details {
  border: 1px solid #ddd9cd;
  border-radius: 14px;
  background: #fff;
  padding: 0.8rem 0.9rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--forest);
}

.calc-output {
  margin-top: 1rem;
}

.calc-metric {
  text-align: center;
}

.calc-metric .value {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--forest);
}

.calc-metric .label {
  color: var(--muted);
  font-size: 0.85rem;
}

.calc-result,
.notice,
.foot,
.price-note,
.label {
  color: var(--muted);
}

.wrap {
  width: min(920px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(4.8rem, 10vw, 7rem) 0;
}

@media (min-width: 700px) {
  .split,
  .grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.cols-4,
  .stats-grid,
  .pricing-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid.cols-4,
  .stats-grid,
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
