/* ── Variables — landing page overrides ── */
:root {
  --cream: #FAFAF5;
  --cream-dark: #F0EBE0;
  --green: #4A7C6F;
  --green-dark: #2C4A3E;
  --terracota: #C8724A;
  --ink: #1A1A18;
  --ink-light: #5A5550;
  --rule: #D4C9BA;
}

/* ── Body overrides ── */
body {
  font-weight: 300;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY — home uses body::before instead of .grain-overlay div ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(250,250,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: var(--cream) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green-dark) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 48px;
  padding-top: 80px;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-kicker-line {
  width: 40px;
  height: 1px;
  background: var(--terracota);
}

.hero-kicker span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 700;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 28px;
}

h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-desc {
  font-size: 17px;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-form {
  display: flex;
  gap: 0;
  max-width: 420px;
}

.hero-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--rule);
  border-right: none;
  border-radius: 2px 0 0 2px;
  background: white;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.hero-form input:focus { border-color: var(--green); }
.hero-form input::placeholder { color: #AAA; }

.hero-form button {
  padding: 14px 28px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 0 2px 2px 0;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.hero-form button:hover { background: var(--green-dark); }

.hero-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-light);
  opacity: 0.7;
}

/* ── HERO RIGHT ── */
.hero-right {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}

.hero-card-header {
  background: var(--green);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
  font-weight: 700;
}

.hero-card-date {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}

.hero-card-body { padding: 28px; }

.card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--terracota);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}

.card-text {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-divider {
  height: 1px;
  background: var(--rule);
  margin: 20px 0;
}

.card-tool {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--cream);
  border-radius: 3px;
}

.card-tool-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.card-tool-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.card-tool-desc {
  font-size: 12px;
  color: var(--ink-light);
}

/* ── STATS ── */
.stats {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.stat {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--rule);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ── WHAT YOU GET ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 64px;
}

.section-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--rule);
  line-height: 1;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--green);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}

.feature {
  background: var(--cream);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature:hover { background: white; }

.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ── FOR WHO ── */
.forwho {
  background: var(--green-dark);
  padding: 96px 48px;
}

.forwho-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.forwho h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 28px;
}

.forwho h2 em {
  font-style: italic;
  color: var(--terracota);
}

.forwho p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}

.forwho-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.forwho-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.forwho-list li::before {
  content: '—';
  color: var(--terracota);
  flex-shrink: 0;
  font-weight: 700;
}

.forwho-quote {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--terracota);
  padding: 32px 36px;
  border-radius: 0 4px 4px 0;
}

.forwho-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: white;
  line-height: 1.5;
  margin-bottom: 20px;
}

.forwho-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  font-style: normal;
}

/* ── CTA BOTTOM ── */
.cta-bottom {
  max-width: 700px;
  margin: 0 auto;
  padding: 96px 48px;
  text-align: center;
}

.cta-bottom h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-bottom h2 em {
  font-style: italic;
  color: var(--green);
}

.cta-bottom p {
  font-size: 16px;
  color: var(--ink-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 16px 22px;
  border: 1.5px solid var(--rule);
  border-right: none;
  border-radius: 2px 0 0 2px;
  background: white;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.cta-form input:focus { border-color: var(--green); }
.cta-form input::placeholder { color: #BBB; }

.cta-form button {
  padding: 16px 32px;
  background: var(--terracota);
  color: white;
  border: none;
  border-radius: 0 2px 2px 0;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.cta-form button:hover { background: #B5623C; }

.cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-light);
  opacity: 0.6;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.footer-logo span { color: var(--green); }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

.footer-copy {
  font-size: 12px;
  color: var(--ink-light);
  opacity: 0.4;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── BANNERS ── */
.acargo-banner {
  position: fixed;
  top: 72px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  animation: fadeUp 0.4s ease forwards;
  white-space: nowrap;
}
.acargo-banner--ok {
  background: #4A7C6F;
  color: white;
}
.acargo-banner--error {
  background: #C8724A;
  color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 24px; padding-top: 100px; gap: 48px; }
  .hero-right { display: none; }
  .stats { grid-template-columns: 1fr; padding: 40px 24px; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); padding: 24px; }
  .stat:last-child { border-bottom: none; }
  .section { padding: 64px 24px; }
  .features { grid-template-columns: 1fr; }
  .forwho { padding: 64px 24px; }
  .forwho-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-bottom { padding: 64px 24px; }
  .cta-form { flex-direction: column; }
  .cta-form input { border-right: 1.5px solid var(--rule); border-bottom: none; border-radius: 2px 2px 0 0; }
  .cta-form button { border-radius: 0 0 2px 2px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
