/* ═══════════════════════════════════════════
   IndiSeed — Global Stylesheet
   Brand: Shree Krishna Hi-Tech Engineering Works
═══════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:     #C8860A;
  --gold-lt:  #F5A623;
  --gold-dk:  #8C5C00;
  --cream:    #FFFCF4;
  --warm:     #FFF8E7;
  --dark:     #1C1400;
  --text:     #3A2A00;
  --muted:    #7A6540;
  --border:   #E8D5A3;
  --white:    #FFFFFF;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(200,134,10,0.10);
  --shadow-lg:0 12px 48px rgba(200,134,10,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── NAVIGATION ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 36px; }
.nav-logo-text {
  color: var(--gold-lt); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px;
  font-family: 'Playfair Display', serif;
}

.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links li a {
  color: rgba(255,255,255,0.78); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--gold-lt);
  background: rgba(245,166,35,0.10);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold-lt); border-radius: 2px; transition: 0.3s;
}

/* ── LAYOUT HELPERS ── */
.section     { padding: 80px 5vw; }
.section-sm  { padding: 48px 5vw; }
.container   { max-width: 1100px; margin: 0 auto; }
.container-sm{ max-width: 800px; margin: 0 auto; }

.tag {
  display: inline-block;
  background: rgba(200,134,10,0.12);
  color: var(--gold-dk);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
  margin-bottom: 16px;
}
.tag-light {
  background: rgba(245,166,35,0.15);
  color: var(--gold-lt);
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--dark); margin-bottom: 16px; }
.section-sub   { font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.7; }
.divider       { width: 56px; height: 4px; background: var(--gold); border-radius: 2px; margin: 20px 0 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-white { background: var(--white); color: var(--dark); border-color: transparent; }
.btn-white:hover { background: var(--warm); }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-wa { background: #25D366; color: var(--white); border-color: transparent; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO (HOME) ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1C1400 0%, #3A2800 50%, #1C1400 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1615485500704-8e990f9900f7?w=1600&q=80');
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 0 5vw;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold-lt); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 20px; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--white); margin-bottom: 24px; line-height: 1.15;
}
.hero h1 em { color: var(--gold-lt); font-style: normal; }
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.78);
  margin-bottom: 40px; max-width: 520px; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
}
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong { color: var(--gold-lt); font-size: 1.3rem; font-weight: 700; }
.hero-trust-item span  { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gold); padding: 18px 5vw; }
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-size: 0.9rem; font-weight: 500;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #1C1400, #3A2800);
  padding: 80px 5vw; text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 20px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* ── CARD GRIDS ── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 48px;
}
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(200,134,10,0.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.why-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── DARK SHIELD SECTION ── */
.shield-section {
  background: linear-gradient(135deg, #1C1400, #3A2800);
  color: var(--white);
}
.shield-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.shield-inner .section-title { color: var(--white); }
.shield-inner .section-sub   { color: rgba(255,255,255,0.72); max-width: 660px; margin: 0 auto 40px; }
.reg-badges {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px;
}
.reg-badge {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(245,166,35,0.25);
  border-radius: 10px; padding: 16px 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.reg-badge label { font-size: 0.72rem; color: var(--gold-lt); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.reg-badge span  { font-size: 0.9rem; color: var(--white); font-weight: 500; font-family: monospace; letter-spacing: 1px; }

/* ── PROCESS STEPS ── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 48px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1rem; margin-bottom: 10px; color: var(--dark); }
.step p  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── VARIETY GRID ── */
.variety-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.variety-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block; color: var(--text);
}
.variety-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.variety-card-img {
  height: 200px; overflow: hidden;
  background: linear-gradient(135deg, #C8860A22, #8C5C0022);
  position: relative;
}
.variety-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.variety-card:hover .variety-card-img img { transform: scale(1.05); }
.curcumin-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--white);
  font-size: 0.78rem; font-weight: 700; padding: 5px 11px;
  border-radius: 20px;
}
.variety-card-body { padding: 24px; }
.variety-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--dark); }
.variety-card-body p  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.variety-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-pill {
  background: var(--warm); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  font-size: 0.78rem; color: var(--muted);
}
.spec-pill strong { color: var(--gold-dk); }

/* ── VARIETY DETAIL (individual variety pages) ── */
.variety-hero {
  background: linear-gradient(135deg, #1C1400, #3A2800);
  padding: 60px 5vw;
}
.variety-hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.variety-hero h1  { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: 20px; }
.variety-hero p   { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; }
.variety-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.variety-img-wrap img { width: 100%; height: 380px; object-fit: cover; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-lt); font-size: 0.9rem; font-weight: 500;
  margin-bottom: 24px; transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.75; }

