@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f5f0;
  --bg-alt: #ffffff;
  --dark: #141312;
  --primary: #0f766e;
  --primary-dark: #0b4f48;
  --secondary: #f97316;
  --accent: #84cc16;
  --text: #1a1917;
  --text-light: #4b5563;
  --text-muted: #6b7280;
  --border: #e7e2d8;
  --shadow: 0 1px 2px rgba(20, 19, 18, 0.06), 0 1px 3px rgba(20, 19, 18, 0.08);
  --shadow-md: 0 6px 14px rgba(20, 19, 18, 0.08), 0 2px 6px rgba(20, 19, 18, 0.06);
  --shadow-lg: 0 16px 32px rgba(20, 19, 18, 0.12), 0 6px 16px rgba(20, 19, 18, 0.08);
  --shadow-xl: 0 28px 48px rgba(20, 19, 18, 0.14), 0 12px 24px rgba(20, 19, 18, 0.1);
  --radius: 12px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(15, 118, 110, 0.12), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(249, 115, 22, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(247, 245, 240, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.page-loaded {
  opacity: 1;
}

body.is-fading {
  opacity: 0;
}

h1, h2, h3, .brand {
  font-family: "Fraunces", "Space Grotesk", Georgia, serif;
  letter-spacing: -0.02em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.35);
  outline-offset: 2px;
}

/* Layout */
.container { 
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.narrow { 
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.section { 
  padding: 80px 0;
  width: 100%;
  box-sizing: border-box;
}

.section + .section {
  margin-top: 0;
}

.soft { background: var(--bg); }

.promo-bar {
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.12), rgba(249, 115, 22, 0.12));
  color: var(--text);
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(231, 226, 216, 0.8);
}

.promo-bar p {
  margin: 0;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 16px 0 0 0;
  font-weight: 500;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 226, 216, 0.8);
  z-index: 100;
  height: 64px;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand { 
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  text-transform: none;
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 45%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 18px rgba(15, 118, 110, 0.15);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s, color 0.2s;
}


.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-links .btn-primary {
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #fff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.menu-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--dark);
  margin: 4px 0;
  border-radius: 1px;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
  padding: 10px 24px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 70%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 118, 110, 0.24);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  border: 2px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(249, 115, 22, 0.06) 100%);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 12px 32px;
  font-size: 1rem;
}

/* Hero */
.hero {
  --hero-pad-x: clamp(24px, 4vw, 56px);
  padding: clamp(110px, 12vw, 150px) var(--hero-pad-x) clamp(90px, 10vw, 120px);
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(150deg, rgba(15, 118, 110, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.18), transparent 70%);
  filter: blur(6px);
  z-index: 0;
}

.hero::before {
  top: -220px;
  right: -120px;
}

.hero::after {
  bottom: -240px;
  left: -180px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: var(--text);
  letter-spacing: -0.03em;
}

.hero-text .highlight {
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0 0 16px 0;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 24px 0 40px 0;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  justify-self: end;
  max-width: 520px;
  width: 100%;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(15, 118, 110, 0.18));
  opacity: 0.98;
}

.hero-footer {
  text-align: center;
  padding: 40px var(--hero-pad-x);
  margin-top: 64px;
  background: transparent;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-footer-main,
.hero-footer-sub {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.hero-footer p {
  margin: 0;
  max-width: 700px;
  line-height: 1.8;
}

.hero-footer-main {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--text);
  font-weight: 600;
}

.hero-badge {
  display: inline;
  padding: 0.18em 0.5em 0.26em;
  border-radius: 0.8em;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.18), rgba(249, 115, 22, 0.16)) 0 80% / 100% 0.45em no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-footer-sub {
  font-size: 1.02rem;
  color: var(--text-light);
  font-weight: 500;
}

.founding-label {
  font-weight: 700;
  color: var(--primary-dark);
}

.founding-note {
  color: var(--text-light);
  font-weight: 500;
}

/* Trust Section */
.trust-section {
  background: var(--bg-alt);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(231, 226, 216, 0.8);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text);
}

.trust-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.95rem;
}

.trust-card li:last-child {
  border-bottom: none;
}

.trust-card.highlight {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(249, 115, 22, 0.08));
  border-color: rgba(15, 118, 110, 0.35);
}

.trust-card.highlight p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.trust-card .btn-secondary {
  width: 100%;
}

/* Offer Section */
.offer-section {
  background: var(--bg-alt);
  width: 100%;
  box-sizing: border-box;
}

