/* ================================================================
   SITEWORKS.TECH — Global Stylesheet
   Design: Dark premium · Plus Jakarta Sans + Inter · Gold accent
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #08090d;
  --surface:  #111318;
  --elevated: #1a1f2e;
  --border:   rgba(255,255,255,.08);
  --gold:     #c8a96e;
  --gold-lt:  #e8c98a;
  --gold-dk:  #a8893e;
  --text:     #e8e9ed;
  --muted:    #6b7280;
  --dim:      #374151;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-card: 0 1px 3px rgba(0,0,0,.4), 0 8px 32px rgba(0,0,0,.3);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.br-desktop { display: block; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.btn-gold {
  background: var(--gold);
  color: #0a0b0e;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,169,110,.3); }

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(8,9,13,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark { display: none; }
.nav-logo-text { display: none; }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.6)) drop-shadow(0 0 2px rgba(255,255,255,.3));
  transition: opacity .2s;
}
.nav-logo-img:hover { opacity: .85; }
.footer-logo-img {
  height: 52px;
  filter: none;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-toggle { display: none; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(200,169,110,.18) 0%, rgba(200,169,110,.05) 50%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: .8; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;  transform: translateX(-50%) scale(1.08); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(200,169,110,.12);
  border: 1px solid rgba(200,169,110,.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 16px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  flex: 1;
  min-width: 0;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}
.hero-stat span {
  font-size: 11px; color: var(--muted);
  margin-top: 2px; font-weight: 500;
  white-space: nowrap;
}
.hero-stat-div {
  width: 1px; height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-dark { background: var(--surface); }
.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--muted); line-height: 1.65;
  max-width: 520px; margin-bottom: 48px;
}

/* ── PRODUCTS GRID ───────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.product-card--featured {
  border-color: rgba(200,169,110,.3);
  background: linear-gradient(160deg, #14182a 0%, var(--surface) 60%);
}
.product-card--featured:hover { border-color: rgba(200,169,110,.5); box-shadow: 0 20px 60px rgba(200,169,110,.1); }
.product-card--soon { opacity: .85; }
.product-card--soon:hover { opacity: 1; }

.product-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.product-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.product-icon--ed { background: rgba(200,169,110,.15); color: var(--gold); }
.product-icon--fl { background: rgba(99,179,237,.12); color: #63b3ed; }
.product-icon--go { background: rgba(154,230,180,.12); color: #9ae6b4; }

.product-badge {
  font-size: 11px; font-weight: 800;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: .3px; text-transform: uppercase;
}
.product-badge--live { background: rgba(34,197,94,.15); color: #22c55e; }
.product-badge--soon { background: rgba(107,114,128,.15); color: var(--muted); }

.product-version { font-size: 12px; color: var(--muted); font-weight: 500; }
.product-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  line-height: 1.2; color: var(--text);
}
.product-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.product-pricing {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.product-price-free { font-size: 14px; font-weight: 800; color: #22c55e; }
.product-price-sep  { font-size: 12px; color: var(--muted); }
.product-price-pro  { font-size: 14px; font-weight: 700; color: var(--gold); }

/* ── BENTO GRID ───────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color .2s;
}
.bento-card:hover { border-color: rgba(200,169,110,.25); }
.bento-card--wide { grid-column: span 2; }
.bento-card--accent {
  background: linear-gradient(135deg, rgba(200,169,110,.12), rgba(200,169,110,.05));
  border-color: rgba(200,169,110,.2);
}
.bento-icon { font-size: 28px; margin-bottom: 14px; }
.bento-number {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900;
  color: var(--gold); letter-spacing: -1px;
  margin-bottom: 8px; line-height: 1;
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800;
  color: var(--text); margin-bottom: 8px;
}
.bento-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── PRICING GRID ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.pricing-card--featured {
  border-color: rgba(200,169,110,.4);
  background: linear-gradient(160deg, #14182a, var(--surface));
  transform: scale(1.02);
  box-shadow: 0 0 0 1px rgba(200,169,110,.2), 0 24px 60px rgba(0,0,0,.4);
}
.pricing-popular {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0b0e;
  font-size: 11px; font-weight: 900;
  padding: 3px 14px; border-radius: 100px;
  letter-spacing: .5px; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  color: var(--muted); text-transform: uppercase; letter-spacing: 1px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 900;
  color: var(--text); letter-spacing: -2px; line-height: 1;
}
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.pricing-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.pricing-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 9px; flex: 1;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-features li { font-size: 14px; color: var(--muted); }
.pricing-features li strong { color: var(--text); }

/* ── CTA STRIP ────────────────────────────────────────── */
.cta-strip {
  position: relative;
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,169,110,.1), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; color: var(--text);
  margin-bottom: 8px; letter-spacing: -.5px;
}
.cta-inner p { font-size: 15px; color: var(--muted); }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer { padding: 64px 0 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  color: var(--gold) !important;
  letter-spacing: .3px;
}
.footer-links { display: contents; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  color: var(--text); text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: var(--muted); transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* ── ELITEDRIVE PRODUCT PAGE ──────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,169,110,.15), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.page-hero-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(200,169,110,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.page-hero-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 800; color: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900; letter-spacing: -2px;
  color: var(--text); margin-bottom: 20px; line-height: 1.1;
}
.page-hero-sub {
  font-size: 18px; color: var(--muted); max-width: 540px;
  margin: 0 auto 36px; line-height: 1.65;
}
.page-hero-actions {
  display: flex; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
}
.version-badge {
  display: inline-block;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px; font-weight: 700; color: var(--muted);
  padding: 4px 12px;
}