.spec-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.spec-table th, .spec-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.spec-table th { background: var(--warm); color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.8px; }
.spec-table td:first-child { color: var(--muted); font-weight: 500; }
.spec-table td:last-child { color: var(--gold-dk); font-weight: 600; }

.spec-note {
  margin-top: 40px; padding: 28px;
  background: var(--warm); border-radius: 12px; border: 1px solid var(--border);
}
.spec-note h3 { font-size: 1.1rem; margin-bottom: 10px; }
.spec-note p  { font-size: 0.92rem; color: var(--muted); margin-bottom: 20px; }
.spec-note-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── TURMERIC TYPES ── */
.types-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; margin-top: 48px;
}
.type-card {
  background: var(--cream); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.type-card-img {
  height: 220px; overflow: hidden;
  background: var(--warm);
}
.type-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.type-card:hover .type-card-img img { transform: scale(1.04); }
.type-card-body { padding: 24px; }
.type-card-body h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.type-card-body p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.type-tag {
  display: inline-block;
  background: rgba(200,134,10,0.10); border: 1px solid rgba(200,134,10,0.2);
  color: var(--gold-dk); font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px;
}

/* ── ABOUT VALUES ── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 48px;
}
.value-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.value-card-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.value-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── CERTIFICATIONS ── */
.cert-row {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center;
  margin-top: 48px;
}
.cert-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 20px 28px; border-radius: var(--radius); box-shadow: var(--shadow);
  min-width: 120px; text-align: center;
}
.cert-item img { height: 48px; object-fit: contain; }
.cert-item span { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-info p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: rgba(200,134,10,0.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-item-text strong {
  display: block; font-size: 0.85rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px;
  font-family: 'Inter', sans-serif;
}
.contact-item-text span, .contact-item-text a { font-size: 0.95rem; color: var(--text); }
.contact-reg {
  background: var(--warm); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; margin-top: 8px;
}
.contact-reg .reg-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.8px; font-family: 'Inter', sans-serif; }
.contact-reg .reg-code  { font-size: 0.85rem; color: var(--text); line-height: 2; font-family: monospace; }

.contact-form-wrap {
  background: var(--white); border-radius: 16px;
  padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--muted); margin-bottom: 7px;
  text-transform: uppercase; letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.93rem; color: var(--text);
  background: var(--cream); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none; margin-top: 20px; padding: 16px 20px;
  background: #d1fae5; border: 1px solid #6ee7b7;
  border-radius: 8px; color: #065f46; font-size: 0.92rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  padding: 72px 5vw; text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── ABOUT - COMPANY INFO GRID ── */
.company-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.company-info-box {
  background: var(--warm); border-radius: 16px; padding: 40px; border: 1px solid var(--border);
}
.company-info-box h3 { font-size: 1.1rem; margin-bottom: 24px; color: var(--dark); }
.info-row { margin-bottom: 20px; }
.info-row .info-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; font-family: 'Inter', sans-serif; }
.info-row .info-value { margin-top: 4px; font-size: 0.93rem; color: var(--text); }
.info-row .info-value.mono { font-family: monospace; font-size: 0.9rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.65);
  padding: 60px 5vw 32px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img    { height: 36px; margin-bottom: 16px; }
.footer-brand p      { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 300px; }
.footer-brand-name   { color: rgba(255,255,255,0.85) !important; font-weight: 600; font-family: 'Playfair Display', serif; font-size: 1.1rem !important; display: block; margin-bottom: 6px; }
.footer-reg          { margin-top: 20px; }
.footer-reg span     { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.38); font-family: monospace; line-height: 1.9; }
.footer-col h4       { color: var(--gold-lt); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.footer-col ul       { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a  { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-col ul li span { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ── VARIETY TAG PILLS ── */
.variety-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.variety-tag-pill {
  background: var(--warm); border: 1px solid var(--border);
  border-radius: 20px; padding: 8px 18px;
  font-size: 0.9rem; color: var(--muted);
  font-family: 'Inter', sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .company-info-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .variety-hero-inner { grid-template-columns: 1fr; }
  .variety-img-wrap { order: -1; }
  .variety-img-wrap img { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--dark);
    padding: 16px 5vw 24px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 5vw; }
}

@media (max-width: 480px) {
  .section { padding: 56px 5vw; }
  .hero-trust { gap: 16px; }
  .trust-bar-inner { gap: 16px; }
  .reg-badge { width: 100%; }
}
