/* =====================================================
   LESDY'S CLEANING SOLUTION & DETAILING
   Mobile-first stylesheet
   Design: competitive cleaning industry standard —
   white/light base, strong blue accent, bold sans-serif,
   real photo hero, tight card layouts
   ===================================================== */

:root {
  --blue:       #1A6DC2;   /* primary — confident, trustworthy */
  --blue-dk:    #145299;
  --blue-lt:    #E8F1FA;
  --teal:       #17A094;   /* accent — fresh, clean */
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --gray-lt:    #EAECEF;
  --gray-mid:   #9CA3AF;
  --gray-dk:    #4B5563;
  --near-black: #111827;
  --gold:       #F59E0B;

  --ff-body:    'Inter', 'Segoe UI', Arial, sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 100px;

  --shadow: 0 2px 12px rgba(0,0,0,0.09);
  --shadow-btn: 0 4px 16px rgba(26,109,194,0.28);

  --bar-h: 66px; /* sticky bottom CTA height */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--gray-dk);
  line-height: 1.6;
  padding-bottom: var(--bar-h);
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================================================
   CONTAINER
===================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */
h1 { font-size: clamp(1.85rem, 6.5vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--near-black); }
h2 { font-size: clamp(1.4rem, 4.5vw, 2rem); font-weight: 700; line-height: 1.25; color: var(--near-black); }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--near-black); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lt);
  border-radius: var(--r-pill);
  padding: 0.3em 0.9em;
  margin-bottom: 0.65rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 { margin-bottom: 0.4rem; }
.section-head p { color: var(--gray-dk); font-size: 0.97rem; }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  padding: 0.8em 1.6em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}
.btn:active { transform: scale(0.97); }

