/* ═══════════════════════════════════════════════
   DogCamps Singapore — Unified Design System
   v2.0 — Jul 2026
   Public site + Dashboard + Admin
═══════════════════════════════════════════════ */

:root {
  /* Brand colours */
  --blue: #0e4bff;
  --deep-blue: #062c9f;
  --navy: #061344;
  --pink: #ff1e86;
  --green: #54a80f;
  --orange: #ff8a00;
  --purple: #7928ca;
  --white: #ffffff;
  --soft: #f7fbff;
  --text: #101936;
  --muted: #596176;
  --border: #e8ecf5;
  --shadow: 0 18px 45px rgba(6,19,68,0.12);
  --shadow-sm: 0 4px 16px rgba(6,19,68,0.08);

  /* Radius */
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --r-pill: 999px;

  /* Layout */
  --max: 1180px;

  /* Legacy aliases for dashboard compatibility */
  --green-deep: #062c9f;
  --green-light: #f0f6ff;
  --cream: #f7fbff;
  --cream-border: #e8ecf5;
  --text-soft: #596176;
  --text-muted: #8892a4;
  --text-faint: #b0b8cc;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  box-shadow: 0 10px 24px rgba(14,75,255,.18);
  transition: transform .2s, box-shadow .2s, background .2s, opacity .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(14,75,255,.25); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--deep-blue); }
.btn-accent { background: var(--pink); color: #fff; box-shadow: 0 10px 24px rgba(255,30,134,.22); }
.btn-accent:hover { background: #d4006e; box-shadow: 0 16px 34px rgba(255,30,134,.3); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); background: #fff; box-shadow: none; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline.light { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; box-shadow: none; }
.btn-outline.light:hover { background: rgba(255,255,255,.15); }
.btn-sm { min-height: 36px; padding: 0 16px; font-size: .82rem; }
.btn-danger { background: #C0392B; color: white; }
.btn-amber { background: var(--orange); color: white; }

/* ══════════════════════════════════════════
   PUBLIC SITE — NAV
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 82px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; font-weight: 900; letter-spacing: .08em; color: var(--blue); }
.brand-main { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.paw-o { color: var(--pink); }
.brand-sub { margin-top: 8px; color: var(--pink); font-size: .82rem; letter-spacing: .42em; border-top: 3px solid var(--pink); padding-top: 8px; }
.nav { justify-self: end; display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); font-weight: 800; font-size: .92rem; }
.nav a { padding: 10px 0; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 3px; border-radius: 99px; background: var(--blue); transition: width .25s; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-cta { justify-self: end; }
.nav-staff { font-size: .78rem; min-height: 38px; padding: 0 14px; background: var(--navy); box-shadow: none; }
.nav-staff:hover { background: var(--deep-blue); transform: none; }
.menu-toggle { display: none; border: 0; background: var(--blue); color: #fff; border-radius: 12px; padding: 10px 12px; font-size: 1.2rem; cursor: pointer; }

/* ══════════════════════════════════════════
   PUBLIC SITE — HERO
══════════════════════════════════════════ */
.hero {
  max-width: var(--max);
  min-height: 520px;
  margin: 0 auto;
  padding: 38px 22px 20px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 28px;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 0 0 24px; font-size: clamp(3.1rem, 6vw, 5.6rem); line-height: .94; letter-spacing: -.06em; color: var(--navy); }
.hero h1 span { color: var(--pink); }
.hero h1 em { color: var(--green); font-style: normal; text-decoration: underline; text-decoration-thickness: 6px; text-underline-offset: 8px; }
.hero p { max-width: 470px; color: var(--text); font-size: 1.12rem; font-weight: 600; margin-bottom: 28px; }
.hero-media { min-height: 450px; border-radius: 0 0 0 120px; overflow: hidden; position: relative; }
.hero-media::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.1) 40%, rgba(255,255,255,0)); z-index: 1; }
.hero-media img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; filter: saturate(1.1); }

