:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --muted: #495057;
  --brand: #ff7b39; /* warm orange */
  --brand-600: #f97316;
  --accent: #16a34a; /* green-600 */
  --text: #0b1320;
  --ring: rgba(255,123,57,.25);
  --shadow: 0 10px 30px rgba(16,24,40,.15);
  --radius: 16px;
  --radius-sm: 12px;
  --gap: clamp(14px, 2vw, 22px);
  --container: min(1200px, 92vw);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
html { scroll-behavior: smooth; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
body { margin:0; font-family: var(--font); color: var(--text); overflow-x: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #fff4e9 0%, #f8fafc 65%), linear-gradient(180deg, #fff, #f6fbff);
}

/* NAV */
nav {
  position: sticky; top:0; z-index: 50;
  backdrop-filter: saturate(1.1) blur(10px);
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(16,24,40,.08);
}
.nav-inner { max-width: var(--container); width: 100%; margin: 0 auto; display:flex; align-items:center; justify-content:space-between; padding:12px clamp(12px, 4vw, 20px); }
.brand { display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px; }
.brand .logo { width:34px; height:34px; border-radius:10px; display:grid; place-items:center; color:#111; font-weight:900; background: linear-gradient(135deg, #ffd166, var(--brand)); box-shadow: var(--shadow); }
.nav-links { display:flex; gap:10px; }
.nav-links a { text-decoration:none; color: var(--text); font-weight:600; padding:10px 14px; border-radius: 999px; border:1px solid rgba(16,24,40,.06); background: rgba(255,255,255,.6); }
.nav-links a:hover { border-color: rgba(16,24,40,.15); background: #fff; }

/* HERO */
.hero { max-width: var(--container); width: 100%; margin: 32px auto 0; display:grid; grid-template-columns: 1.1fr .9fr; gap: var(--gap); align-items: stretch; padding: clamp(16px, 3vw, 28px) clamp(4px, 4vw, 20px) 32px; }
.hero-copy { background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65)); padding: clamp(14px, 2.2vw, 20px); border:1px solid rgba(16,24,40,.08); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 0; overflow-wrap: break-word; }
.eyebrow { color: var(--brand); font-weight:700; letter-spacing:.12em; text-transform: uppercase; font-size: 12px; }
h1 { margin: 6px 0 10px; font-size: clamp(28px, 5vw, 48px); line-height: 1.1; overflow-wrap: break-word; word-wrap: break-word; }
.sub { color: var(--muted); font-size: clamp(14px, 2.1vw, 18px); }
.price { margin: 18px 0 14px; font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: .3px; }
.cta { display:flex; gap:12px; align-items:center; }
.btn { cursor:pointer; border:none; outline: none; font-weight: 800; letter-spacing:.2px; padding: 14px 22px; border-radius: 12px; box-shadow: var(--shadow); transition: transform .08s ease, box-shadow .2s ease, background .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, #ffd166, var(--brand)); color:#111827; }
.btn-primary:hover { background: linear-gradient(135deg, #ffedd5, #ff994f); }
.pill { display:inline-flex; gap:8px; align-items:center; padding:8px 12px; border-radius:999px; background: rgba(255,123,57,.12); color: var(--brand); border:1px solid rgba(255,123,57,.25); font-weight:700; max-width: 100%; overflow-wrap: break-word; }

.hero-media { display:flex; min-width: 0; }
.carousel { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(16,24,40,.08); background: #ffffff; height: 100%; min-height: 320px; width:100%; max-width: 100%; }
.slides { width:100%; height:100%; display:flex; translate: 0 0; transition: translate .45s ease; will-change: transform; }
.slides img { width:100%; height:100%; object-fit: cover; flex: 0 0 100%; }
.car-nav { position:absolute; inset: 0; display:flex; justify-content:space-between; align-items:center; padding: 0 6px; pointer-events:none; }
.car-btn { pointer-events: all; width:40px; height:40px; display:grid; place-items:center; border-radius: 999px; border:1px solid rgba(16,24,40,.12); background: rgba(255,255,255,.85); backdrop-filter: blur(6px); cursor:pointer; }
.dots { position:absolute; bottom: 8px; left:0; right:0; display:flex; justify-content:center; gap:8px; }
.dot { width:8px; height:8px; border-radius:999px; background: rgba(0,0,0,.25); }
.dot.active { background: #111; }

/* SECTIONS */
section { max-width: var(--container); width: 100%; margin: 0 auto; padding: 32px clamp(12px, 4vw, 20px); }
.section-title { font-size: clamp(22px, 3.5vw, 34px); margin: 4px 0 18px; text-align: center; }
.section-sub { color: var(--muted); max-width: 70ch; }
.center { text-align:center; margin-left:auto; margin-right:auto; }

/* BENEFITS */
.grid-4 { display:grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.card { background: var(--card); border:1px solid rgba(16,24,40,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.benefit .icon-wrap { width:44px; height:44px; background: rgba(255,123,57,.15); border:1px solid rgba(255,123,57,.25); border-radius: 10px; display:grid; place-items:center; margin-bottom: 8px; }
.benefit h3 { margin: 6px 0 8px; font-size: 18px; }
.benefit p { margin:0; color: var(--muted); font-size: 15px; }

/* DESCRIPTION */
.desc { display:block; }
.desc p { color: var(--muted); line-height:1.7; }
.desc-gallery { display:grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 16px; }
.desc-gallery img { width:100%; height: 240px; object-fit: cover; border-radius: var(--radius-sm); border:1px solid rgba(16,24,40,.08); }

/* REVIEWS */
.reviews { display:grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.review .name { font-weight:800; margin-bottom: 6px; }
.review .stars { color: #f59e0b; margin-bottom: 8px; }
.review .quote { color: var(--muted); }

/* ORDER */
#order { scroll-margin-top: 70px; }
form { background: var(--card); border:1px solid rgba(16,24,40,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); max-width: 640px; margin: 0 auto; }
.field { display:grid; gap:8px; margin-bottom: 14px; }
label { font-weight:700; font-size: 14px; }
input, textarea { width:100%; padding: 12px 14px; border-radius: 12px; background: #ffffff; color: var(--text); border:1px solid rgba(16,24,40,.18); outline: none; }
input:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 6px var(--ring); }
.help { color: var(--muted); font-size: 13px; }
.form-actions { display:flex; gap:10px; align-items:center; justify-content:flex-start; margin-top: 8px; }
.note { color: var(--muted); font-size: 12px; }
.hide { display:none; }

/* FOOTER */
footer { margin-top: 28px; padding: 28px 0 48px; background: #fff7ed; border-top: 1px solid rgba(16,24,40,.08); }
.footer-inner { max-width: var(--container); width: 100%; margin: 0 auto; display:grid; grid-template-columns: 1.2fr .8fr; gap: var(--gap); padding: 0 clamp(12px, 4vw, 20px); }
.footer-brand { margin-bottom: 10px; }
.cols { display:grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.cols h4 { margin:0 0 10px; }
.cols a, .cols p { color: var(--muted); text-decoration:none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: clamp(16px, 3vw, 28px) clamp(12px, 4vw, 20px) 32px; }
}
@media (max-width: 860px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .desc-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .nav-links { gap:4px; }
  .nav-links a { padding:8px 10px; font-size: 14px; }
  .desc-gallery img { height: 180px; }
  .hero { padding: 16px 12px 32px; }
  .hero-copy { padding: 14px 12px; }
  .cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
