/* Five Star Reviews – minimal, clean, accessible */
:root{
--bg:#ffffff; --text:#111827; --muted:#6b7280; --line:#e5e7eb;
--brand:#0ea5e9; /* cyan-500 */
--brand-ink:#075985;
--success:#10b981; /* emerald-500 */
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font:16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;}
img{max-width:100%;display:block}
.container{width:100%;max-width:1100px;margin:0 auto;padding:20px}
.container.narrow{max-width:820px}
.sr-only{position:absolute;left:-9999px}


.site-header{display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:inherit}
.brand-text{font-weight:700;font-size:18px}
.nav{display:flex;align-items:center;gap:18px}
.nav a{color:var(--text);text-decoration:none;font-weight:600}
.nav a.active{color:var(--brand)}


.btn{display:inline-block;padding:10px 18px;border-radius:999px;border:1px solid var(--line);background:#fff;color:var(--text);text-decoration:none;font-weight:700}
.btn:hover{transform:translateY(-1px)}
.btn.primary{background:linear-gradient(180deg,var(--brand) 0%, #0891b2 100%);color:#fff;border-color:var(--brand)}
.btn.success{background:var(--success);color:#fff;border-color:var(--success)}
.btn.ghost{background:transparent;color:var(--brand);border-color:var(--brand)}
.btn.center{margin:0 auto}


.hero{padding:30px 20px;text-align:center;background:linear-gradient(180deg,#f8fbff,transparent);border-radius:16px}
.hero h1{font-size:2.6rem;line-height:1.1;margin:10px 0 8px}
.hero p{color:var(--muted);max-width:700px;margin:0 auto 16px}
.hero .cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin:16px 0}

/* 1200px-wide container just for hero media */
.container-wide{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;           /* small side gutters on narrow screens */
}

/* Top hero image spacing */
.hero-cover {
  margin: 24px auto 40px;   /* top | sides | bottom */
}

.hero-cover img{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

/* Product hero (second image) */
.hero-media{ margin:24px auto 0; }
.hero-media img{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.hero-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Unified hero media */
.hero-media { margin: 24px 0 0; }
.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.highlights{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:8px auto 32px}
.card{border:1px solid var(--line);border-radius:14px;padding:14px}
.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted)}


.promo{background:#f0f9ff;border:1px solid #bae6fd;color:var(--brand-ink);border-radius:12px;padding:14px 16px;margin:24px auto;text-align:center}


.page-plans .intro{color:var(--muted)}
.table-wrap{overflow:auto;border:1px solid var(--line);border-radius:12px}
.plan-table{width:100%;border-collapse:collapse;font-size:1rem}
.plan-table th,.plan-table td{padding:12px 10px;border-bottom:1px solid var(--line);text-align:center}
.plan-table thead th{background:#f9fafb}
.plan-table td:first-child, .plan-table th:first-child{text-align:left}


.footnote{color:var(--muted);margin-top:14px}


.site-footer{border-top:1px solid var(--line);margin-top:32px;color:var(--muted);font-size:.95rem}

.btn:focus-visible { outline: 3px solid #0ea5e9; outline-offset: 2px; border-radius: 999px; }
a:focus-visible { outline: 2px solid #0ea5e9; outline-offset: 2px; }

/* Mobile */
@media (max-width: 820px){
.highlights{grid-template-columns:1fr}
.container{padding:16px}
.hero h1{font-size:2.1rem}
}
@media (prefers-color-scheme: dark){
  :root{ --bg:#0b1220; --text:#e5e7eb; --muted:#94a3b8; --line:#1f2a44; }
  .promo{ background:#0b2135; border-color:#15324f; color:#bfe3ff; }
  .plan-table thead th{ background:#0f1a2d; }
  .btn{ background:#0f1628; color:#e5e7eb; border-color:#25314d; }
  .btn.primary{ background:#0ea5e9; border-color:#0ea5e9; color:#08121f; }
}

/* ===== Site Footer Bar ===== */
.site-footer { margin-top: 48px; }
.footer-bar { background:#0a0a0a; color:#fff; }
.footer-bar.is-gray { background:#2b2f36; color:#fff; } /* use this if you prefer gray */
.footer-inner {
  max-width: 1200px; margin:0 auto; padding:20px 16px;
  display:flex; gap:16px; flex-wrap:wrap; align-items:center; justify-content:space-between;
}
.footer-links { display:flex; gap:14px; flex-wrap:wrap; }
.footer-links a { color:#fff; text-decoration:none; opacity:.92; }
.footer-links a:hover { text-decoration:underline; opacity:1; }
.footer-copy { opacity:.8; font-size:.9rem; }

/* === Five Star Reviews: Mobile Header + Hero polish (safe to append) === */

/* Hero (desktop+mobile) */
.hero-art img{max-width:min(680px,92vw);height:auto;border-radius:16px;box-shadow:0 12px 30px rgba(0,0,0,.14)}
.hero-cta, .cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
/* Center buttons in the bottom promo bar */
.promo .cta {
  justify-content: center;
}
.section-gap{margin-top:clamp(12px,3vw,24px)}
.product-hero{margin-top:24px}

/* Mobile <=640px */
@media (max-width: 640px){

  /* Header layout: brand on first row, nav below it */
  header, .site-header{
    display:flex;align-items:center;justify-content:space-between;
    gap:12px;flex-wrap:wrap;
  }
  /* Keep “Five Star Reviews” from breaking mid-word */
  header .brand, .site-header .brand{
    flex:1 1 auto;white-space:nowrap;word-break:keep-all;
    overflow:hidden;text-overflow:ellipsis;min-width:0;
  }
  /* Put nav on its own row when tight */
  header nav, .site-header nav{
    order:3;flex:1 1 100%;
    display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-start;
  }

  /* Shrink the header pill CTA on phones.
     If you prefer to hide it entirely on phones, comment this block and use: header .btn{display:none} */
  header .btn{padding:.55rem .8rem;font-size:.95rem}

  /* Hero spacing + image cap */
  .hero-cta, .cta{ margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; }
  .hero-art img{max-width:min(600px,92vw);height:auto}
  .section-gap{margin-top:12px}

  /* Tighten the big mockup spacing */
  .product-hero{margin-top:16px}
}

/* === Five Star Reviews: mobile modal fixes === */
@media (max-width: 820px){
  /* Size + scrolling */
  .fsr-modal .fsr-dialog,
  .review-modal .dialog,
  .modal .dialog {
    width: 94vw;
    max-height: 86vh;
    overflow: auto;
    border-radius: 14px;
  }

  /* Stack columns instead of side-by-side */
  .fsr-modal .fsr-content,
  .review-modal .content,
  .modal .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Photo grid becomes 2-up; images scale down */
  .fsr-modal .fsr-photos,
  .review-modal .photos,
  .modal .photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .fsr-modal .fsr-photos img,
  .review-modal .photos img,
  .modal .photos img {
    width: 100%;
    height: auto;         /* keep aspect ratio */
    border-radius: 10px;
  }

  /* Tighter padding/typography inside the modal */
  .fsr-modal .review-card,
  .modal .body { padding: 12px; }
  .fsr-modal p { line-height: 1.45; }
}

/* Optional: square-crop thumbnails (use if you prefer tighter rows) */
/*
.fsr-modal .fsr-photos img { aspect-ratio: 1 / 1; object-fit: cover; }
*/


.zoom-inner img{
	display:block;
	max-width:min(1200px,94vw);
	max-height:86vh;
	height:auto;
	border-radius:16px;
	box-shadow:0 12px 30px rgba(0,0,0,.2)
}