/* =========================================================
   BAYLINE MOBILE DETAILING — STYLESHEET
   -------------------------------------------------------
   Organized in sections. Search for the ALL-CAPS header
   comments below to jump to a part of the site:
   TOKENS / RESET / BUTTONS / HEADER / HERO / SERVICES /
   PACKAGE MODAL / ADD-ONS / HOW-IT-WORKS / WHY-US / REVIEWS /
   SERVICE-AREA / FAQ / CONTACT / FOOTER / MOBILE BAR /
   ANIMATIONS / MEDIA
   ========================================================= */

/* ================= TOKENS ================= */
:root {
  /* color */
  --ink: #0b0d0c;          /* page background */
  --charcoal: #15181a;      /* card / surface background */
  --charcoal-2: #1c2022;    /* raised surface */
  --steel: #2a2f2c;         /* borders / dividers */
  --fog: #9ba39d;           /* secondary text (green-tinted gray) */
  --paper: #f5f7f5;         /* primary text on dark */
  --signal: #20b890;        /* teal/green accent — sampled from the Bayline logo */
  --signal-deep: #1a9373;   /* hover / active state */
  --signal-dim: rgba(32, 184, 144, 0.14);

  /* type */
  --font-display: 'Oswald', Arial Narrow, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* layout */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius: 10px;
  --radius-sm: 6px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ================= RESET ================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body, h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ================= LAYOUT ================= */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--charcoal); }

.center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--signal);
  margin-bottom: 16px;
}
.eyebrow.center { display: flex; justify-content: center; width: 100%; }
.eyebrow-tick {
  width: 18px;
  height: 2px;
  background: var(--signal);
  display: inline-block;
  transform: skewX(-20deg);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--paper);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title.center { text-align: center; }

.section-lede {
  color: var(--fog);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 56px;
}
.section-lede.center { margin-left: auto; margin-right: auto; }

.text-signal { color: var(--signal); }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn-solid {
  background: var(--signal);
  color: #062621;
}
.btn-solid:hover { background: var(--signal-deep); box-shadow: 0 0 0 6px var(--signal-dim); transform: translateY(-1px); }

.btn-outline {
  border-color: var(--steel);
  color: var(--paper);
  background: transparent;
}
.btn-outline:hover { border-color: var(--signal); color: var(--signal); }

.btn-ghost {
  color: var(--paper);
  padding: 10px 6px;
}
.btn-ghost:hover { color: var(--signal); }

.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,13,12,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11,13,12,0.94);
  border-bottom-color: var(--steel);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; margin-right: 32px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fog);
  transition: color 0.2s var(--ease);
  position: relative;
}
.main-nav a:hover { color: var(--paper); }

.header-ctas { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
}
.nav-toggle span { width: 100%; height: 2px; background: var(--paper); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: 168px 0 120px;
  overflow: hidden;
  background: var(--ink);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 18%, black 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-copy { max-width: 780px; }
.hero-copy h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-lede {
  color: var(--fog);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--steel);
  padding-top: 32px;
}
.hero-stats li { display: flex; flex-direction: column; align-items: center; padding: 0 34px; border-left: 1px solid var(--steel); }
.hero-stats li:first-child { border-left: none; padding-left: 0; }
.hero-stats li:last-child { padding-right: 0; }
.stat-num { font-family: var(--font-mono); font-size: 26px; color: var(--signal); font-weight: 600; }
.stat-label { font-size: 12.5px; color: var(--fog); letter-spacing: 0.04em; margin-top: 2px; }

