/* ═══════════════════════════════════════════
   Vegas Digital Designs — Main Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --ink:    #07131a;
  --navy:   #031018;
  --navy2:  #061c25;
  --teal:   #006b73;
  --teal2:  #00858b;
  --gold:   #c9a040;
  --gold2:  #e2b94a;
  --gold3:  #b8901e;
  --cream:  #fbf8f2;
  --paper:  #fffdfa;
  --line:   #d9ddd9;
  --text:   #0f1518;
  --muted:  #606a70;
  --radius: 12px;
  --shadow: 0 10px 25px rgba(8,19,27,.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: auto; }

/* ═══ HEADER ═══ */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0; left: 0; right: 0;
  background: rgba(2,12,18,.9);
  border-bottom: 1px solid rgba(201,160,64,.45);
  backdrop-filter: blur(6px);
}
.header-inner {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── Logo ── */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-logo-img {
  height: 120px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}
.brand-logo-sm {
  height: 90px;
}

/* ── Phone ── */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s;
}
.header-phone:hover { color: var(--gold2); }
.header-phone svg { color: var(--gold); flex-shrink: 0; }

/* ── Nav ── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.primary-nav > a:not(.btn):hover { color: var(--gold2); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 26px;
  cursor: pointer;
  padding: 4px;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 13px 24px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }

/* Gold is the primary CTA color — NO orange anywhere */
.btn-gold {
  background: linear-gradient(90deg, #c9a040, #b8901e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201,160,64,.3);
}
.btn-teal {
  background: linear-gradient(90deg, #006070, #007a82);
  color: #fff;
}
.btn-outline {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.05);
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
.full { width: 100%; margin-top: auto; font-size: 16px; padding: 15px; }

/* ═══ HERO ═══ */
.hero {
  min-height: 530px;
  position: relative;
  background: radial-gradient(circle at 72% 50%, #0a2731 0, #05151d 36%, #020a0f 70%);
  overflow: hidden;
  padding-top: 110px;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: #152f38;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  min-height: 458px;
}
.hero-copy { padding: 52px 0 38px 72px; }
.hero-copy h1 {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 22px;
  font-weight: 900;
}
.hero-lead {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #e2eaed;
}
.hero-body {
  font-size: 16px;
  max-width: 480px;
  margin: 0 0 30px;
  color: #cad5d9;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 440px;
  overflow: hidden;
  position: relative;
}
.hero-art img { width: 100%; height: auto; object-fit: cover; object-position: left bottom; }
.guide-hero-btn {
  position: absolute;
  right: 34px;
  bottom: 18px;
  z-index: 3;
  white-space: nowrap;
  font-size: 14px;
  padding: 13px 22px;
}

/* ═══ PRICING ═══ */
.pricing-section {
  padding: 36px 0 20px;
  background: linear-gradient(#fffdfa, #fbf8f3);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.package-card {
  position: relative;
  background: rgba(255,255,255,.72);
  border: 1px solid #bccbd0;
  border-radius: 10px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  box-shadow: 0 2px 10px rgba(9,30,39,.04);
}
.package-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 28px rgba(201,160,64,.15);
}
.popular-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  border-radius: 5px;
  padding: 7px 24px;
  white-space: nowrap;
  letter-spacing: 1px;
}
.card-title { text-align: center; font-size: 22px; margin: 0 0 4px; }
.teal-title  { color: #075e69; }
.gold-title  { color: var(--gold3); margin-top: 4px; }
.price {
  text-align: center;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
  margin: 4px 0 5px;
  color: #080b0d;
}
.starting-at { text-align: center; font-size: 12px; color: var(--muted); margin-bottom: -2px; }
.package-subtitle { text-align: center; margin: 0 0 16px; font-size: 14px; color: var(--muted); }
.carryover { text-align: center; font-weight: 800; font-size: 14px; margin: -2px 0 14px; }
.gold-text { color: var(--gold3); }
.teal-text { color: #00606c; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}
.feature-list li { position: relative; padding-left: 26px; line-height: 1.4; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}
.teal-checks li::before { background: #00616b; }
.gold-checks li::before { background: var(--gold3); }

/* ═══ SERVICES ═══ */
.services-section { padding: 0 0 20px; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 24px;
}
.care-card {
  background: radial-gradient(circle at 25% 20%, #07313d, #03131c 50%, #020b10);
  border-radius: 12px;
  color: #fff;
  display: grid;
  grid-template-columns: 28% 72%;
  padding: 18px 22px;
  min-height: 230px;
  box-shadow: var(--shadow);
  align-items: center;
}
.care-graphic { display: flex; align-items: center; justify-content: center; }
.care-graphic img { width: 128px; max-width: 100%; border-radius: 10px; }
.care-content h2 { font-size: 21px; margin: 0 0 2px; }
.care-content > p { font-size: 13px; margin: 0 0 8px; color: #e8f0f2; }
.care-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.care-columns ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 5px; font-size: 13px; }
.care-columns li::before {
  content: "✓";
  color: var(--gold2);
  border: 1px solid var(--gold2);
  border-radius: 50%;
  font-size: 9px;
  margin-right: 7px;
  padding: 1px 2px;
}
.care-note { font-size: 11px !important; margin: 8px 0 10px !important; color: #b0c4ca; }
.care-button { padding: 10px 24px; font-size: 14px; }

.extras-card {
  background: rgba(255,255,255,.62);
  border: 1px solid #d7d9d7;
  border-radius: 10px;
  overflow: hidden;
}
.extras-card h2 { text-align: center; font-size: 20px; margin: 14px 0 6px; color: var(--ink); }
.extra-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #e2e2e0;
  padding: 10px 18px;
  font-size: 14px;
}
.extra-icon { color: #006571; display: flex; align-items: center; justify-content: center; }
.extra-price { color: var(--gold3); font-size: 14px; white-space: nowrap; }
.extra-price b { font-weight: 800; }

/* ═══ TESTIMONIALS ═══ */
.testimonials-section { padding: 4px 0 14px; background: var(--cream); }
.testimonials-wrap { position: relative; padding: 0 38px; }
.testimonials-wrap h2 { text-align: center; margin: 0 0 12px; font-size: 24px; }
.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 1px 12px;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start;
  background: linear-gradient(145deg, #041a24, #020b11);
  color: #fff;
  border-radius: 10px;
  min-height: 215px;
  padding: 18px 17px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.testimonial-card p { font-size: 13px; margin: 0 0 14px; line-height: 1.4; }
.testimonial-card p::before {
  content: "\201C";
  display: block;
  color: var(--gold);
  font-size: 36px;
  line-height: .25;
  margin-bottom: 10px;
  font-weight: 900;
}
.testimonial-card strong { display: block; font-size: 13px; }
.testimonial-card span { display: block; font-size: 11px; color: #cdd9dc; margin-top: 3px; }
.slider-arrow {
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  z-index: 4;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid #d0d4d3;
  background: #fff;
  color: #17353d;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.slider-arrow:hover { background: #e8f0f1; border-color: #a5b4b6; }
.prev { left: 0; }
.next { right: 0; }
.slider-dots { text-align: center; margin-top: 4px; }
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c3c4c4;
  margin: 0 3px;
  transition: background .3s;
  cursor: pointer;
}
.dot.active { background: var(--gold); }

/* ═══ FAQ ═══ */
.faq-section { padding: 0 0 28px; background: var(--cream); overflow: hidden; }
.faq-section h2 { text-align: center; font-size: 24px; margin: 0 0 10px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
}
.faq-grid details {
  background: rgba(255,255,255,.62);
  border: 1px solid #dededd;
  border-radius: 7px;
  padding: 0 16px;
}
.faq-grid summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 24px 13px 0;
  font-weight: 700;
  font-size: 14px;
  position: relative;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "⌄";
  position: absolute;
  right: 2px;
  font-size: 20px;
  top: 8px;
  transition: transform .25s;
}
.faq-grid details[open] summary::after { transform: rotate(180deg); }
.faq-grid details p {
  font-size: 13px;
  color: #4b5458;
  margin: 0 0 14px;
  border-top: 1px solid #e2e2e0;
  padding-top: 10px;
  line-height: 1.6;
}

/* ═══ BOTTOM CTA ═══ */
.bottom-cta {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #020c11, #061520, #020c11);
  color: #fff;
  min-height: 140px;
  overflow: hidden;
  /* No margin, no border-radius — full width flush */
}
.cta-skyline {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: auto;
  opacity: .9;
  pointer-events: none;
}
.cta-left { left: 0; }
.cta-right { right: 0; }
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 0 22px;
}
.cta-content h2 { font-size: 28px; margin: 0 0 14px; }

/* ═══ FOOTER ═══ */
.site-footer { background: #031019; color: #fff; padding: 20px 0 10px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1.8fr;
  gap: 36px;
  align-items: start;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-brand p { font-size: 13px; line-height: 1.55; margin: 0; color: #adb8bc; }
.footer-col h3 { font-size: 13px; margin: 2px 0 7px; color: #fff; }
.footer-col a,
.footer-col span { display: block; font-size: 12px; line-height: 1.7; color: #adb8bc; }
.footer-col a:hover { color: var(--gold2); }
.copyright {
  border-top: 1px solid #18323d;
  width: min(760px, 90%);
  margin: 10px auto 0;
  padding-top: 8px;
  text-align: center;
  font-size: 11px;
  color: #9aa7ad;
}

/* ═══ INNER PAGES (get-started, thank-you) ═══ */
.inner-page { background: #f4f2ee; min-height: 100vh; }
.inner-header {
  background: #031019;
  border-bottom: 1px solid rgba(201,160,64,.4);
  position: static;
}
.inner-main { padding: 52px 0 80px; }
.form-shell {
  max-width: 840px;
  margin: auto;
  background: #fff;
  border: 1px solid #d9dddc;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 36px 40px;
}
.form-shell h1 { margin: 0 0 8px; font-size: 36px; }
.form-shell .intro { color: #5b6468; margin: 0 0 28px; font-size: 16px; line-height: 1.55; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; color: var(--ink); }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd5d6;
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--text);
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,107,115,.12);
}
.field select { appearance: auto; }
.field textarea { min-height: 140px; resize: vertical; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: 14px; margin-top: 4px; }
.checks label { display: flex; align-items: center; gap: 10px; font-weight: 500; cursor: pointer; color: var(--text); }
.checks input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; }
.legal-note { font-size: 12px; color: #6a7477; margin-top: 12px; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.success-box { text-align: center; padding: 60px 30px; }
.success-box h1 { font-size: 38px; margin-bottom: 12px; }
.success-box p  { font-size: 16px; color: #4b5458; line-height: 1.6; margin-bottom: 16px; }

/* ═══ RESPONSIVE — Tablet ═══ */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 50% 50%; }
  .hero-copy { padding-left: 36px; }
  .hero-copy h1 { font-size: 44px; }
  .pricing-grid { gap: 18px; }
  .package-card { padding: 24px 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-track { grid-auto-columns: calc((100% - 16px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-art { height: 390px; }
}

/* ═══ RESPONSIVE — Mobile ═══ */
@media (max-width: 740px) {
  .container { width: calc(100% - 28px); }
  .site-header { position: relative; background: #031019; }
  .header-inner { height: 80px; }
  .header-phone { font-size: 15px; }
  .nav-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #031019;
    padding: 16px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid rgba(201,160,64,.4);
    z-index: 30;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 11px 4px; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .hero { padding-top: 0; min-height: auto; }
  .hero-skyline { height: 55%; opacity: .6; }
  .hero-grid { display: block; min-height: 0; }
  .hero-copy { padding: 52px 10px 28px; }
  .hero-copy h1 { font-size: 38px; letter-spacing: -1.5px; }
  .hero-lead { font-size: 16px; }
  .hero-body { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-art {
    height: auto;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
  }
  .hero-art img { width: 100%; margin-left: 0; }
  .guide-hero-btn {
    position: static;
    width: calc(100% - 20px);
    margin: 10px auto 24px;
    white-space: normal;
    text-align: center;
  }
  .pricing-section { padding-top: 30px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
  .package-card { min-height: auto; }
  .popular-badge { top: -16px; }
  .services-grid { display: block; }
  .care-card { grid-template-columns: 1fr; padding: 20px; margin-bottom: 18px; }
  .care-graphic img { width: 110px; margin: 0 auto 12px; }
  .extras-card { margin-top: 0; }
  .testimonial-track { grid-auto-columns: 100%; }
  .testimonials-wrap { padding: 0 30px; }
  .testimonial-card { min-height: 230px; }
  .faq-grid { grid-template-columns: 1fr; }
  .bottom-cta { min-height: 160px; }
  .cta-skyline { opacity: .5; }
  .cta-content { padding: 24px 0; }
  .cta-content h2 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .form-shell { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .checks { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: 32px; }
  .brand-vegas { font-size: 22px; }
  .header-phone { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}


html,
body {
  max-width: 100%;
  overflow-x: hidden;
}