/* Advanced Care Health Services — standalone landing page
   Brand: purple #5729d9, Roboto (matches the main Next.js site).
   The :root tokens below mirror styles/_variables.scss and the
   breakpoints in styles/_mixins.scss — update both together. */

:root {
  --primary: #5729d9;
  --primary-dark: #3f1ea3;
  --text: #222222;
  --muted: #7a7a7a;
  --bg: #ffffff;
  --bg-alt: #f7f5fd;
  --border: #e7e3f7;
  --shadow: 0 12px 30px rgba(87, 41, 217, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  border: 2px solid var(--primary);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--primary);
  color: #fff;
}

.btn-solid:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
}

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

.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}

.btn-light:hover {
  background: transparent;
  color: #fff;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
}

.brand img {
  width: 64px;
  height: 64px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding-block: 56px;
}

.hero-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  height: auto;
}

/* Trust bar */
.trust {
  background: var(--primary);
  padding-block: 16px;
}

.trust-inner {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  gap: 12px 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 14.5px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Sections */
.section {
  padding-block: 64px;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}

.section-cta {
  text-align: center;
  margin-top: 36px;
}

/* Services */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.card {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.card .price {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 12px;
  white-space: nowrap;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* About */
.about-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}

.about-inner h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.about-body {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 14.5px;
  font-weight: 500;
}

.checklist li::before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 700;
}

/* Licensed states — shares the .card base */
.states-card h3 {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.states {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 6px 14px 6px 8px;
  font-size: 14px;
  font-weight: 500;
}

.flag {
  width: 32px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.flag-ga { background: #1a3a6e; }
.flag-ny { background: #002868; }

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.states-note {
  font-size: 13px;
  color: var(--muted);
}

/* FAQ */
.faq-container {
  max-width: 760px;
}

.faq-container details {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--bg);
}

.faq-container summary {
  padding: 18px 20px;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-container summary::-webkit-details-marker {
  display: none;
}

.faq-container summary::after {
  content: "+";
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-container details[open] summary::after {
  content: "−";
}

.faq-container details p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14.5px;
}

/* Quote band */
.quote-band {
  background: var(--primary);
  padding-block: 56px;
}

.quote-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.quote-inner p {
  color: #fff;
  font-size: 19px;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: 48px 24px;
}

.footer-inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}

.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}

.footer p {
  color: var(--muted);
  font-size: 14.5px;
}

.footer a:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 479px) {
  /* mobile: hide header CTA (hero CTA covers booking) */
  .header .btn {
    display: none;
  }
}

@media (min-width: 480px) {
  /* trust bar: two columns from small tablets up */
  .trust-inner {
    grid-template-columns: repeat(2, auto);
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 44px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-inner {
    grid-template-columns: 3fr 2fr;
  }

  /* trust bar: single row on desktop */
  .trust-inner {
    grid-template-columns: repeat(4, auto);
  }
}
