/* ============================================================
   AEPS Agri — landing v3
   Warm cream palette · terracotta accent · sage secondary
   Modern effects: gradient blobs, glass cards, floating shapes,
   micro-interactions. No hard blacks anywhere.
   ============================================================ */

:root {
  /* Base warm neutrals */
  --cream: #faf6ee;
  --cream-2: #f3ecdc;
  --sand: #ece2ca;
  --white: #ffffff;

  /* Text — warm browns instead of black */
  --ink: #2b1e12;
  --ink-2: #3d2a17;
  --muted: #6a5844;
  --dim: #94836f;

  /* Accents */
  --terra: #cf5a2c;         /* primary terracotta */
  --terra-2: #e37540;       /* hover */
  --terra-soft: #f9d5c1;    /* washes */
  --amber: #e9a648;         /* wheat gold */
  --sage: #7f8f6b;          /* secondary — sustainable */
  --sage-soft: #d9e0cc;

  /* Lines & shadows */
  --line: rgba(43, 30, 18, 0.08);
  --line-strong: rgba(43, 30, 18, 0.14);
  --shadow-sm: 0 4px 14px -6px rgba(43, 30, 18, 0.12);
  --shadow-md: 0 20px 40px -20px rgba(43, 30, 18, 0.18);
  --shadow-lg: 0 40px 80px -30px rgba(43, 30, 18, 0.25);
  --shadow-glow: 0 20px 60px -20px rgba(207, 90, 44, 0.35);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.7);

  /* Radii */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;

  /* Layout */
  --max: 1220px;
  --pad: 28px;

  /* Fonts */
  --f-sans: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --f-display: 'Fraunces', 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  position: relative;
}

/* --------- Ambient gradient blobs (page-wide) --------- */

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient::before,
.ambient::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.ambient::before {
  width: 620px;
  height: 620px;
  top: -220px;
  right: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(233, 166, 72, 0.5), transparent 70%);
}
.ambient::after {
  width: 720px;
  height: 720px;
  top: 40%;
  left: -260px;
  background: radial-gradient(circle at 60% 40%, rgba(207, 90, 44, 0.35), transparent 70%);
}

main, header, footer, nav, section { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============ NAV ============ */

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 246, 238, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 22px -14px rgba(43, 30, 18, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
}
.brand-mark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark em {
  color: var(--terra);
  font-style: italic;
  font-weight: 500;
}
.brand-sub {
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.nav-links a {
  transition: color .15s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Language switcher */
.lang { position: relative; }
.lang-toggle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .18s ease;
  box-shadow: var(--shadow-sm);
}
.lang-toggle:hover {
  border-color: var(--terra);
  color: var(--terra);
  transform: translateY(-1px);
}
.lang-toggle svg { transition: transform .25s ease; }
.lang.open .lang-toggle svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  min-width: 150px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  display: none;
}
.lang.open .lang-menu { display: block; animation: pop .18s ease; }
.lang-menu button {
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background .15s ease;
  font-weight: 500;
}
.lang-menu button:hover { background: var(--cream-2); color: var(--terra); }
.lang-menu button.active { background: var(--terra-soft); color: var(--terra); font-weight: 700; }

@keyframes pop {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-2) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--terra-2), var(--amber));
  opacity: 0;
  transition: opacity .3s ease;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -15px rgba(207, 90, 44, 0.45);
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--terra);
  color: var(--terra);
  background: var(--white);
}

/* ============ HERO ============ */

.hero {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 5%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(233, 166, 72, 0.4), transparent 70%);
  filter: blur(30px);
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(127, 143, 107, 0.35), transparent 70%);
  filter: blur(30px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--terra);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 22px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--terra-soft);
  backdrop-filter: blur(10px);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--terra);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--terra);
  font-weight: 500;
  background: linear-gradient(135deg, var(--terra), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 640px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero cards */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.hero-card {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terra-soft);
}
.hero-card-image {
  aspect-ratio: 16 / 10;
  background-position: center;
  background-size: cover;
  background-color: var(--sand);
  position: relative;
  overflow: hidden;
}
.hero-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(43, 30, 18, 0.4) 100%);
}
.hero-card:hover .hero-card-image { transform: scale(1.03); }
.hero-card-image {
  transition: transform .5s ease;
}
.hero-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero-card-tag {
  color: var(--terra);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero-card-body h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.hero-card-body p {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 14.5px;
  flex: 1;
}
.hero-card-link {
  color: var(--terra);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.hero-card-link:hover { color: var(--terra-2); gap: 12px; }

/* ============ STATS ============ */

.stats {
  padding: 80px 0;
  position: relative;
}
.stats-inner {
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--sand) 100%);
  border-radius: var(--r-lg);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stats-inner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 166, 72, 0.35), transparent 70%);
  filter: blur(40px);
}
.stats-inner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 90, 44, 0.2), transparent 70%);
  filter: blur(40px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat b {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(38px, 3.6vw, 54px);
  color: var(--terra);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--terra), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============ SECTIONS ============ */

.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 68px;
  text-align: center;
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-head h2 em {
  font-style: italic;
  color: var(--terra);
  font-weight: 500;
}
.section-lede {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
  line-height: 1.7;
}

/* ============ PRODUCTS ============ */

.products {
  background: var(--white);
  border-radius: 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product {
  padding: 40px 32px;
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid var(--line);
  transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.product::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 166, 72, 0.2), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity .4s ease;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terra-soft);
}
.product:hover::before { opacity: 1; }

