/* ===================================================================
   AJ PALLETS — Stylesheet v2
   Single warm brown · brighter sage green · premium, calm, local
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Single warm brown family */
  --brown: #3a2518;
  --brown-deep: #2d1b10;
  --brown-soft: rgba(58, 37, 24, 0.92);

  /* Cream family */
  --cream: #faf6ee;
  --cream-warm: #f4ead8;
  --cream-deeper: #ede0c9;

  /* Sage green — vibrant, fresh, lively */
  --sage: #9bc24a;
  --sage-bright: #aed163;
  --sage-deep: #7da838;
  --sage-soft: rgba(155, 194, 74, 0.12);

  /* Text */
  --text-dark: #2d1b10;
  --text-body: #5a4636;
  --text-muted: #87715f;
  --border: #e8dcc4;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --container: 1180px;
  --gutter: 1.5rem;
  --section-y: clamp(4rem, 7.5vw, 6.5rem);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(45, 27, 16, 0.05);
  --shadow-md: 0 4px 16px rgba(45, 27, 16, 0.08);
  --shadow-lg: 0 14px 40px rgba(45, 27, 16, 0.14);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brown-deep);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--text-body); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
  display: inline-block;
}
.italic-accent { font-style: italic; color: var(--sage-deep); font-weight: 500; }

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-y) 0; }
.section-cream { background: var(--cream); }
.section-warm { background: var(--cream-warm); }
.section-dark {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at top right, rgba(155, 194, 74, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(155, 194, 74, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.section-dark > * { position: relative; z-index: 1; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(250, 246, 238, 0.78); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(232, 220, 196, 0.7);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(45, 27, 16, 0.06);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.nav-brand img { height: 64px; width: auto; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
  margin-right: auto;
  margin-left: 1.5rem;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--sage-deep); }
.nav-phone a { font-weight: 500; color: var(--brown); }
.nav-phone a:hover { color: var(--sage-deep); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--sage-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--sage-deep); font-weight: 600; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: var(--transition);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 14px rgba(155, 194, 74, 0.3);
}
.btn-primary:hover {
  background: var(--sage-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(155, 194, 74, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250, 246, 238, 0.4);
}
.btn-outline:hover {
  background: rgba(250, 246, 238, 0.1);
  border-color: var(--cream);
}
.btn-dark {
  background: var(--brown);
  color: var(--cream);
}
.btn-dark:hover { background: var(--brown-deep); transform: translateY(-1px); }
.btn-large { padding: 1.05rem 2.25rem; font-size: 1rem; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 540px;
  background:
    linear-gradient(135deg, rgba(45, 27, 16, 0.88) 0%, rgba(58, 37, 24, 0.78) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(155, 194, 74, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(155, 194, 74, 0.08) 0%, transparent 50%),
    var(--brown-deep);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(250, 246, 238, 0.012) 6px 7px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: rgba(155, 194, 74, 0.18);
  border: 1px solid rgba(155, 194, 74, 0.4);
  color: var(--sage-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--cream); margin-bottom: 1.25rem; }
.hero h1 .accent {
  color: var(--sage-bright);
  font-style: italic;
  font-weight: 500;
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(250, 246, 238, 0.88);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.65;
}
.hero-meta {
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.6);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-meta::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage);
  display: inline-block;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat {
  background: rgba(250, 246, 238, 0.05);
  border: 1px solid rgba(250, 246, 238, 0.12);
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.stat:hover {
  background: rgba(250, 246, 238, 0.08);
  border-color: rgba(155, 194, 74, 0.4);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-bright);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.78);
  letter-spacing: 0.04em;
}

/* ============ Page Banner ============ */
.page-banner {
  background:
    linear-gradient(135deg, rgba(45, 27, 16, 0.92) 0%, rgba(58, 37, 24, 0.85) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(155, 194, 74, 0.15) 0%, transparent 50%),
    var(--brown-deep);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--sage);
}
.page-banner h1 {
  color: var(--cream);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.page-banner h1 .accent {
  color: var(--sage-bright);
  font-style: italic;
  font-weight: 500;
}
.page-banner p {
  color: rgba(250, 246, 238, 0.82);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ============ Section Heading ============ */
.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading h2 { margin-bottom: 1rem; }
.section-heading p { font-size: 1.05rem; line-height: 1.65; }

/* ============ Service Cards ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .service-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sage-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--sage-deep);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--brown-deep);
}
.service-card p { font-size: 0.93rem; line-height: 1.6; }

/* ============ Why / Features ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-check svg { width: 16px; height: 16px; }
.feature h4 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.feature p { font-size: 0.93rem; line-height: 1.55; }

/* ============ Process Steps ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(255,255,255,0.2) 0 4px, transparent 4px 10px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brown-deep);
  border: 2px solid var(--sage);
  color: var(--sage-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.step h4 { margin-bottom: 0.5rem; font-size: 1.05rem; color: var(--cream); }
.step p { font-size: 0.9rem; line-height: 1.55; }

/* ============ Pallet types ============ */
.pallet-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) {
  .pallet-types { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pallet-types { grid-template-columns: 1fr; }
}
.pallet-type {
  background: rgba(250, 246, 238, 0.06);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(250, 246, 238, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}
.pallet-type:hover {
  background: rgba(250, 246, 238, 0.1);
  border-color: rgba(155, 194, 74, 0.4);
}
.pallet-type-name {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.98rem;
}
.pallet-type-status {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.32rem 0.7rem;
  border-radius: 100px;
  background: rgba(155, 194, 74, 0.22);
  color: var(--sage-bright);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pallet-type-status.order { background: rgba(192, 130, 65, 0.22); color: #d8a070; }

/* ============ Testimonials ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
}
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.testimonial:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: #c47434;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--brown);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.testimonial-name { font-weight: 600; color: var(--brown-deep); font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--text-muted); }

/* ============ CTA ============ */
.cta {
  background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown) 100%);
  color: var(--cream);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(155, 194, 74, 0.14) 0%, transparent 60%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}
.cta h2 { color: var(--cream); margin-bottom: 1.25rem; }
.cta h2 .accent { color: var(--sage-bright); font-style: italic; font-weight: 500; }
.cta-lead {
  color: rgba(250, 246, 238, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.cta-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.25rem;
}
.cta-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.92rem;
  color: rgba(250, 246, 238, 0.88);
}
.cta-features li::before {
  content: '✓';
  color: var(--sage-bright);
  font-weight: 700;
}

/* ============ Form ============ */
.form-card {
  background: var(--cream);
  color: var(--text-dark);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--brown-deep);
}
.form-card .form-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.form-group label .required { color: #c47434; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(155, 194, 74, 0.18);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.radio-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-dark);
  cursor: pointer;
}
.radio-option input { width: auto; margin: 0; accent-color: var(--sage); }
.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.checkbox-row input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--sage);
  flex-shrink: 0;
}
.checkbox-row label {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}
.form-card button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}
.form-fineprint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.form-fineprint a {
  color: var(--sage-deep);
  text-decoration: underline;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--brown-deep);
  color: rgba(250, 246, 238, 0.7);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(155, 194, 74, 0.4), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.65; max-width: 320px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-bright);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(250, 246, 238, 0.7);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--sage-bright); }
