/* ==========================================================
   Privi International LLP — Premium B2B Export Site
   Design system: Deep Green · White · Gold
   ========================================================== */

:root {
  /* Brand palette */
  --green-900: #0f3a25;
  --green-800: #144a2e;
  --green-700: #1a5d39;
  --green-600: #207048;
  --green-500: #2d8a57;
  --green-100: #e6f1ea;
  --green-50:  #f3f8f5;

  --gold-700: #a37b1e;
  --gold-600: #c3972a;
  --gold-500: #d4a73b;
  --gold-400: #e2bf5e;
  --gold-100: #fbf3dd;

  --ink-900: #111a14;
  --ink-700: #2a332e;
  --ink-500: #5a6660;
  --ink-300: #98a39d;
  --ink-200: #c7cdc9;
  --ink-100: #e6eae7;
  --ink-50:  #f5f7f5;

  --white: #ffffff;
  --bg: #fafbf9;
  --shadow-sm: 0 1px 2px rgba(15,58,37,0.05);
  --shadow-md: 0 8px 24px rgba(15,58,37,0.08);
  --shadow-lg: 0 20px 60px rgba(15,58,37,0.12);
  --shadow-gold: 0 8px 24px rgba(195,151,42,0.18);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --maxw: 1200px;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.4em; }
p  { color: var(--ink-700); margin-bottom: 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrow / section header */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--gold-500);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 32px rgba(195,151,42,0.28);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--green-900);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-900);
}
.btn--outline-dark:hover {
  background: var(--green-900);
  color: var(--white);
}

/* ==========================================================
   Top bar + Navigation
   ========================================================== */
.topbar {
  background: var(--green-900);
  color: var(--green-100);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.topbar a { color: var(--green-100); }
.topbar a:hover { color: var(--gold-400); }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-info svg { width: 14px; height: 14px; stroke: var(--gold-400); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a:hover { color: var(--gold-400); }
.topbar-social svg { width: 16px; height: 16px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-100);
  transition: box-shadow 0.2s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-900);
  letter-spacing: -0.01em;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gold-500);
  flex-shrink: 0;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text small { font-size: 0.7rem; font-weight: 500; color: var(--ink-500); letter-spacing: 0.18em; text-transform: uppercase; }

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-700);
  border-radius: 6px;
  transition: all 0.15s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-800);
  background: var(--green-50);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green-900);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 300px; max-width: 80%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 4px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 14px 16px; }
  .nav-cta .btn:not(.btn--gold) { display: none; }
  .nav-cta .btn--gold { display: inline-flex; }
  .topbar-info span:nth-child(3) { display: none; }
}

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15,58,37,0.92) 0%, rgba(20,74,46,0.85) 100%),
    radial-gradient(ellipse at top right, rgba(212,167,59,0.18), transparent 50%),
    url('../images/hero-onion-farm.jpg') center/cover no-repeat;
  overflow: hidden;
  padding: 80px 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1' d='M0 30h60M30 0v60'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero .eyebrow { color: var(--gold-400); }
.hero .eyebrow::before { background: var(--gold-400); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold-400); font-style: italic; font-weight: 600; }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 32px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ==========================================================
   Page hero (sub-pages)
   ========================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at right top, rgba(212,167,59,0.18), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 720px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--gold-400);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* ==========================================================
   About snapshot
   ========================================================== */
.about-snap {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold-500);
}
.about-img-badge strong { display: block; color: var(--green-900); font-size: 1.1rem; }
.about-img-badge span { font-size: 0.85rem; color: var(--ink-500); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 1.02rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-feature {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; color: var(--ink-700);
}
.about-feature svg { width: 20px; height: 20px; stroke: var(--green-600); flex-shrink: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { aspect-ratio: 16/10; }
}

/* ==========================================================
   Product cards
   ========================================================== */
.products { background: var(--bg); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--ink-100);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-50);
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { margin-bottom: 8px; }
.product-card p { color: var(--ink-500); font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.product-card .link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-700); font-weight: 600; font-size: 0.9rem;
  margin-top: auto;
}
.product-card .link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.product-card:hover .link svg { transform: translateX(3px); }

@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   Featured (onion) split
   ========================================================== */
.featured {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.featured::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,167,59,0.18), transparent 70%);
  border-radius: 50%;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  aspect-ratio: 4/3;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured h2 { color: var(--white); }
.featured .eyebrow { color: var(--gold-400); }
.featured p { color: rgba(255,255,255,0.85); }
.featured-list {
  list-style: none;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.featured-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.featured-list svg { width: 18px; height: 18px; stroke: var(--gold-400); flex-shrink: 0; }
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-list { grid-template-columns: 1fr; }
}