/* ══════════════════════════════════════════
   PUBLIC SITE — SECTIONS
══════════════════════════════════════════ */
.trust-strip, .section-card {
  max-width: var(--max);
  margin: 0 auto 32px;
  padding: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.trust-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; transform: translateY(-6px); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 6px 14px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.trust-item span { display: grid; place-items: center; min-width: 54px; height: 54px; border-radius: 50%; background: var(--blue); color: white; font-size: 1.4rem; }
.trust-item strong { display: block; font-size: .98rem; }
.trust-item small { color: var(--muted); font-weight: 700; }
.eyebrow { margin: 0 0 8px; color: var(--pink); text-align: center; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; }
section h2 { margin: 0 0 28px; text-align: center; color: var(--navy); font-size: clamp(1.6rem,3vw,2.25rem); letter-spacing: -.04em; }
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.step { position: relative; text-align: center; padding: 12px; }
.step b { position: absolute; top: 0; left: 18px; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #fff; background: var(--pink); font-size: .9rem; }
.step:nth-child(2) b { background: var(--blue); }
.step:nth-child(3) b { background: var(--green); }
.step:nth-child(4) b { background: var(--orange); }
.step:nth-child(5) b { background: var(--purple); }
.icon { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 12px; border-radius: 50%; background: #f1f5ff; font-size: 2.2rem; }
.step h3, .features h3, .why h3, .price-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1rem; }
.step p, .features p, .why p { color: var(--muted); font-size: .92rem; font-weight: 600; }
.features { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; }
.features article { padding: 18px; text-align: center; border-right: 1px solid var(--border); }
.features article:last-child { border-right: 0; }
.features span { display: block; font-size: 2.4rem; margin-bottom: 12px; }
.split { max-width: var(--max); margin: 0 auto 32px; padding: 0 22px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start; }
.moments h2, .why h2 { text-align: left; margin-bottom: 18px; }
.moments h2 span, .why h2 span { color: var(--pink); }
.moment-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 18px; }
.moment-grid article { position: relative; overflow: hidden; border-radius: var(--radius-md); min-height: 205px; box-shadow: var(--shadow); }
.moment-grid img { width: 100%; height: 100%; min-height: 205px; object-fit: cover; }
.moment-grid p { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 34px 14px 14px; color: white; font-weight: 900; background: linear-gradient(0deg,rgba(0,0,0,.75),transparent); }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.why-grid article { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: start; }
.why-grid span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: white; background: var(--blue); font-size: 1.3rem; }
.why-grid article:nth-child(even) span { background: var(--pink); }
.why-grid article:nth-child(3n) span { background: var(--green); }