/* ================= SERVICES / PRICING ================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--charcoal);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: #3a423d; }

.price-card-featured {
  background: var(--charcoal-2);
  border-color: var(--signal);
  box-shadow: 0 0 0 1px var(--signal), 0 24px 48px rgba(32,184,144,0.12);
  transform: translateY(-10px);
  position: relative;
}
.price-card-featured:hover { transform: translateY(-14px); }

.featured-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #062621;
  background: var(--signal);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  align-self: flex-start;
}

.price-card-head { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--steel); }
.price-card-head h3 {
  font-size: 21px;
  color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.price-tag { display: flex; align-items: baseline; gap: 8px; }
.price-from { font-size: 12.5px; color: var(--fog); }
.price-num { font-family: var(--font-mono); font-size: 30px; font-weight: 600; color: var(--signal); }

.price-tiers { display: flex; flex-direction: column; gap: 8px; }
.price-tiers li { display: flex; justify-content: space-between; font-size: 14px; }
.price-tiers li span:first-child { color: var(--fog); }
.price-tiers li span:last-child { font-family: var(--font-mono); color: var(--signal); font-weight: 600; }

.price-desc { color: var(--fog); font-size: 14.5px; margin-bottom: 20px; flex-grow: 0; }

.includes { display: flex; flex-direction: column; gap: 11px; flex-grow: 1; }
.includes li { font-size: 14.5px; color: var(--paper); padding-left: 22px; position: relative; }
.includes li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 10px; height: 6px;
  border-left: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal);
  transform: rotate(-45deg);
}

.includes-more { font-size: 12.5px; color: var(--fog); margin: 14px 0 20px; }

.price-card-actions { display: flex; flex-direction: column; gap: 10px; }

.price-disclaimer {
  text-align: center;
  color: var(--fog);
  font-size: 13.5px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--steel);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= PACKAGE MODAL ================= */
/* Opened by each price card's "View Details" button; content comes from the
   <template id="detail-KEY"> blocks that sit right after the price grid. */
.package-modal {
  position: fixed; inset: 0;
  background: rgba(5,6,5,0.88);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.package-modal.is-open { opacity: 1; pointer-events: auto; }
.package-modal-panel {
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 36px;
  transform: translateY(14px);
  transition: transform 0.25s var(--ease);
}
.package-modal.is-open .package-modal-panel { transform: translateY(0); }
.package-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--charcoal-2); border: 1px solid var(--steel);
  color: var(--paper); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s;
}
.package-modal-close:hover { border-color: var(--signal); color: var(--signal); }

.package-modal-body .price-tag { margin-bottom: 18px; }
.package-modal-body .price-tiers { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--steel); }
.package-modal-body .includes { flex-grow: 0; margin-bottom: 28px; }
.modal-desc { color: var(--fog); font-size: 14.5px; margin-bottom: 26px; }
.modal-category:last-of-type .includes { margin-bottom: 28px; }
.modal-cat-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--steel);
}

/* ================= ADD-ONS ================= */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: 22px;
}
.addon-card {
  background: var(--charcoal);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.addon-card:hover { transform: translateY(-4px); border-color: #3a423d; }
.addon-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.addon-card-head h3 { font-size: 17px; color: var(--paper); text-transform: uppercase; }
.addon-price { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--signal); white-space: nowrap; }
.addon-desc { color: var(--fog); font-size: 14px; }

/* ================= HOW IT WORKS ================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { position: relative; padding-top: 8px; }
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 54px;
  font-weight: 600;
  color: var(--signal);
  opacity: 0.28;
  line-height: 1;
  margin-bottom: 4px;
}
.step h3 { font-size: 20px; text-transform: uppercase; color: var(--paper); margin-bottom: 10px; }
.step p { color: var(--fog); font-size: 15px; max-width: 320px; }

/* ================= WHY US ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}
.why-item { }
.why-icon {
  width: 34px; height: 34px;
  color: var(--signal);
  margin-bottom: 16px;
}
.why-item h3 { font-size: 16.5px; color: var(--paper); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.01em; }
.why-item p { color: var(--fog); font-size: 14.5px; }

/* ================= REVIEWS ================= */
.review-notice {
  text-align: center;
  color: var(--fog);
  font-size: 13.5px;
  max-width: 620px;
  margin: 0 auto 48px;
  padding: 14px 20px;
  border: 1px solid var(--steel);
  border-left: 3px solid var(--signal);
  border-radius: var(--radius-sm);
  background: var(--charcoal);
}
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--charcoal);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.sample-tag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fog);
  border: 1px solid var(--steel);
  padding: 3px 8px;
  border-radius: 4px;
}
.stars { color: var(--signal); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.review-quote { color: var(--paper); font-size: 15px; line-height: 1.65; margin-bottom: 22px; }
.review-name { font-weight: 600; font-size: 14px; color: var(--paper); }
.review-meta { font-size: 12.5px; color: var(--fog); margin-top: 2px; }

/* ================= SERVICE AREA ================= */
.area-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 32px; }
.area-grid li {
  background: var(--charcoal);
  border: 1px solid var(--steel);
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.area-grid li:hover { border-color: var(--signal); color: var(--signal); }
.area-note { text-align: center; color: var(--fog); font-size: 14.5px; }

/* ================= FAQ ================= */
.faq-list { border-top: 1px solid var(--steel); }
.faq-item { border-bottom: 1px solid var(--steel); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--paper);
  text-align: left;
}
.faq-icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  background: var(--signal);
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: var(--fog); font-size: 14.5px; max-width: 660px; }

