:root {
  --bg: #f6f5ee;
  --ink: #1a2a1d;
  --muted: #4a5a48;
  --accent: #f2b705;
  --accent-dark: #9a7b1f;
  --surface: #ffffff;
  --leaf: #2f5a2f;
  --pine: #234020;
  --shadow: rgba(26, 42, 29, 0.14);
  --radius: 22px;
}

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

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff9db, var(--bg) 55%);
  min-height: 100vh;
}

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

main {
  padding: 0 6vw 6rem;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.12'/></svg>");
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.3rem 6vw;
  min-height: 120px;
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, rgba(255, 249, 219, 0.95), rgba(246, 245, 238, 0.92) 55%, rgba(246, 245, 238, 0.96));
  border-bottom: 1px solid rgba(26, 42, 29, 0.1);
  overflow: visible;
}

.logo-wrap {
  position: relative;
  width: 560px;
  height: 0;
  flex: 0 0 auto;
}

.logo-mark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 220px;
  width: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 20px rgba(26, 42, 29, 0.2));
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  flex: 1;
  justify-content: center;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(26, 42, 29, 0.2);
  background: #fff;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-links a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(242, 183, 5, 0.18);
}

.nav-cta {
  margin-left: auto;
}

.hero-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fff9db 100%);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  box-shadow: 0 26px 60px -36px var(--shadow);
  border: 1px solid rgba(26, 42, 29, 0.1);
}

.hero-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.hero-panel p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.who-for {
  margin: 0.6rem 0 1.4rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin-bottom: 1.6rem;
}

.hero-list li {
  padding-left: 1.2rem;
  position: relative;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.btn {
  background: linear-gradient(135deg, var(--accent), #f7d04d);
  color: #1a1a12;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 28px -18px rgba(154, 123, 31, 0.7);
}

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

.btn-outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(26, 42, 29, 0.25);
  color: var(--ink);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 4rem 0 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.signal-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 42, 29, 0), rgba(26, 42, 29, 0.18), rgba(26, 42, 29, 0));
  margin: 1.2rem 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.stat {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(26, 42, 29, 0.12);
}

.stat-value {
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.mission-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0 4rem;
}

.mission-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 245, 238, 0.6));
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid rgba(26, 42, 29, 0.1);
  box-shadow: 0 18px 40px -30px var(--shadow);
}

.mission-card h3 {
  margin-bottom: 0.5rem;
}

.mission-card p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.securecycle .hero h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
}

.securecycle .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 3.5px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  border-top: 1px solid rgba(26, 42, 29, 0.12);
  padding-top: 1.5rem;
}

.trust-metric {
  font-size: 1.15rem;
  font-weight: 700;
}

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

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 28px 60px -38px var(--shadow);
  border: 1px solid rgba(26, 42, 29, 0.08);
}

.hero-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

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

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(26, 42, 29, 0.2);
  font-family: inherit;
}

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

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.calendar-actions {
  display: grid;
  gap: 0.7rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.strip {
  padding: 4rem 0;
}

.strip h2,
.split h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.2rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid rgba(26, 42, 29, 0.1);
  box-shadow: 0 18px 44px -34px var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(242, 183, 5, 0.22);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.solution-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.solution-item {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(26, 42, 29, 0.1);
}

.solution-title {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.trust-panel {
  background: linear-gradient(160deg, #fff3c4, #ffffff 65%);
}

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

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 29, 0.4);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  width: min(640px, 92vw);
  max-height: 88vh;
  overflow: auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(26, 42, 29, 0.12);
  box-shadow: 0 30px 80px -40px rgba(26, 42, 29, 0.4);
  z-index: 1;
}

.modal-success-card {
  width: min(520px, 90vw);
  text-align: center;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.modal-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.modal-header p {
  margin: 0;
}

.modal-close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  border: none;
  background: rgba(26, 42, 29, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.trust-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(26, 42, 29, 0.1);
}

.trust-value {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.step {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(26, 42, 29, 0.1);
}

.step-num {
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.7rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.pill-list {
  display: grid;
  gap: 0.6rem;
  list-style: none;
}

.pill-list li {
  background: #fff;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(26, 42, 29, 0.1);
  font-size: 0.9rem;
}

.panel {
  background: linear-gradient(160deg, #fff9db, #ffffff 60%);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 42, 29, 0.08);
  box-shadow: 0 24px 60px -40px var(--shadow);
}

.pickup-list {
  display: grid;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.pickup-item {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

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

details {
  background: #fff;
  padding: 1rem 1.3rem;
  border-radius: 12px;
  border: 1px solid rgba(26, 42, 29, 0.1);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 6vw 4rem;
  border-top: 1px solid rgba(26, 42, 29, 0.12);
  background: #f3f2e4;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 4vw;
    width: min(260px, 70vw);
    background: #fff;
    border: 1px solid rgba(26, 42, 29, 0.12);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 18px 40px -30px rgba(26, 42, 29, 0.35);
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
  }
  .nav-links.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .nav {
    gap: 0.75rem;
    min-height: 90px;
    padding: 0.4rem 4vw;
    width: 100%;
    justify-content: center;
    position: relative;
  }
  .logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 0;
    display: block;
    margin: 0;
  }
  .logo-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 160px;
    width: auto;
  }
  .nav-toggle {
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero,
  .strip,
  .split {
    animation: fadeUp 0.8s ease both;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
