/*
Theme Name: Kendura Foods
Theme URI: https://kendurafoods.com
Author: Kendura Foods
Description: Premium Gluten-Free Flour Manufacturer — custom landing theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: kendura-foods
*/

/* ── Reset & Variables ─────────────────────────────────────────────────── */
:root {
  --cream: #f9f5ee;
  --oat: #ede7d9;
  --warm-white: #fdfaf4;
  --earth-green: #3d5a3e;
  --deep-green: #2a3f2b;
  --soft-brown: #8b6f47;
  --light-brown: #c4a882;
  --text-dark: #1e1a14;
  --text-mid: #5c5243;
  --text-light: #9e9080;
  --border: #ddd5c5;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ────────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(253, 250, 244, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--deep-green);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--soft-brown);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--earth-green);
}
.nav-cta {
  background: var(--earth-green);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--deep-green) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(61, 90, 62, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-content {
  padding: 6% 5% 6% 8%;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(61, 90, 62, 0.08);
  border: 1px solid rgba(61, 90, 62, 0.2);
  color: var(--earth-green);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--earth-green);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--soft-brown);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--earth-green);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--deep-green);
  transform: translateY(-1px);
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--earth-green);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid var(--earth-green);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--earth-green);
  color: white;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--earth-green);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-top: 0.3rem;
}
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 100vh;
  background: var(--oat);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(139, 111, 71, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(61, 90, 62, 0.1) 0%,
      transparent 50%
    );
}
.flour-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.flour-inner {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0e8d8 0%, #e8dcc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.flour-icon {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: var(--soft-brown);
  opacity: 0.6;
}
.flour-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.06em;
}
.floating-tag {
  position: absolute;
  z-index: 2;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 0.78rem;
}
.floating-tag strong {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}
.floating-tag span {
  color: var(--text-light);
  font-size: 0.72rem;
}
.tag-1 {
  top: 22%;
  left: 5%;
}
.tag-2 {
  bottom: 25%;
  right: 5%;
}
.tag-3 {
  top: 55%;
  left: 3%;
}

/* ── TRUST BAR ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--deep-green);
  padding: 1.2rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 400;
}
.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  flex-shrink: 0;
}

/* ── SECTIONS ───────────────────────────────────────────────────────────── */
.kf-section {
  padding: 6rem 8%;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-green);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--soft-brown);
}
.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

/* ── PRODUCTS ───────────────────────────────────────────────────────────── */
.products-section {
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.product-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.product-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-img-cassava {
  background: linear-gradient(135deg, #f0e8d8, #e8dcc8);
}
.product-img-plantain {
  background: linear-gradient(135deg, #e8ecd8, #d8e0c0);
}
.product-img-yam {
  background: linear-gradient(135deg, #ede0cc, #e0d0b8);
}
.product-img-blend {
  background: linear-gradient(135deg, #e0ddd8, #d4d0c8);
}
.product-body {
  padding: 1.5rem;
}
.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.product-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(61, 90, 62, 0.08);
  color: var(--earth-green);
  border: 1px solid rgba(61, 90, 62, 0.15);
}
.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.product-cta a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--earth-green);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.product-cta a:hover {
  text-decoration: underline;
}
.product-sizes {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ── INDUSTRIES ─────────────────────────────────────────────────────────── */
.industries-section {
  background: var(--warm-white);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.industry-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.industry-card:hover {
  border-color: var(--earth-green);
  background: rgba(61, 90, 62, 0.04);
}
.industry-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.industry-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.industry-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── B2B / WHOLESALE ────────────────────────────────────────────────────── */
.b2b-section {
  background: var(--deep-green);
  color: white;
}
.b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.b2b-section .section-label {
  color: var(--light-brown);
}
.b2b-section .section-title {
  color: white;
}
.b2b-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
  max-width: none;
}
.b2b-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.b2b-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.b2b-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.b2b-feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.2rem;
}
.b2b-feature-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.b2b-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2rem;
}
.b2b-form h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: white;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--light-brown);
}
.form-group select option {
  background: var(--deep-green);
  color: white;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.btn-form {
  width: 100%;
  background: var(--light-brown);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.9rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.btn-form:hover {
  background: var(--soft-brown);
}
.form-notice {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
}
.form-notice.success {
  background: rgba(61, 90, 62, 0.3);
  border: 1px solid rgba(61, 90, 62, 0.5);
  color: #a8d5a9;
}
.form-notice.error {
  background: rgba(180, 50, 50, 0.2);
  border: 1px solid rgba(180, 50, 50, 0.4);
  color: #f0aaaa;
}

/* ── QUALITY ────────────────────────────────────────────────────────────── */
.quality-section {
  background: var(--oat);
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.quality-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
}
.quality-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--earth-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.quality-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.quality-desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── ABOUT ──────────────────────────────────────────────────────────────── */
.about-strip {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
.about-visual {
  background: var(--oat);
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--light-brown);
  line-height: 1;
  min-width: 2rem;
}
.step-content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.step-content span {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── TEAM ───────────────────────────────────────────────────────────────── */
.team-section {
  background: var(--cream);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.team-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.team-card.featured {
  border-color: var(--earth-green);
}
.team-avatar {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--soft-brown);
  position: relative;
}
.team-avatar-arnaud {
  background: linear-gradient(135deg, #ede0cc, #e0d4bc);
}
.team-avatar-photo {
  background: none;
  overflow: hidden;
}
.team-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.team-body {
  padding: 1.5rem;
}
.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth-green);
  margin-bottom: 0.8rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Social Impact */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.impact-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem;
  border-left: 3px solid var(--earth-green);
}
.impact-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.impact-desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── SAMPLE CTA ─────────────────────────────────────────────────────────── */
.sample-cta {
  background: var(--cream);
  text-align: center;
  padding: 6rem 8%;
}
.sample-cta .section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}
.sample-cta .section-sub {
  margin: 1rem auto 2.5rem;
  max-width: 580px;
}
.sample-cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 8% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}
.footer-logo span {
  color: var(--light-brown);
}
.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}
.footer-contact a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--light-brown);
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--light-brown);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cert-badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-sub {
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-actions {
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-stats {
  animation: fadeUp 0.6s ease 0.4s both;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    padding: 4rem 6% 4rem;
  }
  .b2b-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-strip {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .site-nav .nav-links {
    display: none;
  }
  .site-nav .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(253, 250, 244, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5%;
    gap: 1.2rem;
    z-index: 99;
  }
  .nav-hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .kf-section {
    padding: 4rem 6%;
  }
  .sample-cta {
    padding: 4rem 6%;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .trust-bar {
    padding: 1.2rem 6%;
  }
}