/* Pricing */
.pricing { padding: 28px; }
.price-grid { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 28px; align-items: stretch; }
.price-card { position: relative; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; text-align: center; box-shadow: 0 12px 34px rgba(6,19,68,.08); }
.price-card.featured { border: 3px solid var(--pink); transform: translateY(-12px); }
.badge { position: absolute; top: -2px; left: -2px; right: -2px; padding: 9px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: var(--pink); color: white; text-transform: uppercase; font-size: .78rem; font-weight: 900; letter-spacing: .06em; }
.featured h3 { margin-top: 24px; }
.price-icon { font-size: 2rem; }
.price { margin: 4px 0 0; font-size: 3rem; line-height: 1; color: var(--navy); font-weight: 900; }
.price-card small { display: block; margin: 6px 0 18px; font-weight: 700; color: var(--muted); }
.price-card ul { margin: 20px 0; padding: 0; text-align: left; list-style: none; }
.price-card li { margin: 10px 0; padding-left: 26px; position: relative; color: var(--muted); font-size: .92rem; font-weight: 600; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

/* Footer CTA */
.footer-cta { max-width: var(--max); margin: 0 auto 28px; padding: 24px 34px; border-radius: 24px; background: linear-gradient(90deg, var(--deep-blue), var(--blue)); color: white; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-cta strong { color: #fff; font-size: 1.1rem; }
.footer-cta h2 { color: #fff; text-align: left; margin: 6px 0 0; }
.footer-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Kids Camp banner */
.kidscamp-banner { max-width: var(--max); margin: 0 auto 28px; padding: 0 22px; }
.kidscamp-banner a { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; transition: box-shadow .2s; }
.kidscamp-banner a:hover { box-shadow: 0 24px 56px rgba(6,19,68,.2); }

/* ══════════════════════════════════════════
   DASHBOARD — SHARED COMPONENTS
══════════════════════════════════════════ */

/* Dashboard nav */
.nav.dashboard-nav {
  position: sticky; top: 0; z-index: 100;
  max-width: 100%; margin: 0; padding: 0 24px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 20px;
  height: 68px; box-shadow: var(--shadow-sm);
}

/* Page hero */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%); padding: 48px 24px 40px; text-align: center; }
.page-hero-inner { max-width: 680px; margin: 0 auto; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; margin-bottom: 12px; letter-spacing: -.04em; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; font-weight: 500; }

/* Form pages */
.form-page-body { max-width: 720px; margin: 0 auto; padding: 40px 20px 80px; }
fieldset { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; }
legend { font-weight: 800; color: var(--navy); padding: 0 8px; font-size: 1rem; }
.field { margin-bottom: 20px; }
.field label, .field-label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--text); font-size: .92rem; }
.req { color: var(--pink); }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], textarea, select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: #fff; outline: none;
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); }
textarea { min-height: 100px; resize: vertical; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-group.inline { flex-direction: row; gap: 20px; }
.radio-option { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: .95rem; }
.radio-option input { width: auto; }
button[type=submit], .btn-submit {
  display: block; width: 100%; padding: 15px;
  background: var(--blue); color: white; border: none;
  border-radius: var(--r-pill); font-family: inherit;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 10px 24px rgba(14,75,255,.22);
}
button[type=submit]:hover, .btn-submit:hover { background: var(--deep-blue); transform: translateY(-2px); }
button[type=submit]:disabled, .btn-submit:disabled { background: #ccc; cursor: not-allowed; transform: none; }

/* Dashboard cards */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 24px; margin-bottom: 20px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; padding: 32px 20px; }
.dash-sub { color: var(--muted); font-size: 1rem; margin-top: 4px; }

/* Booking cards */
.booking-list { display: flex; flex-direction: column; gap: 14px; }
.booking-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 20px 22px; box-shadow: var(--shadow-sm); transition: box-shadow .15s; }
.booking-card:hover { box-shadow: var(--shadow); }
.booking-card-title { font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.booking-time { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }

/* Badges */
.badge-green { background: #e6f9ee; color: #1a7a3c; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 99px; }
.badge-blue { background: #e8f0ff; color: var(--deep-blue); font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 99px; }
.badge-red { background: #ffe8ee; color: #C0392B; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 99px; }
.badge-amber { background: #fff3e0; color: #c8822a; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 99px; }
.badge-gray { background: #f0f0f0; color: #666; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 99px; }

/* Admin sidebar */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.sidebar { background: var(--navy); padding: 24px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.sidebar-logo { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 16px; }
.sidebar-logo .brand { color: #fff; }
.sidebar-logo .brand-sub { color: rgba(255,255,255,.6); border-top-color: rgba(255,255,255,.2); }
.sidebar-link { display: flex; align-items: center; gap: 10px; width: 100%; padding: 12px 20px; background: none; border: none; color: rgba(255,255,255,.7); font-family: inherit; font-size: .9rem; font-weight: 700; cursor: pointer; text-align: left; transition: all .15s; border-left: 3px solid transparent; }
.sidebar-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.sidebar-link.active { background: rgba(14,75,255,.3); color: #fff; border-left-color: var(--blue); }
.sidebar-link .icon { font-size: 1.1rem; width: 22px; }
.admin-main { background: var(--soft); padding: 32px; overflow-y: auto; }
.page { display: none; }
.page.active { display: block; }
.page-title { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.page-sub { color: var(--muted); margin-bottom: 28px; font-size: .92rem; }

/* Admin tables */
.tbl { width: 100%; border-collapse: collapse; font-size: .88rem; }
.tbl th { background: var(--soft); padding: 12px 14px; text-align: left; font-weight: 800; color: var(--navy); border-bottom: 2px solid var(--border); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.tbl td { padding: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.tbl tr:hover td { background: #fafcff; }
.cell-name { font-weight: 700; color: var(--navy); }
.cell-sub { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* Admin forms */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 700; font-size: .88rem; color: var(--text); margin-bottom: 6px; }
.form-input { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .92rem; outline: none; }
.form-input:focus { border-color: var(--blue); }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(6,19,68,.5); z-index: 500; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius-lg); padding: 32px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 32px 80px rgba(6,19,68,.2); }
.modal-title { font-size: 1.3rem; font-weight: 900; color: var(--navy); margin-bottom: 20px; }
.modal-actions { display: flex; gap: 10px; margin-top: 24px; justify-content: flex-end; }

/* Attendance */
.att-check { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--border); cursor: pointer; font-size: 1rem; transition: all .15s; }
.att-check:hover { border-color: var(--blue); background: var(--soft); }
.att-check.present { background: #e6f9ee; border-color: var(--green); color: var(--green); }
.att-check.absent { background: #ffe8ee; border-color: #C0392B; color: #C0392B; }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--navy); color: white; padding: 12px 24px; border-radius: var(--r-pill); font-size: .88rem; font-weight: 700; box-shadow: var(--shadow); transition: transform .25s; z-index: 999; white-space: nowrap; pointer-events: none; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* Pup cards */
.pup-row { display: flex; justify-content: space-between; align-items: center; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-sm); transition: box-shadow .2s; margin-bottom: 14px; }
.pup-row:hover { box-shadow: var(--shadow); }
.pup-info { display: flex; align-items: center; gap: 18px; }
.pup-avatar { width: 60px; height: 60px; font-size: 2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--soft); border: 1px solid var(--border); flex-shrink: 0; }
.pup-details h3 { font-weight: 800; font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.pup-details p { font-size: .88rem; color: var(--muted); margin: 0; }
.pup-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-bookings { background: #e8f0ff; color: var(--deep-blue); border: 1px solid transparent; }
.btn-bookings:hover { background: var(--blue); color: white; box-shadow: none; }
.btn-edit { background: transparent; color: var(--text); border: 1px solid var(--border); box-shadow: none; }
.btn-edit:hover { border-color: var(--blue); color: var(--blue); transform: none; }
.btn-delete { background: transparent; color: #C0392B; border: 1px solid #f5c6cb; box-shadow: none; }
.btn-delete:hover { background: #fdecea; border-color: #C0392B; transform: none; }

/* Login/Register pages */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 60%, #0e4bff 100%); padding: 24px; }
.auth-card { background: #fff; border-radius: var(--radius-xl); padding: 40px; max-width: 440px; width: 100%; box-shadow: 0 32px 80px rgba(6,19,68,.3); }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-title { font-size: 1.5rem; font-weight: 900; color: var(--navy); text-align: center; margin-bottom: 6px; }
.auth-sub { color: var(--muted); text-align: center; font-size: .9rem; margin-bottom: 28px; }

/* Footer (dashboard pages) */
.footer { background: var(--navy); padding: 32px 24px; margin-top: auto; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.6); font-size: .82rem; }
.footer-paw { color: rgba(255,255,255,.4); }

/* Empty states */
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state h3 { color: var(--navy); font-size: 1.3rem; margin: 12px 0 8px; }

/* Session preview cards */
.session-preview { margin-top: 10px; padding: 16px; background: var(--soft); border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: .88rem; line-height: 1.8; }
.camp-price { font-size: 1.3rem; font-weight: 900; color: var(--navy); }

/* Dropdown nav (dashboard) */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background: #fff; min-width: 200px; box-shadow: var(--shadow); border: 1px solid var(--border); border-radius: var(--radius-md); z-index: 100; top: 100%; left: 0; overflow: hidden; padding: 8px 0; }
.dropdown-content a { color: var(--text); padding: 10px 20px; text-decoration: none; display: block; font-size: .9rem; font-weight: 700; transition: background .15s; }
.dropdown-content a:hover { background: var(--soft); color: var(--blue); }
.dropdown:hover .dropdown-content { display: block; }

/* Dashboard top nav */
.nav.dash { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; padding: 0 24px; height: 68px; box-shadow: var(--shadow-sm); max-width: 100%; margin: 0; }
.nav.dash .nav-logo { display: flex; align-items: center; gap: 10px; margin-right: 16px; }
.nav.dash .nav-logo-icon { font-size: 1.4rem; }
.nav.dash .nav-logo-text { font-weight: 900; font-size: .95rem; color: var(--navy); line-height: 1.2; }
.nav.dash .nav-logo-sub { display: block; font-size: .68rem; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; border-radius: 8px; font-size: .88rem; font-weight: 700; color: var(--muted); transition: all .15s; white-space: nowrap; }
.nav-link:hover { background: var(--soft); color: var(--navy); }
.nav-cta { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.nav-burger { display: none; background: var(--blue); border: none; color: white; border-radius: 8px; padding: 8px 12px; cursor: pointer; font-size: 1.1rem; }
.nav-burger span { display: block; width: 18px; height: 2px; background: white; margin: 3px 0; transition: all .2s; }
.nav-mobile { display: none; position: fixed; inset: 0; background: rgba(6,19,68,.95); z-index: 300; flex-direction: column; padding: 80px 24px 24px; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { color: rgba(255,255,255,.85); padding: 14px 0; font-size: 1rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-mobile a:hover { color: #fff; }

/* Coupon section */
.coupon-row { display: flex; gap: 8px; }
.coupon-input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.coupon-input:focus { border-color: var(--blue); outline: none; }
.coupon-input.valid { border-color: var(--green); background: #f0fdf4; }
.coupon-input.invalid { border-color: #C0392B; background: #fdf2f2; }
.coupon-msg { margin-top: 8px; font-size: .85rem; padding: 8px 12px; border-radius: 8px; display: none; }
.coupon-msg.success { background: #f0fdf4; color: #1a7a3c; border: 1px solid #86efac; display: block; }
.coupon-msg.error { background: #fdf2f2; color: #C0392B; border: 1px solid #f5c6cb; display: block; }
.coupon-hint { margin-top: 10px; font-size: .82rem; color: var(--muted); background: #fff3e0; border: 1px solid #f0d9b5; border-radius: 8px; padding: 10px 14px; line-height: 1.6; }
.price-breakdown { margin-top: 12px; padding: 14px 16px; background: var(--soft); border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: .9rem; line-height: 1.9; }
.price-final { font-size: 1.4rem; font-weight: 900; color: var(--navy); }
.price-strike { text-decoration: line-through; color: var(--muted); }

/* Responsive */
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle { display: inline-block; }
  .nav.site-nav { display: none; grid-column: 1/-1; justify-self: stretch; flex-direction: column; align-items: flex-start; padding: 18px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
  .nav.site-nav.open { display: flex; }
  .nav-cta.site-cta { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 20px; }
  .hero-media { min-height: 330px; border-radius: 38px; }
  .hero-media img { min-height: 330px; }
  .trust-strip, .steps, .features, .split, .price-grid { grid-template-columns: 1fr 1fr; }
  .features article:nth-child(2n) { border-right: 0; }
  .price-card.featured { transform: none; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .admin-layout { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; }
}
@media (max-width: 640px) {
  .site-header { padding: 14px 16px; }
  .brand-main { font-size: 1.35rem; }
  .brand-sub { font-size: .68rem; letter-spacing: .32em; }
  .hero { padding-inline: 16px; }
  .hero h1 { font-size: clamp(2.7rem,14vw,4rem); }
  .hero p { font-size: 1rem; }
  .trust-strip, .steps, .features, .split, .price-grid, .moment-grid, .why-grid { grid-template-columns: 1fr; }
  .trust-strip, .section-card { margin-inline: 16px; border-radius: 24px; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: 0; }
  .features article { border-right: 0; border-bottom: 1px solid var(--border); }
  .features article:last-child { border-bottom: 0; }
  .split { padding-inline: 16px; }
  .footer-cta { margin-inline: 16px; padding: 24px; }
  .btn { width: 100%; }
  .pup-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dash-grid { grid-template-columns: 1fr; }
}
