@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --clr-primary: #262626;
  --clr-primary-dark: #141414;
  --clr-primary-light: #404040;
  --clr-accent: #d4a017;
  --clr-accent-hover: #b8880f;
  --clr-accent-light: #f5c842;
  --clr-text: #1f2937;
  --clr-text-muted: #6b7280;
  --clr-bg: #fafaf8;
  --clr-white: #ffffff;
  --clr-light: #f2f2f2;
  --clr-border: #e5e7eb;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,.12), 0 4px 6px -2px rgba(0,0,0,.05);
  --radius: 8px;
  --radius-lg: 16px;
  --max-w: 1200px;
  --header-h: 172px;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; color: var(--clr-text); }

/* =============================================
   UTILITY
   ============================================= */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.section { padding-block: clamp(64px, 8vw, 104px); }
.section--tight-top { padding-top: clamp(32px, 4vw, 52px); }
.section--light { background-color: var(--clr-light); }
.section--dark { background-color: var(--clr-primary-dark); color: var(--clr-white); }
.section--primary { background-color: var(--clr-primary); color: var(--clr-white); }
.section--grey {
  position: relative;
  background: linear-gradient(rgba(20,20,20,.92), rgba(20,20,20,.92)), url('../images/why-choose-bg.webp');
  background-size: cover; background-position: center; background-attachment: fixed;
  color: var(--clr-white);
}
.section--grey .section-tag { color: var(--clr-accent-light); }
.section--grey .section-header h2 { color: #fff; }
.section--grey .section-header p { color: rgba(255,255,255,.65); }
.section--grey .feature-icon { background: rgba(255,255,255,.1); color: #fff; }
.section--grey .feature h3 { color: #fff; }
.section--grey .feature p { color: rgba(255,255,255,.6); }
.section--after-features { padding-top: clamp(40px, 5vw, 60px); }
.text-center { text-align: center; }
.text-center .section-header p, .section-header.text-center p { margin-inline: auto; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--clr-accent); color: #fff; border-color: var(--clr-accent); }
.btn-primary:hover { background: var(--clr-accent-hover); border-color: var(--clr-accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: #fff; color: var(--clr-primary); border-color: #fff; }
.btn-green { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
.btn-green:hover { background: var(--clr-primary-dark); border-color: var(--clr-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* =============================================
   HEADER (topbar + middle + nav)
   ============================================= */

/* ── Topbar ─────────────────────────────── */
.topbar { background: #e9e9e9; }
.topbar-inner {
  height: 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.factory-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #1a1a1a; border: 1px solid #1a1a1a;
  color: var(--clr-accent); font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  padding: 4px 12px 4px 10px; border-radius: 3px; white-space: nowrap; cursor: default;
}
.topbar-center { display: flex; align-items: center; gap: 20px; }
.topbar-item {
  display: flex; align-items: center; gap: 5px;
  color: #333; font-size: .76rem; white-space: nowrap;
  text-decoration: none; transition: color .2s;
}
.topbar-item svg { color: var(--clr-accent); }
.topbar-item:hover { color: #000; }
.topbar-whatsapp { color: #333; }
.topbar-whatsapp:hover { color: #000; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-social {
  display: flex; align-items: center;
  color: #555; transition: color .2s;
}
.topbar-social:hover { color: #000; }

/* ── Header middle ──────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; }
.header-middle { background: #fff; border-bottom: 1px solid #e5e5e5; }
.middle-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-block: 12px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0; color: inherit;
}
.logo img { height: 70px; width: auto; }
.trust-badges {
  display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center;
}
.trust-badge { display: flex; align-items: center; gap: 8px; }
.trust-badge svg { flex-shrink: 0; }
.trust-badge strong {
  display: block; font-size: .82rem; font-weight: 600; color: #1f2937;
  font-family: var(--font-body); line-height: 1.3;
}
.trust-badge span {
  display: block; font-size: .68rem; color: #999;
  text-transform: uppercase; letter-spacing: .07em;
}
.middle-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-quote-header {
  display: inline-block;
  background: var(--clr-accent); color: #1a1a1a;
  font-weight: 700; font-size: .88rem;
  padding: 12px 24px; border-radius: 4px;
  text-decoration: underline; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.btn-quote-header:hover { background: var(--clr-accent-hover); transform: translateY(-1px); }

/* Nav-toggle (mobile only) */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 8px; border-radius: 6px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; height: 2px; background: #333;
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav bar ────────────────────────────── */
.main-nav { background: #1c1c1c; }
.nav-inner {
  display: flex; align-items: stretch; justify-content: space-between;
  min-height: 55px;
}
.nav-list { display: flex; align-items: stretch; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 12px 15px;
  color: rgba(255,255,255,.82); font-size: .76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: color .2s, border-color .2s, background .2s;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
  background: rgba(255,255,255,.04);
}
.chevron { width: 12px; height: 12px; flex-shrink: 0; transition: transform .2s; }
.has-dropdown:hover > a .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  border: 1px solid var(--clr-border); border-top: 2px solid var(--clr-accent);
  padding: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.dropdown li a {
  display: block; padding: 10px 14px;
  color: var(--clr-text); font-size: .85rem; border-radius: 5px;
  font-weight: 400; text-transform: none; letter-spacing: 0;
  transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--clr-light); color: var(--clr-primary); }

.nav-search {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.6); padding: 0 14px;
  display: flex; align-items: center; transition: color .2s;
}
.nav-search:hover { color: #fff; }

/* ── Mobile ─────────────────────────────── */
@media (max-width: 960px) {
  .topbar { display: none; }
  .trust-badges { display: none; }
  .btn-quote-header { display: none; }
  .nav-toggle { display: flex; }
  .nav-search { display: none; }

  .main-nav {
    display: none;
    padding: 8px 0 20px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .main-nav.open { display: block; }
  .nav-inner { flex-direction: column; align-items: stretch; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list > li > a {
    padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.07);
    border-left: none;
  }
  .dropdown {
    position: static; background: rgba(255,255,255,.07);
    border: none; box-shadow: none; border-radius: 6px;
    margin: 4px 0 4px 12px; padding: 4px;
    opacity: 1; visibility: visible; pointer-events: all; transform: none;
    display: none;
  }
  .dropdown li a { color: rgba(255,255,255,.7); text-transform: none; }
  .dropdown li a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .has-dropdown.open .dropdown { display: block; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex; flex-direction: column;
  background: #0a1a0a;
  overflow: hidden;
}

/* ── YouTube fullscreen background ── */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh; height: 56.25vw;
  min-width: 100%; min-height: 100%;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.45) 55%,
    rgba(0,0,0,.15) 100%
  );
}

/* ── Hero body (text block) ── */
.hero-body {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center; justify-content: center;
}
.hero-content {
  padding-block: 56px 40px;
  max-width: 720px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,.2); color: var(--clr-accent-light);
  border: 1px solid rgba(212,160,23,.35);
  border-radius: 100px; padding: 6px 16px;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 18px;
  color: #fff;
}
.hero h1 em { color: var(--clr-accent); font-style: normal; }
.hero-lead {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.78); margin-bottom: 28px; max-width: 560px;
  line-height: 1.7; margin-inline: auto;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── 3 feature boxes — sit outside hero, pulled up to overlap it ── */
.hero-features {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1200px; width: 100%;
  margin: -90px auto 0;
  padding-inline: clamp(16px, 4vw, 32px);
}
.hero-feature {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  padding: 32px 28px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-feature::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-feature > * { position: relative; z-index: 1; }
.hero-feature--gold {
  background-image: url('../images/feature-easy-order.jpeg');
}
.hero-feature--gold::before {
  background: rgba(185, 115, 5, 0.82);
}
.hero-feature--dark:nth-child(2) {
  background-image: url('../images/feature-packaging.jpeg');
  border-right: 1px solid rgba(212, 160, 23, 0.25);
}
.hero-feature--dark:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(30, 20, 5, 0.85) 100%);
}
.hero-feature--dark:nth-child(3) {
  background-image: url('../images/feature-delivery.jpeg');
}
.hero-feature--dark:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(5, 5, 5, 0.85) 100%);
}
.hero-feature svg { opacity: .9; }
.hero-feature--gold svg { color: #fff; }
.hero-feature--dark svg { color: var(--clr-accent); }
.hero-feature h3 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  color: #fff; margin: 0;
}
.hero-feature--dark h3 { color: var(--clr-accent); }
.hero-feature p {
  font-size: .84rem; color: rgba(255,255,255,.82); margin: 0; line-height: 1.5;
}

@media (max-width: 640px) {
  .hero-features { grid-template-columns: 1fr; padding-inline: 0; margin-top: 0; }
  .hero { min-height: auto; }
  .hero-content { padding-block: 40px 24px; }
}

/* Page Hero (inner pages) */
.page-hero {
  padding: clamp(48px, 6vw, 75px) 0;
  background: linear-gradient(135deg, rgba(26,26,26,.93) 0%, rgba(38,38,38,.88) 100%), url('../images/page-hero-bg.jpg');
  background-size: cover; background-position: center;
  color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 3rem); text-align: center; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 600px; margin-inline: auto; text-align: center; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.breadcrumb a { color: var(--clr-accent); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: clamp(36px, 5vw, 60px); }
.section-tag {
  display: inline-block; color: var(--clr-accent);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section--dark .section-tag, .section--primary .section-tag { color: var(--clr-accent-light); }
.section-header h2 { margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.section--dark .section-header h2, .section--primary .section-header h2 { color: #fff; }
.section-header p { color: var(--clr-text-muted); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }
.section--dark .section-header p, .section--primary .section-header p { color: rgba(255,255,255,.65); }

/* =============================================
   CARDS
   ============================================= */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img {
  width: 100%; aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--clr-light) 0%, #d9d9d9 100%);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img-placeholder {
  width: 64px; height: 64px; opacity: .4;
  color: var(--clr-primary);
}
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body .card-tag { align-self: center; }
.card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card-body p { color: var(--clr-text-muted); font-size: .9rem; line-height: 1.6; flex: 1; }
.card-footer { padding: 0 24px 24px; }
.card-footer .btn-green { background: #1a1a1a; border-color: #1a1a1a; color: #fff; }
.card-footer .btn-green:hover { background: #000; border-color: #000; }
.card-tag {
  display: inline-block; padding: 3px 10px;
  background: var(--clr-light); color: var(--clr-primary);
  border-radius: 100px; font-size: .74rem; font-weight: 600; margin-bottom: 10px;
}

/* =============================================
   FEATURE GRID
   ============================================= */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 32px; }
.feature { text-align: center; padding: 32px 20px; }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--clr-light); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--clr-primary);
  transition: background .2s;
}
.feature:hover .feature-icon { background: var(--clr-accent); color: #1a1a1a; }
.section--dark .feature-icon { background: rgba(255,255,255,.1); color: #fff; }
.feature h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature p { color: var(--clr-text-muted); font-size: .9rem; line-height: 1.6; }
.section--dark .feature p { color: rgba(255,255,255,.6); }
.section--dark .feature h3 { color: #fff; }

/* =============================================
   TWO COLUMN LAYOUT
   ============================================= */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.two-col-reverse .two-col-img { order: -1; }
.two-col-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--clr-light) 0%, #d9d9d9 100%);
  display: flex; align-items: center; justify-content: center;
}
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { color: var(--clr-text-muted); margin-bottom: 16px; line-height: 1.7; }
.two-col-text .btn { margin-top: 8px; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col-reverse .two-col-img { order: 0; }
}

/* =============================================
   CHECKLIST
   ============================================= */
.checklist { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem;
}
.checklist li::before {
  content: '';
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  background: var(--clr-primary); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* =============================================
   TIMELINE
   ============================================= */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px;
  width: 2px; background: var(--clr-border);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 5px;
  width: 14px; height: 14px; background: var(--clr-accent);
  border-radius: 50%; border: 3px solid var(--clr-bg);
  box-shadow: 0 0 0 2px var(--clr-accent);
}
.timeline-year { font-size: .78rem; font-weight: 700; color: var(--clr-accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.timeline-item h4 { margin-bottom: 6px; font-size: 1.05rem; }
.timeline-item p { color: var(--clr-text-muted); font-size: .9rem; line-height: 1.6; }

/* =============================================
   CERTIFICATION BADGES
   ============================================= */
.cert-list { display: flex; flex-wrap: wrap; gap: 16px; }
.cert-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--clr-border);
  border-radius: var(--radius); padding: 16px 20px;
  transition: box-shadow .2s;
}
.cert-item:hover { box-shadow: var(--shadow-md); }
.cert-icon { color: var(--clr-primary); flex-shrink: 0; }
.cert-name { font-weight: 600; font-size: .9rem; margin-bottom: 2px; }
.cert-desc { font-size: .8rem; color: var(--clr-text-muted); }

/* =============================================
   PACKAGING TABLE
   ============================================= */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.pack-table { width: 100%; border-collapse: collapse; background: #fff; }
.pack-table th {
  background: #1e1e1e; color: #fff;
  padding: 14px 16px; text-align: left; font-size: .875rem; font-weight: 600; letter-spacing: .02em;
}
.pack-table td { padding: 13px 16px; border-bottom: 1px solid var(--clr-border); font-size: .9rem; }
.pack-table tr:last-child td { border-bottom: none; }
.pack-table tr:nth-child(even) td { background: #f7f7f7; }
.pack-table tr:hover td { background: var(--clr-light); }

/* =============================================
   FORMS
   ============================================= */
.form-wrap { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(28px, 4vw, 52px); }
.form-section-title { font-size: 1.1rem; font-weight: 600; color: var(--clr-primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--clr-light); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
@media (max-width: 640px) {
  .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 500; font-size: .875rem; color: var(--clr-text); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--clr-border); border-radius: var(--radius);
  padding: 11px 14px; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s; background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(26,92,46,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-note { font-size: .8rem; color: var(--clr-text-muted); margin-top: 2px; }
.form-divider { margin: 28px 0; height: 1px; background: var(--clr-border); }
.form-submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.form-success {
  display: none; background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: var(--radius); padding: 18px 24px;
  color: #065f46; font-weight: 500; text-align: center; margin-top: 16px;
}
.required { color: var(--clr-accent); margin-left: 2px; }

/* Radio/Checkbox groups */
.radio-group, .check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-label, .check-label {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1.5px solid var(--clr-border);
  border-radius: 100px; cursor: pointer; font-size: .875rem;
  transition: border-color .2s, background .2s;
}
.radio-label:hover, .check-label:hover { border-color: var(--clr-primary); background: var(--clr-light); }
.radio-label input, .check-label input { accent-color: var(--clr-primary); }

/* =============================================
   CTA BANNER
   ============================================= */
/* Counter strip */
.counter-strip { background: #fff; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; padding: 48px 0; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.counter-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; border-right: 1px solid #e8e8e8; }
.counter-item:last-child { border-right: none; }
.counter-number { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; color: #1a1a1a; line-height: 1; }
.counter-divider { display: block; width: 32px; height: 2px; background: var(--clr-accent); margin: 12px auto; }
.counter-label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #666; }
@media (max-width: 640px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item:nth-child(3) { border-right: 1px solid #e8e8e8; border-top: 1px solid #e8e8e8; }
  .counter-item:nth-child(4) { border-top: 1px solid #e8e8e8; border-right: none; }
}

.cta-banner { background: var(--clr-accent); padding: clamp(48px, 6vw, 80px) 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.88); margin-bottom: 28px; font-size: 1.05rem; max-width: 520px; margin-inline: auto; }
.cta-banner .btn-outline-white:hover { color: var(--clr-accent); }
.cta-banner .btn-green { background: #1a1a1a; border-color: #1a1a1a; }
.cta-banner .btn-green:hover { background: #000; border-color: #000; }

/* =============================================
   CONTACT GRID
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow .2s;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--clr-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary);
}
.contact-card h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--clr-text-muted); line-height: 1.6; }
.contact-card a:hover { color: var(--clr-primary); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #111; color: rgba(255,255,255,.7); padding-top: 64px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: .9rem; line-height: 1.75; margin-bottom: 20px; }
.footer-cert {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 8px 14px;
  font-size: .78rem; color: rgba(255,255,255,.55);
}
.footer-cert svg { color: var(--clr-accent); flex-shrink: 0; }
.footer-links h4, .footer-contact h4 {
  color: #fff; font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--clr-accent); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-icon { color: var(--clr-accent); flex-shrink: 0; margin-top: 1px; }
.footer-contact-row span { font-size: .88rem; line-height: 1.6; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 20px 0; font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom nav { display: flex; gap: 20px; }

/* =============================================
   MISC COMPONENTS
   ============================================= */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 100px;
  font-size: .75rem; font-weight: 600;
}
.badge-green { background: #ecfdf5; color: #065f46; }
.badge-gold { background: #fffbeb; color: #92400e; }
.badge-blue { background: #eff6ff; color: #1d4ed8; }

.info-box {
  background: var(--clr-light); border-left: 4px solid var(--clr-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
}
.info-box p { font-size: .9rem; color: var(--clr-text-muted); }

.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--clr-border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--clr-primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.step-content h4 { margin-bottom: 6px; font-size: 1rem; }
.step-content p { color: var(--clr-text-muted); font-size: .9rem; line-height: 1.6; }

/* WhatsApp float button */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

/* =============================================
   RESPONSIVE HELPERS
   ============================================= */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
}