.offer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 12px auto 28px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.2);
  width: fit-content;
}

.toggle-btn {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.toggle-btn.is-active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: var(--shadow-sm);
}

.toggle-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.price-onetime,
.price-meta-onetime,
.onetime-only {
  display: none;
}

.offer-section[data-pricing="onetime"] .price-monthly,
.offer-section[data-pricing="onetime"] .price-meta-monthly {
  display: none;
}

.offer-section[data-pricing="onetime"] .price-onetime,
.offer-section[data-pricing="onetime"] .price-meta-onetime,
.offer-section[data-pricing="onetime"] .onetime-only {
  display: block;
}

.offer-section[data-pricing="onetime"] .price-tag .price-onetime {
  display: inline;
}

.offer-section[data-pricing="onetime"] .monthly-only {
  display: none;
}

.offer-note {
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

.offer-care-cta {
  margin: 28px auto 0;
  max-width: 640px;
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px dashed rgba(15, 118, 110, 0.25);
  background: rgba(15, 118, 110, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--text-light);
}

.offer-care-cta strong {
  color: var(--text);
}

.offer-care-cta .care-cta-copy {
  margin: 0;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.offer-care-cta .care-cta-line {
  display: block;
  margin-top: 6px;
}

.offer-care-cta .care-cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  border: 1px solid rgba(15, 118, 110, 0.2);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.offer-care-cta .care-cta-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: var(--primary-dark);
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.18);
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-self: center;
  justify-content: center;
  text-align: center;
}

.offer-care-cta a {
  color: var(--primary-dark);
}

.offer-care-cta .care-cta-button {
  margin-top: 12px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-care-cta .care-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.offer-note strong {
  color: var(--text);
}

.offer-note .care-details {
  margin-top: 10px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: left;
}

.offer-note .care-details h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
}

.offer-note .care-details p {
  margin: 8px 0 0;
}

.offer-note .care-details .care-addon-note {
  margin: 12px auto 0;
  padding: 8px 12px;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  display: block;
  text-align: center;
}

.offer-note .care-details ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.offer-note .care-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(231, 226, 216, 0.8);
  box-shadow: var(--shadow);
}

.offer-note .care-details li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  margin-top: 1px;
}

.offer-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-section .container {
  max-width: 1100px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  grid-template-areas:
    "photo title"
    "photo text";
  column-gap: 48px;
  row-gap: 4px;
  align-items: center;
}

.about-title {
  grid-area: title;
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-card {
  grid-area: photo;
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: none;
  text-align: center;
}

.about-text {
  grid-area: text;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
  background:
    radial-gradient(140px 140px at 70% 20%, rgba(15, 118, 110, 0.18), transparent 60%),
    radial-gradient(180px 180px at 20% 80%, rgba(249, 115, 22, 0.18), transparent 60%),
    linear-gradient(120deg, rgba(231, 226, 216, 0.9), rgba(255, 255, 255, 0.95));
}

.about-photo-note {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-text p {
  margin: 6px 0;
  font-size: 1.05rem;
}

.offer-box {
  border: 1px solid rgba(231, 226, 216, 0.8);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-box:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.18);
  transform: translateY(-5px);
}

.offer-box h3 {
  font-size: 1.5rem;
  margin: 0 0 8px 0;
  color: var(--text);
  text-align: center;
  font-weight: 600;
}

.offer-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.price-tag {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 24px 0;
  text-align: center;
}

.price-tag span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  text-align: left;
}

.feature-list li {
  padding: 10px 0;
  color: var(--text);
  position: relative;
  padding-left: 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 400;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text);
  font-weight: 600;
  font-size: 1.2rem;
}

.offer-timeline {
  background: rgba(0, 0, 0, 0.02);
  padding: 16px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.offer-cta {
  width: 100%;
  margin-top: auto;
}

.offer-addons {
  background: rgba(0, 0, 0, 0.02);
  border: 1.5px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
}

.offer-addons p {
  margin: 0;
  color: var(--text);
}

.offer-compare {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.14) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 2px solid rgba(15, 118, 110, 0.5);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 350px;
  margin: 0 auto;
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.2);
}

.offer-founding {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.offer-founding p {
  margin: 0 0 8px;
}

.offer-founding p:last-child {
  margin-bottom: 0;
}

.offer-compare h4 {
  font-size: 1.2rem;
  margin: 0 0 12px 0;
  color: var(--text);
  font-weight: 600;
}

.offer-compare p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0 0 20px 0;
}

