/* EA Harvest Trade Ltd — static website styles */
:root {
  --ink: #262626;
  --muted: #5f5f5f;
  --line: #e2e2e2;
  --soft: #f5f5f5;
  --soft-2: #ffffff;
  --green: #ff3044;
  --green-2: #d91f31;
  --gold: #959595;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(38, 38, 38, 0.09);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }
img, svg { max-width: 100%; height: auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; min-width: 180px; }
.brand-logo { width: 210px; max-height: 58px; object-fit: contain; display: block; }
.brand-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.nav-links { display: flex; align-items: center; gap: 1rem; font-size: 0.94rem; color: var(--muted); }
.nav-links a { padding: 0.5rem 0; }
.nav-cta { color: var(--white) !important; background: var(--green); padding: 0.72rem 1rem !important; border-radius: 999px; font-weight: 700; }
.nav-cta:hover { background: var(--green-2); text-decoration: none; }

.hero {
  padding: 6rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(255, 48, 68, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--soft), #ffffff);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr); gap: 3rem; align-items: center; }
h1 { font-size: clamp(2.45rem, 6vw, 5rem); line-height: 0.96; letter-spacing: -0.055em; margin: 0.6rem 0 1.4rem; }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--muted); max-width: 760px; margin: 0 0 1.6rem; }
.hero-trust { color: var(--green); font-weight: 800; margin: 1.2rem 0 0; }
.actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-2); text-decoration: none; }
.btn-secondary { background: var(--white); border-color: var(--line); color: var(--ink); }
.btn-secondary:hover { border-color: var(--green); text-decoration: none; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.hero-card h2 { margin-top: 0; font-size: 1.35rem; }
.trade-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.75rem; }
.trade-list li { display: grid; grid-template-columns: 28px 1fr; gap: 0.65rem; align-items: start; }
.check { width: 28px; height: 28px; border-radius: 50%; background: var(--soft-2); color: var(--green); display: grid; place-items: center; font-weight: 900; }

.trust-strip { background: var(--ink); color: var(--white); padding: 1.1rem 0; }
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.trust-item { border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 0.85rem; color: rgba(255,255,255,0.9); }
.trust-item strong { color: var(--white); display: block; }

section { padding: 4.8rem 0; }
.section-head { max-width: 780px; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; letter-spacing: -0.045em; margin: 0.45rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: 0 10px 30px rgba(38, 38, 38, 0.045);
}
.card h3 { margin-top: 0; font-size: 1.2rem; }
.card p { color: var(--muted); }
.pill-list { display: flex; flex-wrap: wrap; gap: 0.55rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.pill-list li { background: var(--soft-2); color: var(--green); padding: 0.45rem 0.68rem; border-radius: 999px; font-weight: 700; font-size: 0.88rem; }

.products { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.product-card { padding: 1.15rem; }
.product-card h3 { font-size: 1.08rem; }
.product-card .muted { color: var(--muted); font-size: 0.94rem; }
.note {
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  color: #4f4f4f;
  margin-top: 1.2rem;
}
.steps { counter-reset: step; display: grid; gap: 1rem; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; align-items: start; }
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  font-size: 1.15rem;
}
.step h3 { margin: 0 0 0.3rem; }
.step p { margin: 0; color: var(--muted); }

.corridor { background: #ffffff; }
.corridor-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.route-svg { display: block; width: 100%; min-height: 260px; }
.country-grid { margin-top: 1rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.country-grid span { background: var(--soft-2); border: 1px solid var(--line); border-radius: 14px; padding: 0.75rem; font-weight: 700; color: var(--green); text-align: center; }

.form-section { background: var(--green); color: var(--white); }
.form-section .section-head p, .form-section .eyebrow { color: rgba(255,255,255,0.82); }
.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
form { display: grid; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
label { font-weight: 800; display: grid; gap: 0.35rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cbd3c5;
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus, .btn:focus, a:focus { outline: 3px solid rgba(255, 48, 68, 0.45); outline-offset: 3px; }
.full { grid-column: 1 / -1; }
.hidden { display: none; }
.form-note { color: var(--muted); font-size: 0.95rem; }
.form-actions { margin-top: 0.25rem; }

.profile-card { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 1.5rem; }
.profile-card p { color: rgba(255,255,255,0.82); max-width: 720px; }
.profile-card .btn-secondary { color: var(--ink); }

.footer { background: #111111; color: rgba(255,255,255,0.86); padding: 2.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.3rem; }
.footer h2, .footer h3 { color: var(--white); margin-top: 0; }
.footer a { color: var(--white); }
.footer small { display: block; margin-top: 1.5rem; color: rgba(255,255,255,0.55); }
.legal-page { padding: 4rem 0; }
.legal-content { max-width: 900px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 4vw, 2.5rem); }
.legal-content h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.legal-content h2 { margin-top: 2rem; }
.legal-content p, .legal-content li { color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { align-items: flex-start; padding: 0.9rem 0; }
  .brand-logo { width: 170px; max-height: 48px; }
  .nav-links { display: none; }
  .hero { padding-top: 4rem; }
  .products, .trust-items, .form-grid, .country-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; }
  .step::before { width: 44px; height: 44px; }
  section { padding: 3.3rem 0; }
}