.product-icon {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--terra-soft), var(--sand));
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.product h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 30px;
  margin: 0 0 4px;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.product-tag {
  color: var(--terra);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.product-specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.product-specs li:last-child { border-bottom: 0; }
.product-specs span { color: var(--muted); }
.product-specs b { color: var(--ink); font-weight: 600; text-align: right; }

/* ============ PORTS ============ */

.ports-band {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
  overflow: hidden;
}
.ports-band::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 90, 44, 0.12), transparent 70%);
  filter: blur(60px);
}
.ports-band::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 143, 107, 0.15), transparent 70%);
  filter: blur(60px);
}

.ports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.port {
  padding: 34px 26px;
  border-radius: var(--r);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--glass-border);
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
}
.port:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: var(--terra-soft);
  box-shadow: var(--shadow-md);
}
.port-code {
  display: inline-block;
  padding: 6px 12px;
  background: var(--terra);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.port h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.port p {
  color: var(--muted);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============ TERMS ============ */

.terms {
  background: var(--white);
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.term {
  padding: 34px 28px;
  border-radius: var(--r);
  background: var(--cream);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.term::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.term:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--terra-soft);
}
.term:hover::before { transform: scaleX(1); }
.term h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.term p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

/* ============ WHY ============ */

.why {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(233, 166, 72, 0.15), transparent 70%);
  filter: blur(80px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-item {
  padding: 44px 38px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  align-items: start;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
}
.why-item:hover {
  border-color: var(--terra-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-num {
  font-family: var(--f-display);
  color: var(--terra);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--terra), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.why-item h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.why-item p {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============ QUOTE ============ */

.quote {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 90, 44, 0.15), transparent 70%);
  filter: blur(60px);
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.quote-copy h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
}
.quote-copy h2 em {
  color: var(--terra);
  font-style: italic;
  font-weight: 500;
}
.quote-copy .lede {
  text-align: left;
  margin: 0 0 32px;
}

.quote-contacts {
  list-style: none;
  padding: 28px 0 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}
.quote-contacts li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}
.quote-contacts span {
  color: var(--dim);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 4px;
  font-weight: 700;
}
.quote-contacts a { color: var(--terra); }
.quote-contacts a:hover { color: var(--terra-2); }

.quote-form {
  padding: 44px;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: var(--shadow-lg);
}

.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label {
  color: var(--ink);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: var(--f-sans);
  font-size: 15px;
  outline: none;
  transition: all .18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(207, 90, 44, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  color: var(--dim);
  font-size: 12.5px;
  margin: 16px 0 0;
  text-align: center;
}
.form-status {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
  font-weight: 600;
}
.form-status.ok { color: #2d7a3d; }
.form-status.err { color: #b93a3a; }

/* ============ FOOTER ============ */

.footer {
  background: linear-gradient(135deg, #3d2a17 0%, #2b1e12 100%);
  color: rgba(255, 245, 230, 0.75);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 166, 72, 0.15), transparent 70%);
  filter: blur(60px);
}
.footer .brand-mark { color: var(--cream); }
.footer .brand-mark em { color: var(--amber); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 76px 0 52px;
  position: relative;
  z-index: 1;
}
.footer-note {
  margin: 14px 0 0;
  max-width: 340px;
  font-size: 14px;
  color: rgba(255, 245, 230, 0.6);
  line-height: 1.7;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h4 {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 18px;
  font-weight: 700;
}
.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-cols li {
  padding: 5px 0;
  font-size: 14.5px;
}
.footer-cols a { color: rgba(255, 245, 230, 0.75); transition: color .15s ease; }
.footer-cols a:hover { color: var(--amber); }

.footer-bar {
  border-top: 1px solid rgba(255, 245, 230, 0.1);
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(255, 245, 230, 0.5);
  position: relative;
  z-index: 1;
}

/* ============ REVEAL ============ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RTL (Arabic) ============ */

[dir="rtl"] { text-align: right; }
[dir="rtl"] .nav-links { margin-right: auto; margin-left: 0; }
[dir="rtl"] .quote-copy .lede { text-align: right; }
[dir="rtl"] .quote-contacts li { grid-template-columns: 1fr 110px; }
[dir="rtl"] .why-item { grid-template-columns: 1fr 76px; }
[dir="rtl"] .product-specs b { text-align: left; }
[dir="rtl"] .term::before { transform-origin: right; }

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
  .hero { padding: 44px 0 32px; }
  .hero-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .products-grid { grid-template-columns: 1fr; }
  .ports-grid { grid-template-columns: repeat(2, 1fr); }
  .terms-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { padding: 44px 24px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .brand-sub { display: none; }
  .section { padding: 72px 0; }
  .ports-band, .quote { padding: 72px 0; }
  .stats { padding: 60px 0; }
  .ports-grid { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; gap: 0; }
  .footer-cols { grid-template-columns: 1fr; }
  .quote-form { padding: 28px; }
  .why-item { padding: 28px 22px; grid-template-columns: 1fr; gap: 12px; }
}