.offer-compare .btn-secondary {
  width: 100%;
}

/* Care Section */
.care-section {
  background: var(--bg-alt);
}

/* Template Gallery */
.template-hero {
  padding: 96px 0 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(247, 245, 240, 0.9) 100%);
}

.template-logo {
  padding: 20px 32px 0;
  display: flex;
  justify-content: center;
}

.template-logo .brand {
  display: inline-flex;
  text-decoration: none;
}

.template-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 0 32px;
  box-sizing: border-box;
}

.template-hero-text h1 {
  margin: 12px 0 14px;
  font-size: 2.6rem;
}

.template-hero-text p {
  color: var(--text-light);
  margin: 0 0 16px;
}

.template-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 12px;
}

.template-hero-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.template-hero-card {
  background: #fff;
  border: 1px solid rgba(231, 226, 216, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.template-hero-card h3 {
  margin: 0 0 14px;
}

.template-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.template-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

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

.template-section .section-header p {
  max-width: 680px;
  margin: 10px auto 0;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.template-card {
  background: #fff;
  border: 1px solid rgba(231, 226, 216, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.template-card p {
  margin: 0;
  color: var(--text-light);
}

.template-card-header h3 {
  margin: 6px 0 0;
}

.template-card .btn-secondary {
  margin-top: auto;
  align-self: flex-start;
}

.demo-link-small {
  padding: 6px 14px;
  font-size: 0.8rem;
  border-width: 1px;
}

.template-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin: 0;
}

.template-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.template-tags li {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.template-pages {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px dashed rgba(231, 226, 216, 0.9);
}

.template-pages-label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

.template-pages li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.template-pages li::before {
  content: "•";
  color: var(--primary);
  font-size: 1rem;
  line-height: 1;
}

.template-pages-note {
  margin: -4px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.template-note {
  margin-top: 32px;
  text-align: center;
  color: var(--text-light);
}

/* Care Plan Details */
.care-details-grid,
.care-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.care-detail-card {
  border-top: 3px solid rgba(15, 118, 110, 0.2);
}

.care-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.care-detail-list li {
  position: relative;
  padding-left: 16px;
}

.care-detail-list li::before {
  content: "•";
  color: var(--secondary);
  position: absolute;
  left: 0;
  top: 0;
}

.care-detail-exclude {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.care-detail-exclude span {
  color: var(--text);
  font-weight: 600;
}

.site-footer {
  margin-top: 60px;
  padding: 24px 20px 36px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

/* Process Section */
.process-section {
  background: var(--bg-alt);
  width: 100%;
  box-sizing: border-box;
}

.process-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

.process-diagram::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.25), rgba(249, 115, 22, 0.35));
  border-radius: 999px;
}

.diagram-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.diagram-marker {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.diagram-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(231, 226, 216, 0.9);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.diagram-step:hover .diagram-card {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.18);
}

.diagram-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
}

.diagram-card p {
  margin: 0 0 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.diagram-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.diagram-meta li {
  position: relative;
  padding-left: 18px;
}

.diagram-meta li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

.step {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(231, 226, 216, 0.8);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.step:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.18);
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
}

.step h3 {
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  color: var(--text);
  font-weight: 600;
}

.step p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 400;
}

.process-sublist {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.process-sublist li {
  position: relative;
  padding-left: 18px;
}

.process-sublist li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

.process-cta {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.process-cta .btn-primary {
  padding: 12px 40px;
  font-size: 1rem;
}

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

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

  .process-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-diagram::before {
    left: 32px;
    right: 32px;
  }
}

@media (max-width: 720px) {
  .template-logo {
    padding: 16px 20px 0;
  }

  .template-hero {
    padding: 84px 0 60px;
  }

  .template-hero-inner {
    padding: 0 20px;
  }

  .template-hero-text h1 {
    font-size: 2rem;
  }

  .template-grid {
    grid-template-columns: 1fr;
  }

  .care-details-grid,
  .care-summary-grid {
    grid-template-columns: 1fr;
  }


  .process-diagram {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-diagram::before {
    left: 28px;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 2px;
    height: auto;
  }

  .diagram-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 16px;
    align-items: start;
  }
}

/* FAQ */
details {
  margin-bottom: 16px;
  border: 1px solid rgba(231, 226, 216, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  background: var(--bg-alt);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}

details:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: 1rem;
}

summary::after {
  content: "↘";
  font-size: 0.9rem;
  transition: transform 0.3s;
  color: var(--text);
  margin-left: 16px;
  flex-shrink: 0;
}

details[open] summary::after {
  transform: rotate(90deg);
}

details > p {
  margin: 16px 0 0 0;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 400;
}

/* Contact Section */
#contact h2 {
  text-align: center;
  margin: 0 0 12px 0;
}

#faq h2 {
  text-align: center;
  margin-bottom: 44px;
}

#faq {
  padding-bottom: 48px;
}

#contact {
  padding-top: 48px;
}