/* ==========================================================
   Spec / table
   ========================================================== */
.specs { background: var(--white); }
.spec-table {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--gold-500);
}
.spec-table h3 { margin-bottom: 18px; }
.spec-table ol, .spec-table ul { padding-left: 1.2em; color: var(--ink-700); }
.spec-table li { padding: 6px 0; }
.spec-table strong { color: var(--green-900); }

/* ==========================================================
   Why choose grid
   ========================================================== */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--ink-100);
  transition: all 0.25s ease;
  position: relative;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-200, var(--ink-100));
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--gold-400);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 28px; height: 28px; stroke: currentColor; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-card p { color: var(--ink-500); font-size: 0.95rem; margin: 0; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   Process timeline
   ========================================================== */
.process { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 24px 14px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
}
.process-step::after {
  content: "";
  position: absolute;
  right: -10px; top: 50%;
  width: 0; height: 0;
  border-left: 8px solid var(--gold-500);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
  z-index: 2;
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 40px; height: 40px;
  margin: 0 auto 12px;
  background: var(--green-800);
  color: var(--gold-400);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.process-step h4 { font-size: 1rem; margin-bottom: 4px; }
.process-step p { font-size: 0.82rem; color: var(--ink-500); margin: 0; }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
}
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }

/* ==========================================================
   Form
   ========================================================== */
.quote-section { background: var(--bg); }
.quote-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px;
  border-top: 4px solid var(--gold-500);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 600px) { .quote-wrap { padding: 28px 20px; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group label .req { color: #c0392b; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-900);
  transition: all 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(32,112,72,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.form-hint { font-size: 0.82rem; color: var(--ink-500); }

.form-success {
  display: none;
  background: var(--green-50);
  border: 1.5px solid var(--green-500);
  color: var(--green-900);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-top: 22px;
  font-weight: 500;
}
.form-success.show { display: block; }
.form-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 4px;
  display: none;
}
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #c0392b; }
.form-group.invalid .form-error { display: block; }

/* ==========================================================
   Contact
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--ink-100);
}
.contact-info h2 { font-size: 1.8rem; }
.contact-block { margin-top: 24px; }
.contact-block h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-700);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-block p, .contact-block a { color: var(--ink-700); font-size: 0.95rem; line-height: 1.7; }
.contact-block a:hover { color: var(--green-700); }
.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.partner-card {
  background: var(--green-50);
  border-left: 3px solid var(--gold-500);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}
.partner-card strong { display: block; color: var(--green-900); }
.partner-card span { font-size: 0.85rem; color: var(--ink-500); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   CTA banner
   ========================================================== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(15,58,37,0.95), rgba(20,74,46,0.95)),
    url('../images/shipping-containers.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 32px; }
.cta-banner .eyebrow { color: var(--gold-400); }
.cta-banner .eyebrow::before { background: var(--gold-400); }

/* ==========================================================
   Footer
   ========================================================== */
footer {
  background: #0a2818;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.7); margin-top: 16px; max-width: 320px; }
.footer h5 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================
   Floating CTA
   ========================================================== */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-cta a {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  transition: transform 0.2s ease;
}
.float-cta a:hover { transform: scale(1.08); }
.float-cta .whatsapp { background: #25d366; }
.float-cta .quote { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: var(--green-900); }
.float-cta svg { width: 26px; height: 26px; }

@media (max-width: 600px) {
  .float-cta { right: 14px; bottom: 14px; }
  .float-cta a { width: 50px; height: 50px; }
  .float-cta svg { width: 22px; height: 22px; }
}

/* ==========================================================
   Animations
   ========================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}
.float-cta .whatsapp { animation: pulse 2.4s infinite; }

/* Product detail enhancements */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.spec-item {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-left: 3px solid var(--gold-500);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
}
.spec-item h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin-bottom: 6px;
  font-weight: 600;
}
.spec-item p { color: var(--ink-700); font-size: 0.95rem; margin: 0; }
@media (max-width: 600px) { .spec-grid { grid-template-columns: 1fr; } }

.values-banner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--ink-100);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}
.values-banner span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-800);
  display: flex; align-items: center; gap: 8px;
}
.values-banner span::before {
  content: "•";
  color: var(--gold-500);
  font-size: 1.6rem;
}

.mission-list { list-style: none; }
.mission-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-100);
}
.mission-list li:last-child { border-bottom: none; }
.mission-list .tick {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.mission-list p { margin: 0; }
