/* AEGI72 Landing Page — Main Stylesheet */
/* Google Fonts loaded via wp_enqueue_style in functions.php */


/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #1A1A18; color: #F2EFE8; overflow-x: hidden; }
a, button { cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

/* ─── CSS VARIABLES ─── */
:root {
  --brand: #E86010;
  --brand-light: #F0842A;
  --brand-dark: #C4510C;
  --green: #4A5C3A;
  --green-light: #6B7D58;
  --bg-dark: #1A1A18;
  --bg-mid: #2B2B28;
  --bg-deep: #111110;
  --text: #F2EFE8;
  --muted: #7A7D78;
  --border: rgba(255,255,255,0.07);
  --border-soft: rgba(255,255,255,0.04);

  /* Spacing */
  --px: 28px;
  --section-py: 56px;
}

/* ─── RESPONSIVE SPACING ─── */
@media (max-width: 480px) {
  :root {
    --px: 18px;
    --section-py: 40px;
  }
}

/* ─── NAVIGATION ─── */
.lp-nav {
  background: rgba(26,26,24,0.97);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lp-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
}
.lp-logo span { color: var(--brand); }

/* Desktop nav links */
.lp-nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.lp-nav-links a {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 6px 14px !important;
  border-radius: 2px;
}
.lp-nav-cta:hover { background: var(--brand-dark) !important; }

/* Hamburger (mobile only) */
.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.lp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.lp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.open span:nth-child(2) { opacity: 0; }
.lp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.lp-nav-drawer {
  display: none;
  position: fixed;
  top: 49px;
  left: 0; right: 0;
  background: rgba(17,17,16,0.98);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--px) 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.lp-nav-drawer.open { display: flex; }
.lp-nav-drawer a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s;
}
.lp-nav-drawer a:hover { color: var(--text); }
.lp-nav-drawer .lp-nav-cta {
  margin-top: 8px;
  text-align: center;
  padding: 12px !important;
  border-bottom: none !important;
  border-radius: 2px;
}

/* ─── HERO ─── */
.lp-hero {
  background: var(--bg-dark);
  padding: 48px var(--px) 40px;
  position: relative;
  overflow: hidden;
}
.lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.lp-hero-glow {
  position: absolute; top: 0; right: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232,96,16,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.lp-hero-glow2 {
  position: absolute; bottom: -5%; left: -5%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(74,92,58,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.lp-hero-content { position: relative; z-index: 2; }

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(74,92,58,0.15);
  border: 1px solid rgba(74,92,58,0.4);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}
.lp-badge-dot {
  width: 5px; height: 5px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.lp-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.lp-h1 .acc { color: var(--brand); font-style: italic; }

.lp-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 460px;
  margin: 16px 0 28px;
}
.lp-sub strong { color: var(--text); font-weight: 500; }

.lp-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--brand);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 2px;
}
.lp-btn:hover { background: var(--brand-dark); }
.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 20px;
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  border-radius: 2px;
}
.lp-btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