.hero-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 1rem;
  font-weight: 400;
}

.back-link {
  margin-bottom: 16px;
}

.back-link a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

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

.cta-box {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(231, 226, 216, 0.8);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cta-box .btn-primary {
  width: 100%;
}

.cta-note {
  margin: 14px 0 0 0;
  color: var(--text-light);
  font-size: 0.95rem;
  text-align: center;
}

.brand-mark {
  font-family: "Fraunces", "Space Grotesk", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: 16px;
}

/* Forms */
.intake {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}

.intake input,
.intake textarea,
.intake select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  transition: all 0.3s ease;
  background: var(--bg-alt);
  font-weight: 400;
}

.intake input::placeholder,
.intake textarea::placeholder {
  color: var(--text-muted);
}

.intake input:focus,
.intake textarea:focus,
.intake select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
  background: var(--bg-alt);
}

.intake textarea {
  resize: vertical;
  min-height: 120px;
}

.intake button {
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  width: 100%;
  margin-top: 6px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 48px 32px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--bg-alt);
}

.footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

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

.footer-sep {
  margin: 0 8px;
  color: var(--text-light);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.hero-visual,
.hero-footer,
.offer-main,
.steps,
.intake {
  animation: fadeUp 0.9s ease-out both;
}

.hero-footer {
  animation-delay: 0.1s;
}

.offer-main,
.steps {
  animation-delay: 0.15s;
}

.demo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9999;
}

.demo-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.demo-popup {
  position: relative;
  width: min(1200px, 100%);
  height: min(80vh, 900px);
  background: #0f141b;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.demo-popup iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0f141b;
}

.demo-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

body.is-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Mobile CTA */
.mobile-cta { display: none; }

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-content,
  .offer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "photo"
      "text";
    justify-items: center;
    text-align: center;
    row-gap: 20px;
  }

  .about-text {
    max-width: 720px;
  }

  .hero-visual {
    justify-self: center;
  }

  .hero-image {
    max-width: 420px;
  }

  .section {
    padding: 70px 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .calendly-overlay .calendly-popup {
    width: calc(100% - 40px);
    max-width: 720px;
    max-height: 88vh;
  }
}

@media (max-width: 768px) {
  p {
    text-align: left;
  }

  .demo-popup {
    height: 85vh;
    border-radius: 14px;
  }

  .container {
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .narrow {
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .nav {
    padding: 0 20px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease-out;
    display: none;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-links.active {
    display: flex;
    z-index: 99;
  }


  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .hero {
    --hero-pad-x: 20px;
    padding: 88px var(--hero-pad-x) 72px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 0;
    gap: 40px;
    box-sizing: border-box;
  }

  .hero-visual {
    justify-self: center;
    margin: 0 auto;
  }

  .hero-image {
    margin: 0 auto;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }

  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .offer-content {
    grid-template-columns: 1fr;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .offer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .offer-box {
    padding: 32px;
  }

  .offer-note .care-details .care-addon-note {
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 0.92rem;
    line-height: 1.4;
    text-align: center;
  }

  .offer-compare {
    padding: 32px 24px;
    max-width: 100%;
    order: -1;
    margin-bottom: 28px;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    z-index: 99;
    box-sizing: border-box;
    width: 100%;
  }

  .mobile-cta a {
    display: block;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 12px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
  }

  .section {
    padding: 60px 0;
    box-sizing: border-box;
  }

  .about-card {
    width: 100%;
    max-width: 320px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .about-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 640px) {
  .hero {
    --hero-pad-x: 24px;
    padding: 96px var(--hero-pad-x) 84px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .offer-box,
  .step {
    padding: 28px 20px;
  }

  .price-tag {
    font-size: 1.4rem;
  }

  .hero-footer {
    padding: 32px var(--hero-pad-x);
  }

  .intake {
    gap: 12px;
  }

  .section {
    padding: 50px 0;
    box-sizing: border-box;
  }
}