/* Feature sections */
.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: border-color .2s;
}
.feature-item:hover { border-color: rgba(200,169,110,.25); }
.feature-item-icon {
  font-size: 24px; margin-bottom: 12px;
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: var(--text); margin-bottom: 8px;
}
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Presets preview strip */
.presets-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.preset-thumb {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.preset-thumb:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.preset-thumb-img { flex: 1; }
.preset-thumb-footer {
  padding: 8px 10px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.preset-thumb-name {
  font-size: 11px; font-weight: 800;
  color: var(--text); text-transform: uppercase; letter-spacing: .5px;
}
.preset-thumb-tag {
  font-size: 10px;
  color: var(--gold);
}
/* Preset mock visuals */
.pt-marquee { background: linear-gradient(160deg, #fff 0%, #f4f5f7 100%); }
.pt-noir    { background: linear-gradient(160deg, #080b12, #1a2030); }
.pt-studio  { background: linear-gradient(160deg, #fff, #f8f9fb); }
.pt-boulevard { background: linear-gradient(135deg, #d0d4dc 45%, #0d1424 45%); }
.pt-minimal { background: #fff; }
.pt-apex    { background: linear-gradient(160deg, #fff, #f2f3f5); }

/* ── ABOUT PAGE ─────────────────────────────────────── */
.about-content {
  max-width: 680px;
  margin: 0 auto;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--text); margin: 40px 0 14px;
}
.about-content p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-content a { color: var(--gold); text-decoration: underline; }

/* ── CONTACT PAGE ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--text); margin-bottom: 14px;
}
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-size: 14px;
}
.contact-detail span { color: var(--muted); }
.contact-detail strong { color: var(--text); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 13px; font-weight: 700; color: var(--muted);
  margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field select option { background: #1a1f2e; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── MOBILE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr 1fr; }
  .presets-strip { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(8,9,13,.97);
    padding: 20px 28px 28px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open a { display: block; padding: 10px 14px; font-size: 16px; }
  .nav-toggle {
    display: flex; flex-direction: column;
    gap: 5px; background: none; border: none;
    cursor: pointer; padding: 8px; margin-left: auto;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all .3s;
  }
  .hero-headline { letter-spacing: -1.5px; }
  .hero-stats { padding: 14px 16px; }
  .hero-stat { padding: 0 14px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .br-desktop { display: none; }
  .features-list { grid-template-columns: 1fr; }
  .presets-strip { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   PRESET CARDS — Option A (2×3 grid with visual + info)
   ================================================================ */
.presets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.preset-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.preset-card:hover {
  border-color: rgba(200,169,110,.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}

/* Visual (left side) */
.preset-card-visual {
  aspect-ratio: auto;
  min-height: 260px;
  padding: 16px;
  border-right: 1px solid var(--border);
}
.pt-marquee { background: #f4f5f7; }
.pt-noir    { background: #080b12; }

/* Info (right side) */
.preset-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.preset-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.preset-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.3px;
  margin-bottom: 6px;
}
.preset-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.preset-card-tag--free {
  background: rgba(34,197,94,.15);
  color: #22c55e;
}
.preset-card-tag--pro {
  background: rgba(200,169,110,.15);
  color: var(--gold);
}
.preset-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.preset-card-best {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.preset-best-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.preset-best-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
  .presets-grid { grid-template-columns: 1fr; }
  .preset-card  { grid-template-columns: 1fr; }
  .preset-card-visual { border-right: none; border-bottom: 1px solid var(--border); min-height: 200px; }
}
@media (max-width: 600px) {
  .preset-card-name { font-size: 18px; }
}

/* ── Vehicle photo enhancements in preset cards ── */
.preset-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Ensure badge overlays sit above photos */
.pt-img-area span,
.preset-card-visual [style*="position:absolute"] {
  z-index: 2;
}
/* Slight vignette on all preset photos for badge legibility */
.pt-img-area::after,
.preset-card-visual > div::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