.footer-col .contact-line {
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  color: rgba(250, 246, 238, 0.85);
}
.footer-col .contact-line.email a { color: var(--sage-bright); }

.footer-legal { border-top: 1px solid rgba(250, 246, 238, 0.1); padding-top: 1.5rem; }
.legal-accordion { border-bottom: 1px solid rgba(250, 246, 238, 0.08); }
.legal-accordion summary {
  cursor: pointer;
  padding: 1rem 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(250, 246, 238, 0.85);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.legal-accordion summary::-webkit-details-marker { display: none; }
.legal-accordion summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sage-bright);
  transition: transform var(--transition);
}
.legal-accordion[open] summary::after { content: '−'; }
.legal-accordion summary:hover { color: var(--sage-bright); }
.legal-content {
  padding: 0 0 1.5rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(250, 246, 238, 0.65);
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 1rem;
}
.legal-content h6 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin: 1.25rem 0 0.5rem;
}
.legal-content h6:first-child { margin-top: 0; }
.legal-content p { color: rgba(250, 246, 238, 0.65); margin-bottom: 0.75rem; }
.legal-content .updated {
  font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.45);
  font-style: italic;
  margin-bottom: 1rem;
}
.legal-content::-webkit-scrollbar { width: 6px; }
.legal-content::-webkit-scrollbar-track { background: rgba(250,246,238,0.05); }
.legal-content::-webkit-scrollbar-thumb { background: rgba(155,194,74,0.3); border-radius: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.5);
}

/* ============ Animations ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .nav-phone { display: none; }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 0; }
  .mobile-toggle { display: flex; }

  .hero-grid,
  .cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-features { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.625rem; }
  .stat { padding: 1rem 1.1rem; }
  .stat-number { font-size: 1.6rem; }
  .form-card { padding: 1.75rem 1.5rem; }
  .testimonial { padding: 1.5rem; }
  .steps { grid-template-columns: 1fr; }
}