.btn-blue { background: var(--blue); color: #fff; box-shadow: var(--shadow-btn); }
.btn-blue:hover { background: var(--blue-dk); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }

.btn-white { background: #fff; color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--blue-lt); }

.btn-full { width: 100%; }

/* =====================================================
   HEADER
===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--gray-lt);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.logo-tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.header-phone::before { content: "📞"; font-size: 0.85em; }
.desktop-nav { display: none; }

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,20,40,0.05) 0%,
    rgba(10,20,40,0.5) 50%,
    rgba(10,20,40,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem 1.25rem;
  padding-bottom: calc(2rem + var(--bar-h));
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 0.35em 0.9em;
  margin-bottom: 0.9rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-ctas .btn { font-size: 1rem; padding: 0.9em 1.5em; }

/* =====================================================
   TRUST BAR
===================================================== */
.trust-bar {
  background: var(--near-black);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1.25rem;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}
.trust-item-icon { font-size: 1rem; }

/* =====================================================
   PRICING BANNER
===================================================== */
.pricing-banner {
  background: var(--blue);
  padding: 2rem 0;
  text-align: center;
}
.price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  margin-bottom: 0.4rem;
}
.price-dollar {
  font-size: clamp(2.8rem, 10vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.price-desc {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.price-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.pricing-banner .btn { font-size: 1rem; }

/* =====================================================
   SERVICES
===================================================== */
.services-section {
  padding: 3.5rem 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem;
  border: 1px solid var(--gray-lt);
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.svc-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}
.svc-body h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.svc-body p { font-size: 0.88rem; color: var(--gray-dk); line-height: 1.5; }

/* =====================================================
   WHY US
===================================================== */
.why-section {
  padding: 3.5rem 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-card {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 1.1rem;
  text-align: center;
  border: 1px solid var(--gray-lt);
}
.why-icon { font-size: 1.7rem; margin-bottom: 0.4rem; display: block; }
.why-card h3 { font-size: 0.88rem; margin-bottom: 0.25rem; }
.why-card p { font-size: 0.8rem; color: var(--gray-dk); line-height: 1.45; }

/* =====================================================
   GALLERY
===================================================== */
.gallery-section {
  padding: 3.5rem 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.gal-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--gray-lt);
  cursor: zoom-in;
}
.gal-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gal-item img { transition: transform 0.3s; }
.gal-item:hover img { transform: scale(1.04); }

/* =====================================================
   REVIEWS
===================================================== */
.reviews-section {
  padding: 3.5rem 0;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.review-card {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--r-md);
  padding: 1.25rem;
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.review-text { font-size: 0.92rem; color: var(--gray-dk); line-height: 1.6; font-style: italic; margin-bottom: 0.75rem; }
.review-name { font-size: 0.82rem; font-weight: 700; color: var(--near-black); }

/* =====================================================
   AREAS
===================================================== */
.areas-section {
  padding: 3.5rem 0;
  background: var(--blue-lt);
}
.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.area-chip {
  background: var(--white);
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: var(--r-pill);
  padding: 0.35em 1em;
  font-size: 0.88rem;
  font-weight: 600;
}

/* =====================================================
   CONTACT / FORM
===================================================== */
.contact-section {
  padding: 3.5rem 0;
  background: var(--off-white);
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  transition: border-color 0.15s;
}
.contact-method:hover { border-color: var(--blue); }
.cm-icon { font-size: 1.6rem; flex-shrink: 0; }
.cm-label { font-size: 0.78rem; font-weight: 600; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.06em; }
.cm-value { font-size: 1rem; font-weight: 700; color: var(--blue); }

.quote-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--gray-lt);
  box-shadow: var(--shadow);
}
.quote-form h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--near-black); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 0.97rem;
  color: var(--near-black);
  background: var(--off-white);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--r-sm);
  padding: 0.7em 0.9em;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { margin-top: 1.25rem; }

.form-success-msg {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success-msg .check { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success-msg h3 { margin-bottom: 0.4rem; }
.form-success-msg p { font-size: 0.9rem; color: var(--gray-dk); }

/* =====================================================
   CTA BAND
===================================================== */
.cta-band {
  background: var(--near-black);
  padding: 3rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 0.97rem; margin-bottom: 1.5rem; }
.cta-band-btns { display: flex; flex-direction: column; gap: 0.6rem; }
.cta-band-btns .btn { font-size: 1rem; }

/* =====================================================
   PAGE HERO (inner pages)
===================================================== */
.page-hero {
  background: var(--blue);
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 5vw, 2.4rem); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 0.97rem; }
.page-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 0.5rem;
}

/* =====================================================
   SERVICES FULL (services page)
===================================================== */
.services-full { padding: 3.5rem 0; background: var(--white); }
.svc-detail {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-lt);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.svc-detail-header .svc-icon { font-size: 2rem; }
.svc-detail h2 { font-size: 1.35rem; }
.svc-detail p { font-size: 0.95rem; color: var(--gray-dk); margin-bottom: 0.75rem; line-height: 1.6; }
.svc-includes { list-style: none; display: grid; gap: 0.35rem; margin-bottom: 0.75rem; }
.svc-includes li { font-size: 0.9rem; color: var(--gray-dk); display: flex; gap: 0.5em; }
.svc-includes li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.svc-price-tag {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue-dk);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  padding: 0.35em 1em;
}

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-section { padding: 3.5rem 0; background: var(--white); }
.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 2rem;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { font-size: 0.97rem; line-height: 1.7; margin-bottom: 1rem; color: var(--gray-dk); }
.about-vals { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.av-item { display: flex; align-items: flex-start; gap: 0.75em; font-size: 0.93rem; font-weight: 600; color: var(--near-black); }
.av-item span:first-child { flex-shrink: 0; font-size: 1.1rem; }

/* =====================================================
   AREAS FULL
===================================================== */
.areas-full { padding: 3.5rem 0; background: var(--white); }
.areas-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.areas-col h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.areas-col ul { display: flex; flex-direction: column; gap: 0; }
.areas-col ul li {
  padding: 0.55em 0;
  border-bottom: 1px solid var(--gray-lt);
  font-size: 0.93rem;
  color: var(--near-black);
  font-weight: 500;
}
.areas-col ul li:last-child { border-bottom: none; }
.areas-note {
  background: var(--blue-lt);
  border-radius: var(--r-md);
  padding: 1.25rem;
  text-align: center;
}
.areas-note p { font-size: 0.93rem; color: var(--gray-dk); margin-bottom: 1rem; }

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-page { padding: 3.5rem 0; background: var(--off-white); }

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.65);
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
.footer-brand { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.2rem; }
.footer-tag { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.25rem;
  margin-bottom: 1rem;
}
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-nav a:hover { color: #fff; }
.footer-contact { font-size: 0.88rem; margin-bottom: 1rem; }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { text-decoration: underline; }
.footer-copy { font-size: 0.75rem; opacity: 0.35; }

/* =====================================================
   STICKY BOTTOM BAR — mobile
===================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--bar-h);
  display: flex;
  background: var(--white);
  border-top: 1.5px solid var(--gray-lt);
  box-shadow: 0 -3px 14px rgba(0,0,0,0.1);
}
.sb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-right: 1px solid var(--gray-lt);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.12s;
}
.sb-btn:last-child { border-right: none; }
.sb-btn .sb-icon { font-size: 1.25rem; line-height: 1; }
.sb-call { color: var(--blue); }
.sb-text { color: var(--teal); }
.sb-quote { color: var(--near-black); }
.sb-call:hover  { background: var(--blue-lt); }
.sb-text:hover  { background: #e8f5f4; }
.sb-quote:hover { background: var(--gray-lt); }

/* =====================================================
   ACTIVE NAV
===================================================== */
.desktop-nav a.active { color: var(--blue); font-weight: 700; }

/* =====================================================
   RESPONSIVE — 640px+
===================================================== */
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { flex: 1; min-width: 140px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-btns { flex-direction: row; justify-content: center; }
  .contact-methods { flex-direction: row; }
  .contact-method { flex-direction: column; align-items: center; text-align: center; flex: 1; }
  .areas-cols { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   RESPONSIVE — 900px+ desktop
===================================================== */
@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .desktop-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-dk);
    transition: color 0.15s;
  }
  .desktop-nav a:hover { color: var(--blue); }

  .hero { min-height: 90vh; }
  .hero-content {
    max-width: 620px;
    padding: 3rem;
    padding-bottom: 3rem;
  }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  /* 5th card center */
  .svc-card:nth-child(5) { grid-column: 2; }

  .why-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
  .about-photo { margin-bottom: 0; }

  .svc-detail { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
  .svc-detail-header { flex-direction: column; align-items: flex-start; }

  .areas-cols { grid-template-columns: repeat(3, 1fr); }

  .quote-form { max-width: 680px; margin: 0 auto; }

  .contact-page .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Estimate box styles removed — replaced by pricing table */

/* =====================================================
   PRICING TABLE
===================================================== */
.pricing-table-wrap {
  background: var(--near-black);
  border-radius: var(--r-lg);
  padding: 2rem 1.25rem;
  margin-bottom: 1rem;
}

.pricing-table-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.pricing-table-header h2 { color: #fff; margin-bottom: 0.4rem; }
.pricing-table-header p { color: rgba(255,255,255,0.6); font-size: 0.93rem; }
.pricing-table-header .section-label {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* Tabs */
.pt-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.pt-tab {
  flex: 1;
  min-width: 80px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  border-radius: var(--r-pill);
  padding: 0.55em 0.75em;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.pt-tab:hover {
  background: rgba(255,255,255,0.13);
  color: #fff;
}
.pt-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Panels */
.pt-panel { display: none; }
.pt-panel.active { display: block; }

.pt-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.9rem;
  font-style: italic;
}

/* Price rows */
.pt-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
}
.pt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.12s;
}
.pt-row:last-child { border-bottom: none; }
.pt-row:nth-child(odd)  { background: rgba(255,255,255,0.04); }
.pt-row:nth-child(even) { background: rgba(255,255,255,0.02); }
.pt-row:hover { background: rgba(255,255,255,0.08); }

.pt-size {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.pt-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.pt-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .pricing-table-wrap { padding: 2.5rem; }
  .pt-tab { font-size: 0.9rem; }
  .pt-price { font-size: 1.15rem; }
}