/* ================= CONTACT ================= */
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 26px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-list li { display: flex; flex-direction: column; gap: 3px; }
.contact-list li strong { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fog); }
.contact-list li a, .contact-list li span { color: var(--paper); font-size: 16.5px; }
.contact-list li a:hover { color: var(--signal); }
.contact-call-btn { margin-top: 6px; }

.social-row { display: flex; gap: 14px; margin-bottom: 30px; }
.social-link {
  font-size: 13.5px;
  color: var(--fog);
  border: 1px solid var(--steel);
  padding: 8px 18px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--signal); color: var(--signal); }

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }

.contact-form {
  background: var(--charcoal);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hp-field { position: absolute; left: -9999px; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--fog); }
.field input, .field select, .field textarea {
  background: var(--ink);
  border: 1px solid var(--steel);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 14.5px;
  color: var(--paper);
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--signal); outline: none; }
.field textarea { resize: vertical; }

/* ================= FOOTER ================= */
.site-footer { background: var(--ink); border-top: 1px solid var(--steel); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-tagline { color: var(--fog); font-size: 14px; margin: 16px 0 20px; max-width: 280px; }
.footer-nav { display: flex; flex-direction: column; gap: 13px; }
.footer-nav a { color: var(--fog); font-size: 14.5px; }
.footer-nav a:hover { color: var(--signal); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-contact a { font-family: var(--font-mono); color: var(--paper); font-size: 16px; }
.footer-contact p { color: var(--fog); font-size: 14px; }
.footer-book { margin-top: 8px; }
.footer-bottom { border-top: 1px solid var(--steel); padding: 24px 0; text-align: center; margin-top: 8px; }
.footer-bottom p { color: var(--fog); font-size: 13px; }

/* ================= MOBILE STICKY BAR ================= */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--charcoal);
  border-top: 1px solid var(--steel);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  gap: 12px;
}
.mobile-bar-btn { flex: 1; text-align: center; padding: 14px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14.5px; }
.mobile-bar-call { border: 1.5px solid var(--steel); color: var(--paper); }
.mobile-bar-book { background: var(--signal); color: #062621; }

/* ================= ANIMATIONS ================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ================= MEDIA QUERIES ================= */
::selection { background: var(--signal); color: #062621; }

@media (max-width: 1080px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* ---- Mobile header refresh: bigger, more prominent logo; tighter, balanced bar ---- */
  :root { --header-h-mobile: 68px; }

  .site-header { border-bottom-color: var(--steel); }

  .header-inner {
    height: var(--header-h-mobile);
    gap: 12px;
  }
  .logo img {
    height: 42px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h-mobile); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--ink);
    padding: 6px 24px 30px;
    gap: 20px;
    border-bottom: 1px solid var(--steel);
    display: none;
    max-height: calc(100vh - var(--header-h-mobile));
    overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .header-ctas { display: none; }
  .nav-toggle { display: flex; width: 36px; height: 36px; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-contact { align-items: flex-start; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 132px 0 72px; }
  .price-grid, .why-grid, .review-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 22px 0; flex-wrap: wrap; padding-top: 24px; }
  .hero-stats li { border-left: none; padding: 0 18px; }
  .area-grid li { font-size: 13px; padding: 9px 16px; }
  .contact-form { padding: 26px 22px; }
  .package-modal { padding: 32px 16px; }
  .package-modal-panel { padding: 32px 22px; }
}