.lp-trust {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.t-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.t-num span { color: var(--brand); }
.t-lbl { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* Hero image */
.hero-img-wrap {
  margin-top: 32px;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 4px;
}
.hero-img-wrap img { width: 100%; height: auto; }

/* ─── URGENCY BAR ─── */
.lp-urgency {
  background: var(--green);
  padding: 10px var(--px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.u-pill {
  background: rgba(255,255,255,0.15);
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.u-txt { font-size: 12px; font-weight: 500; color: #d4e0c4; }
.u-txt strong { color: #fff; }

/* ─── SECTIONS ─── */
.lp-sec {
  padding: var(--section-py) var(--px);
  background: var(--bg-mid);
}
.lp-sec-alt {
  padding: var(--section-py) var(--px);
  background: var(--bg-dark);
}
.sec-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.lp-sec h2, .lp-sec-alt h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.lp-sec h2 em, .lp-sec-alt h2 em { color: var(--brand); font-style: italic; }
.lp-sec p, .lp-sec-alt p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 12px;
}
.lp-sec p strong, .lp-sec-alt p strong { color: var(--text); font-weight: 500; }

/* ─── WHY STATS ─── */
.why-stats { display: flex; flex-direction: column; gap: 2px; margin-top: 28px; }
.why-stat {
  display: flex;
  align-items: stretch;
  background: var(--bg-dark);
  border: 1px solid var(--border-soft);
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.why-stat:hover { border-color: rgba(232,96,16,0.25); }
.ws-bar { width: 3px; background: var(--brand); margin-right: 16px; flex-shrink: 0; border-radius: 2px; }
.ws-bar.t { background: var(--green-light); }
.ws-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.ws-text { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Section divider image */
.sec-img {
  width: 100%;
  overflow: hidden;
  max-height: 300px;
}
.sec-img img { width: 100%; height: 300px; object-fit: cover; object-position: center; }

/* ─── KIT GRID ─── */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  margin-top: 40px;
}
.kit-card {
  background: var(--bg-mid);
  padding: 20px 18px;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.kit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.kit-card.tc::before { background: var(--green-light); }
.kit-card:hover::before { transform: scaleX(1); }
.kit-card:hover { background: #2e2e2b; }
.k-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.k-cat.tc { color: var(--green-light); }
.kit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.kit-items { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.kit-items li {
  font-size: 11px;
  color: var(--muted);
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
}
.kit-items li::before {
  content: '—';
  position: absolute; left: 0;
  color: rgba(232,96,16,0.4);
  font-size: 10px;
}

/* ─── PRESALE SECTION ─── */
.presale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Stack on mobile */
@media (max-width: 700px) {
  .presale-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.price-card {
  background: var(--bg-deep);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  margin-top: 28px;
}
.price-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--green-light));
}
.p-badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.p-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.p-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.p-curr {
  font-family: 'DM Mono', monospace;
  font-size: 40px;
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
}
.p-orig {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}
.p-save { font-size: 12px; color: var(--green-light); font-weight: 500; margin-bottom: 18px; }
.p-inc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.p-inc li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.chk {
  width: 14px; height: 14px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 8px;
  color: #c8d8b0;
  font-weight: 700;
}
.stock-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 5px;
}
.stock-lbl strong { color: var(--text); }
.stock-bar { height: 3px; background: rgba(255,255,255,0.07); overflow: hidden; border-radius: 2px; }
.stock-fill { height: 100%; width: 67%; background: linear-gradient(90deg, var(--green-light), var(--brand)); }

/* ─── FORM ─── */
.presale-form { display: flex; flex-direction: column; gap: 10px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f-grp { display: flex; flex-direction: column; gap: 5px; }
.f-grp label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.f-grp input, .f-grp select {
  background: var(--bg-deep);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 2px;
}
.f-grp input:focus, .f-grp select:focus { border-color: var(--brand); }
.f-grp input::placeholder { color: var(--muted); opacity: 0.5; }
.f-grp select option { background: var(--bg-dark); color: var(--text); }

.btn-reserve {
  width: 100%;
  padding: 15px;
  background: var(--brand);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
  border-radius: 2px;
}
.btn-reserve:hover { background: var(--brand-dark); }
.f-disc {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
  opacity: 0.7;
}

.success-wrap {
  display: none;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-deep);
  border: 1px solid rgba(74,92,58,0.4);
  border-radius: 2px;
}
.success-wrap.show { display: block; }
.success-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}
.success-wrap p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 32px; }
.faq-item {
  background: var(--bg-mid);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s, opacity 0.2s;
}
.faq-icon::before { width: 7px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 7px; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 16px; }

/* ─── FOOTER ─── */
.lp-footer {
  background: var(--bg-deep);
  padding: 32px var(--px);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.f-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; color: var(--text); }
.f-logo span { color: var(--brand); }
.f-tag { font-size: 10px; color: var(--muted); margin-top: 3px; letter-spacing: 1px; text-transform: uppercase; }
.f-links { display: flex; gap: 16px; flex-wrap: wrap; }
.f-links a { font-size: 11px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: var(--text); }
.f-copy {
  font-size: 10px;
  color: #2e2e2b;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  margin-top: 4px;
}

/* ─── UTILITY ─── */
.section-cta { text-align: center; margin-top: 48px; }

/* ─── RESPONSIVE BREAKPOINTS ─── */

/* Tablet: 481px – 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .lp-nav-links { display: none; }
  .lp-hamburger { display: flex; }

  .lp-h1 { font-size: 42px; }

  .kit-grid { grid-template-columns: repeat(2, 1fr); }

  .presale-grid { grid-template-columns: 1fr; gap: 28px; }

  .lp-footer { flex-direction: column; gap: 16px; }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
  .lp-nav-links { display: none; }
  .lp-hamburger { display: flex; }

  .lp-hero { padding: 32px var(--px) 28px; }

  .lp-h1 { font-size: clamp(32px, 9vw, 38px); letter-spacing: -1px; }

  .lp-sub { font-size: 13px; }

  .lp-actions { flex-direction: column; align-items: stretch; }
  .lp-btn, .lp-btn-ghost { text-align: center; justify-content: center; }

  .lp-trust { gap: 16px; }
  .t-num { font-size: 18px; }

  .kit-grid { grid-template-columns: 1fr 1fr; }

  .f-row { grid-template-columns: 1fr; }

  .presale-grid { grid-template-columns: 1fr; gap: 24px; }

  .price-card { padding: 20px 16px; }
  .p-curr { font-size: 32px; }

  .lp-footer { flex-direction: column; gap: 16px; }
  .f-links { gap: 12px; }

  .sec-img img { height: 200px; }
}

/* Large desktop: > 1024px */
@media (min-width: 1025px) {
  :root { --px: 48px; --section-py: 72px; }

  .lp-nav { padding: 16px var(--px); }

  .lp-hero { padding: 72px var(--px) 56px; }

  .lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .hero-img-wrap { margin-top: 0; }

  .lp-h1 { font-size: 58px; }

  .kit-grid { grid-template-columns: repeat(5, 1fr); }

  .presale-grid { grid-template-columns: 1fr 1fr; gap: 60px; }

  .lp-sec h2, .lp-sec-alt h2 { font-size: 36px; }
}

/* Wide: > 1280px – max content width */
@media (min-width: 1280px) {
  :root { --px: 64px; }

  .lp-hero { padding: 80px var(--px) 64px; }

  .lp-h1 { font-size: 64px; }

  .kit-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ─── RISKS BANNER ─── */
.risks-banner {
  background: #111110;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 40px var(--px);
}
.risks-inner { max-width: 900px; }
.risks-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E86010;
  margin-bottom: 24px;
}
.risks-grid {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.risks-grid::-webkit-scrollbar { display: none; }
.risk-item {
  flex: 0 0 auto;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.risk-item:last-child { border-right: none; }
.risk-item:hover { background: rgba(255,255,255,0.02); }
.risk-icon { width: 56px; height: 56px; margin-bottom: 12px; }
.risk-name {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: #F2EFE8;
  margin-bottom: 5px;
}
.risk-desc {
  font-size: 10px;
  color: #7A7D78;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .risks-grid { gap: 0; }
  .risk-item { width: 120px; padding: 16px 10px; }
}
@media (min-width: 1025px) {
  .risks-grid { flex-wrap: wrap; gap: 2px; }
  .risk-item { flex: 1; width: auto; border: 1px solid rgba(255,255,255,0.04); }
}

/* ─── KIT SHOWCASE ─── */
.kit-showcase {
  background: #0e0e0d;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.kit-showcase-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 340px;
}
.kit-showcase-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  background: #0e0e0d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.kit-showcase-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.6));
}
.kit-showcase-content {
  padding: 40px var(--px) 40px 48px;
  border-left: 1px solid rgba(255,255,255,0.05);
}
.kit-showcase-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E86010;
  margin-bottom: 12px;
}
.kit-showcase-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #F2EFE8;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.kit-showcase-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.kit-showcase-items li {
  font-size: 12px;
  color: #7A7D78;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.kit-showcase-items li::before {
  content: '—';
  position: absolute; left: 0;
  color: rgba(232,96,16,0.5);
  font-size: 10px;
}
.kit-showcase-items li strong { color: #F2EFE8; font-weight: 500; }

@media (max-width: 768px) {
  .kit-showcase-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .kit-showcase-img-wrap {
    min-height: 280px;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .kit-showcase-content {
    padding: 28px var(--px);
    border-left: none;
  }
}
@media (min-width: 1025px) {
  .kit-showcase-img-wrap { min-height: 440px; padding: 32px 48px; }
  .kit-showcase-img { max-width: 520px; }
}

