@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --forest: #0f2d1f;
  --forest-80: rgba(15, 45, 31, 0.9);
  --pine: #1a1a1a;
  --gold: #e6c76e;
  --gold-bright: #f4e3a7;
  --gold-gradient: linear-gradient(135deg, #f9edc7, #e6c76e, #f7dc8b);
  --cream: #f3f8f3;
  --sand: #ebf1e7;
  --card: #ffffff;
  --muted: #4a5b50;
  --border: #dcd6c8;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

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

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

body {
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, var(--cream), #e6f1e6 35%, #f6faf6 70%, var(--cream));
  color: var(--pine);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.will-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-hidden {
  display: none !important;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  color: var(--forest);
}

.section p.section-lead {
  max-width: 620px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-circle img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  background: var(--forest);
  padding: 6px;
  box-shadow: 0 0 0 3px rgba(246, 222, 150, 0.35);
}

.logo-text h1 {
  font-size: 1.1rem;
  color: var(--forest);
}

.logo-text .tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 600;
  color: var(--pine);
}

.main-nav a {
  position: relative;
  padding: 0.3rem 0.15rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--forest);
  box-shadow: 0 12px 24px rgba(230, 199, 110, 0.5), 0 0 22px rgba(244, 227, 167, 0.6) inset;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(230, 199, 110, 0.6), 0 0 26px rgba(249, 237, 199, 0.6) inset;
}

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

.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn:active,
.main-nav a:active {
  transform: translateY(1px);
  box-shadow: 0 0 0 4px rgba(230, 199, 110, 0.3);
}

.hero {
  position: relative;
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at 12% 20%, rgba(230, 199, 110, 0.22), transparent 40%),
    linear-gradient(120deg, #0f2d1f, #1e4a35);
  color: var(--cream);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(212, 175, 55, 0.14), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  z-index: 1;
}

.hero h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.hero p {
  color: rgba(250, 249, 246, 0.85);
  margin-bottom: 1rem;
}

.hero-bullets {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.75rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.35rem;
}

.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media {
  width: 350px;              /* iPhone-style width */
  aspect-ratio: 9 / 16;      /* keeps perfect portrait shape */
  margin-left: auto;
  border-radius: 22px;
  border: 4px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18), 0 0 0 6px rgba(247, 220, 139, 0.35);
  background: var(--cream);
  display: grid;
  place-items: center;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dbe4d8, #bcc8bc);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1.5rem;
  text-align: center;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  align-items: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, outline 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(230, 199, 110, 0.5);
}

.card h3 {
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--muted);
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.45rem 0.9rem;
  background: #f7faf7;
  border: 1px solid rgba(230, 199, 110, 0.4);
  border-radius: 999px;
  color: var(--forest);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.click-flash {
  outline: 2px solid rgba(230, 199, 110, 0.8);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(249, 237, 199, 0.4);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}

.feature {
  background: var(--forest);
  color: var(--cream);
  border-radius: 1rem;
  padding: 1.2rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.18), transparent 45%);
}

.feature > * {
  position: relative;
  z-index: 1;
}

.program-card::after {
  display: none;
}

.program-card > * {
  position: relative;
  z-index: 1;
}

.feature h3 {
  margin-bottom: 0.35rem;
}
.feature-with-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.feature-text {
  display: flex;
  flex-direction: column;
}
.feature-with-logo .feature-text h3 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #e6c76e; /* matches your Alpha gold */
}

.feature-logo {
  width: 150px;      /* adjust size as needed */
  height: auto;
  object-fit: contain;
  opacity: 0.9;     /* looks cleaner on dark backgrounds */
}

.programs {
  position: relative;
  display: grid;
  gap: 1.6rem;
  background: linear-gradient(180deg, #f2f6f1, #f7f2e9);
  padding: 1.6rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 45, 31, 0.06);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.08);
}

.program-card-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
  padding: 0.4rem;
  background: linear-gradient(135deg, #0c1f16, #1c3a2a 60%, #103322);
  border-radius: 1.15rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.program-card-row::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -14px;
  height: 14px;
  background: linear-gradient(90deg, rgba(15, 45, 31, 0.08), rgba(15, 45, 31, 0.16), rgba(15, 45, 31, 0.08));
  border-radius: 0 0 14px 14px;
  filter: blur(1px);
}

.program-card {
  align-items: flex-start;
  background: linear-gradient(150deg, #1d3b2b, #102418);
  color: #f7f4ea;
  border-radius: 1rem;
  border: 1px solid rgba(212, 184, 106, 0.45);
  padding: 1rem 1.1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 14px 28px rgba(0, 0, 0, 0.18);
}

.program-card .feature-text h3 {
  color: #fdfbf6;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.program-card p {
  color: rgba(247, 244, 234, 0.78);
}

.program-meta {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  color: #fdfbf6;
  text-align: left;
}

.program-price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #f5d66c, #d7ad3c);
  color: #0f2217;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 6px 14px rgba(0, 0, 0, 0.18);
}

.program-frequency {
  font-weight: 600;
  opacity: 0.85;
}

.program-bonus {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f2d1f;
}

.program-card.is-active {
  border-color: rgba(230, 199, 110, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 20px 34px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(230, 199, 110, 0.24);
  transform: translateY(-1px);
  background: linear-gradient(150deg, #234630, #142c1e);
}

.program-body {
  position: relative;
  background: radial-gradient(circle at 20% 20%, rgba(230, 199, 110, 0.18), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(15, 45, 31, 0.2), transparent 35%),
    linear-gradient(135deg, #0c1f16, #132f21 45%, #0b1912 90%);
  border-radius: 1.5rem;
  padding: 2.1rem;
  border: 1px solid rgba(230, 199, 110, 0.12);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin-top: 0.35rem;
}

.program-shell {
  background: linear-gradient(180deg, #fcfaf4 0%, #f4f8f3 100%);
  border-radius: 1.2rem;
  border: 1px solid rgba(15, 45, 31, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 1.4rem;
  display: grid;
  gap: 1.3rem;
  position: relative;
}

.program-shell::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(230, 199, 110, 0.14), transparent 50%);
  pointer-events: none;
  mask: linear-gradient(#000, #000);
}

.program-masthead {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.masthead-left,
.masthead-right {
  background: linear-gradient(180deg, #ffffff, #f6f9f6);
  border: 1px solid rgba(15, 45, 31, 0.08);
  border-radius: 1rem;
  padding: 1.05rem 1.1rem;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.masthead-left .tier-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 45, 31, 0.06);
  font-weight: 700;
  color: #0f2d1f;
}

.price-stack {
  display: grid;
  gap: 0.6rem;
}

.stat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.stat-tile {
  background: linear-gradient(135deg, #0f2d1f, #16442e);
  color: #fdfbf6;
  border-radius: 0.85rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(230, 199, 110, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 16px rgba(0, 0, 0, 0.16);
}

.stat-label {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

.stat-value {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.program-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.program-panel {
  background: linear-gradient(180deg, #ffffff, #f7faf6);
  border: 1px solid rgba(15, 45, 31, 0.08);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  display: grid;
  gap: 0.85rem;
}

.panel-header {
  display: grid;
  gap: 0.2rem;
}

.panel-note {
  margin: 0;
  color: var(--muted);
}

.program-grid {
  display: contents;
}

@media (max-width: 900px) {
  .program-masthead {
    grid-template-columns: 1fr;
  }
}

.program-summary {
  background: linear-gradient(180deg, #ffffff, #f7f1e8 58%, #f2f6f2);
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(15, 45, 31, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 14px 26px rgba(0, 0, 0, 0.08);
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
}

.summary-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.summary-labels {
  display: grid;
  gap: 0.15rem;
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.tier-tag {
  font-weight: 800;
  color: var(--pine);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.program-summary-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.program-title {
  margin: 0.2rem 0 0.15rem;
  font-size: 1.2rem;
}

.program-description {
  color: #304835;
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.price-chip {
  background: linear-gradient(135deg, #113321, #0a1f14);
  color: var(--gold);
  padding: 0.85rem 1.2rem;
  border-radius: 0.95rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(230, 199, 110, 0.18);
  display: grid;
  gap: 0.1rem;
  text-align: right;
  min-width: 175px;
  border: 1px solid rgba(230, 199, 110, 0.45);
}

.price-chip .price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.price-chip .price-frequency {
  color: var(--cream);
  font-weight: 600;
}

.tier-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.program-summary .program-bonus {
  margin: 0.7rem 0;
  background: linear-gradient(135deg, #fdf4df, #f6edd7);
  color: #4a3b15;
  border: 1px solid #e6c76e;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.program-meta .program-bonus {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline;
  color: var(--gold-bright);
}


.program-info-rail {
  background: linear-gradient(180deg, #fdfbf6, #f4f7f2);
  border: 1px solid rgba(15, 45, 31, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
}

.tier-pills {
  padding-top: 0.2rem;
}

.tier-differences .card {
  border-top: 3px solid rgba(230, 199, 110, 0.85);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #ffffff, #f5f8f4);
  border: 1px solid rgba(15, 45, 31, 0.08);
}

.program-options {
  background: linear-gradient(180deg, #ffffff, #f3f7f2);
  border: 1px solid rgba(15, 45, 31, 0.09);
  border-radius: 1rem;
  padding: 1.15rem;
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.08);
}

.option-list.two-column {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.options-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(15, 45, 31, 0.08);
  margin-bottom: 0.45rem;
}

.option-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.option-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: linear-gradient(180deg, #fffaf2, #f4f7f3);
  border: 1px solid rgba(15, 45, 31, 0.09);
  border-radius: 0.95rem;
  padding: 1rem 1.05rem;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* Program layout inspired by provided mock */
.programs {
  background: radial-gradient(circle at 20% 12%, rgba(202, 226, 200, 0.4), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(214, 204, 156, 0.35), transparent 32%),
    linear-gradient(180deg, #f4f6ef, #eef2e7);
  border-radius: 1.6rem;
  padding: 1.1rem;
  border: 1px solid rgba(51, 76, 53, 0.08);
  box-shadow: 0 16px 32px rgba(17, 38, 23, 0.12);
}

.program-card-row {
  background: transparent;
  border: none;
  box-shadow: none;
  gap: 0.9rem;
}

.program-card {
  background: linear-gradient(160deg, #264128, #1f3823 55%, #162b1a);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f5f8f2;
  box-shadow: 0 20px 28px rgba(12, 36, 19, 0.25);
  backdrop-filter: blur(4px);
  padding: 1.15rem 1.2rem;
}

.program-card .feature-text h3 {
  color: #fff;
  font-size: 1.05rem;
}

.program-card p {
  color: rgba(240, 245, 234, 0.82);
}

.program-card.is-active {
  background: linear-gradient(170deg, #304d2f, #1a3320 65%, #122415);
  border-color: rgba(255, 211, 84, 0.6);
  box-shadow: 0 22px 36px rgba(12, 36, 19, 0.32), 0 0 0 2px rgba(255, 211, 84, 0.3);
}

.program-body {
  background: linear-gradient(180deg, #f8f9f5, #f3f4ee);
  padding: 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(47, 76, 53, 0.1);
  box-shadow: 0 18px 32px rgba(20, 38, 24, 0.18);
}

.program-board {
  background: linear-gradient(180deg, #ffffff, #f6f7f2);
  border-radius: 1rem;
  border: 1px solid rgba(42, 64, 47, 0.08);
  box-shadow: 0 16px 24px rgba(19, 37, 23, 0.12);
  padding: 1.4rem;
  display: grid;
  gap: 1.1rem;
}

.hero-panel {
  background: linear-gradient(180deg, #ffffff, #f6f7f2);
  border: 1px solid rgba(42, 64, 47, 0.08);
  border-radius: 0.9rem;
  padding: 1.2rem 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.summary-top {
  display: flex;
  justify-content: space-between;
  gap: 1.1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.summary-price {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
}

.program-title {
  color: #0f1f12;
  margin-bottom: 0.15rem;
}

.program-description {
  color: #2e4732;
}

.program-summary .program-bonus {
  background: #fef7de;
  color: #8a6a1b;
  border: 1px solid rgba(185, 140, 22, 0.4);
  padding: 0.65rem 0.75rem;
}

.summary-grid {
  display: none;
}

.stat-block {
  display: none;
}

.price-chip {
  background: linear-gradient(135deg, #f5d66c, #c59a2b);
  color: #0e1c14;
  box-shadow: 0 10px 18px rgba(197, 154, 43, 0.28);
}

.price-chip .price-frequency {
  color: #0e1c14;
}

.program-panels {
  display: grid;
  grid-template-columns: 1fr;
}

.highlight-panel {
  display: none;
}

.plan-panel {
  background: linear-gradient(180deg, #fdfdfb, #f6f7f2);
  border: 1px solid rgba(47, 76, 53, 0.08);
  box-shadow: 0 12px 20px rgba(19, 37, 23, 0.1);
}

.option-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.option-card:first-child {
  grid-column: 1 / -1;
}

.option-card {
  background: linear-gradient(180deg, #ffffff, #f8f9f4);
  border: 1px solid rgba(47, 76, 53, 0.08);
  box-shadow: 0 12px 18px rgba(19, 37, 23, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.option-header h4 {
  margin: 0;
}

.option-line {
  align-items: center;
  padding: 0.65rem 0.65rem;
  background: #f4f7f1;
  border-radius: 0.7rem;
  border: 1px solid rgba(47, 76, 53, 0.08);
}

.option-price {
  font-weight: 800;
  color: #1f3b25;
}

.program-panel {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(230, 199, 110, 0.28);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.panel-header h4 {
  color: #fefbf3;
}

.panel-note {
  color: rgba(247, 244, 234, 0.75);
  max-width: 360px;
  text-align: right;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 199, 110, 0.25);
  border-radius: 0.9rem;
  padding: 0.85rem 0.95rem;
  color: #f8f5ec;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.detail-step {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(230, 199, 110, 0.26), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(230, 199, 110, 0.5);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0e1c14;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.detail-card h3 {
  margin: 0;
  color: #fefbf3;
}

.detail-card p {
  margin: 0.15rem 0 0;
  color: rgba(245, 242, 230, 0.85);
}

.option-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 199, 110, 0.24);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  color: #f8f5ec;
}

.option-header h4,
.option-header p,
.option-note,
.option-label,
.option-desc {
  color: inherit;
}

.option-price {
  color: #f6d55f;
  font-weight: 800;
}

.option-line {
  border-top: 1px solid rgba(230, 199, 110, 0.18);
  padding-top: 0.5rem;
}

@media (max-width: 720px) {
  .summary-top {
    flex-direction: column;
  }

  .panel-header {
    flex-direction: column;
  }

  .panel-note {
    text-align: left;
  }
}

.option-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.option-title {
  margin: 0;
}

.option-desc {
  margin: 0;
  color: var(--muted);
}

.option-price {
  font-weight: 800;
  color: #0f2d1f;
  white-space: nowrap;
  background: rgba(230, 199, 110, 0.16);
  padding: 0.35rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(230, 199, 110, 0.4);
}

.option-lines {
  display: none;
  gap: 0.4rem;
}

.option-line {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(15, 45, 31, 0.1);
  border-radius: 0.7rem;
  background: linear-gradient(180deg, #fdf5e6, #f1f6f2);
}

.option-label {
  font-weight: 700;
  margin: 0;
}

.option-note {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.option-line .option-note {
  margin: 0.25rem 0 0;
}

.quote-block {
  background: linear-gradient(120deg, var(--forest), #183c2b);
  color: var(--cream);
  padding: 2.6rem;
  border-radius: 1.4rem;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow), 0 0 0 6px rgba(249, 237, 199, 0.2);
}

.quote-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 0.9rem;
}

.quote-form label {
  display: block;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  color: var(--pine);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.form-footnote {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status {
  min-height: 1.2rem;
  font-weight: 600;
}

.form-status[data-type='error'] {
  color: #c1121f;
}

.form-status[data-type='info'] {
  color: var(--forest);
}

.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 2rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

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

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.back-to-top.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

.service-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(140deg, #f1f7f1, #e5f0e5);
}

.service-hero h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--forest);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rating-tile {
  background: linear-gradient(135deg, #ffffff, #f7fbf7);
  border: 1px solid rgba(230, 199, 110, 0.45);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.35rem;
}

.rating-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rating-source {
  font-weight: 700;
  color: var(--forest);
}

.rating-score {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--pine);
}

.rating-stars {
  letter-spacing: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
  font-weight: 800;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.review-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(230, 199, 110, 0.35);
  border-radius: 1rem;
  padding: 1.2rem 1.1rem 1rem 1.4rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.05);
  min-height: 180px;
}

.quote-mark {
  position: absolute;
  top: 0.6rem;
  left: 0.9rem;
  font-size: 2.6rem;
  color: rgba(230, 199, 110, 0.6);
  line-height: 1;
}

.review-card p {
  margin-left: 0.2rem;
}

.reviewer {
  font-weight: 700;
  color: var(--forest);
  margin-top: 0.6rem;
}

.gallery-card {
  background: linear-gradient(135deg, #ffffff, #f9fdf9);
  border: 1px solid rgba(230, 199, 110, 0.35);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.65rem;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.6rem;
}

.frame {
  background: linear-gradient(120deg, rgba(230, 199, 110, 0.18), rgba(244, 227, 167, 0.28));
  border: 1px solid rgba(230, 199, 110, 0.45);
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  color: var(--forest);
  font-weight: 700;
}

.frame span {
  display: block;
  background: #fff;
  padding: 0.8rem;
  width: 100%;
  text-align: center;
  border-radius: 0.65rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.service-cta {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.divider {
  height: 1px;
  width: 100%;
  background: var(--border);
  margin: 2.25rem 0 1.25rem;
}

@media (max-width: 960px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 3.2rem;
  }

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

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }

  .logo-circle img {
    width: 58px;
    height: 58px;
  }
}
.frame {
  width: 100%;
  aspect-ratio: 9 / 16;   /* iPhone portrait ratio */
  overflow: hidden;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills the frame cleanly */
  border-radius: 0.85rem;
  display: block;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal-size columns */
  gap: 1.2rem;
}

/* --- Program redesign --- */
.programs {
  background: radial-gradient(circle at 18% 12%, rgba(92, 140, 96, 0.08), transparent 32%),
    radial-gradient(circle at 82% 6%, rgba(217, 191, 117, 0.12), transparent 30%),
    linear-gradient(180deg, #f8faf7, #eef2ea);
  border-radius: 1.25rem;
  padding: 1.6rem;
  border: 1px solid rgba(23, 56, 36, 0.08);
  box-shadow: 0 22px 34px rgba(13, 41, 26, 0.12);
  gap: 1.1rem;
}

.program-card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: #0f1e16;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 26px rgba(5, 20, 12, 0.25);
  position: relative;
}

.program-card-row::after {
  content: '';
  position: absolute;
  inset: auto 12% -14px 12%;
  height: 14px;
  background: linear-gradient(90deg, rgba(23, 56, 36, 0.12), rgba(23, 56, 36, 0.22), rgba(23, 56, 36, 0.12));
  border-radius: 0 0 14px 14px;
  filter: blur(1px);
}

.program-card {
  align-items: flex-start;
  background: linear-gradient(150deg, #1a3524, #102116 60%, #0c1a13);
  color: #f7f4ea;
  border: 1px solid rgba(226, 198, 120, 0.5);
  border-radius: 0.95rem;
  padding: 1rem 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.program-card .feature-text h3 {
  color: #fff;
  letter-spacing: -0.01em;
}

.program-card p {
  color: rgba(247, 244, 234, 0.75);
}

.program-price {
  background: linear-gradient(135deg, #f4d46c, #c89c2f);
  color: #0f2416;
  border-radius: 0.9rem;
  padding: 0.35rem 0.65rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 10px 18px rgba(0, 0, 0, 0.18);
}

.program-frequency {
  opacity: 0.8;
}

.program-card.is-active {
  border-color: rgba(246, 208, 110, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 18px 32px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(246, 208, 110, 0.25);
  transform: translateY(-2px);
}

.program-body {
  background: linear-gradient(180deg, #ffffff, #f4f6f0);
  border-radius: 1.25rem;
  padding: 1.4rem;
  border: 1px solid rgba(23, 56, 36, 0.1);
  box-shadow: 0 22px 32px rgba(8, 24, 15, 0.18);
}

.program-board {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(23, 56, 36, 0.08);
  box-shadow: 0 18px 26px rgba(11, 25, 17, 0.12);
  padding: 1.4rem;
  display: grid;
  gap: 1.2rem;
}

.program-summary {
  background: linear-gradient(180deg, #fdfcf8, #f4f7f3);
  border: 1px solid rgba(23, 56, 36, 0.08);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  display: grid;
  gap: 1rem;
}

.summary-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: start;
}

.summary-price {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  text-align: right;
}

.price-chip {
  background: linear-gradient(135deg, #123221, #0d2519);
  color: #f6d46b;
  padding: 0.8rem 1.05rem;
  border-radius: 0.9rem;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(246, 212, 107, 0.18);
  border: 1px solid rgba(246, 212, 107, 0.4);
}

.price-chip .price-frequency {
  color: rgba(246, 212, 107, 0.8);
}

.program-title {
  margin: 0.2rem 0;
}

.program-description {
  color: #314737;
  margin: 0;
}

.program-summary .program-bonus {
  background: #fff7e5;
  color: #7d5a11;
  border: 1px solid rgba(198, 149, 33, 0.35);
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  margin: 0;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.stat-block {
  background: #f7f8f4;
  border: 1px solid rgba(23, 56, 36, 0.08);
  border-radius: 0.85rem;
  padding: 0.75rem 0.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-label {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  color: #5b6b60;
}

.stat-value {
  margin: 0;
  font-weight: 800;
  color: #1b3523;
}

.program-panels {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}

.program-panel {
  background: linear-gradient(180deg, #0f1e16, #142c1f);
  border: 1px solid rgba(246, 212, 107, 0.32);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #f6f3eb;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.panel-header h4 {
  margin: 0.1rem 0;
  color: #fff;
}

.panel-note {
  margin: 0;
  color: rgba(245, 242, 232, 0.7);
  max-width: 360px;
  text-align: right;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 212, 107, 0.3);
  border-radius: 0.85rem;
  padding: 0.85rem 0.95rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.detail-step {
  width: 44px;
  height: 44px;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, rgba(246, 212, 107, 0.32), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(246, 212, 107, 0.48);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0f1e16;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.detail-card h3 {
  margin: 0;
  color: #fff;
}

.detail-card p {
  margin: 0.15rem 0 0;
  color: rgba(245, 242, 232, 0.78);
}

.plan-panel .option-list {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.75rem;
}

.option-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(246, 212, 107, 0.3);
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
}

.option-header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.option-title {
  margin: 0;
  color: #fff;
}

.option-desc,
.option-note,
.option-label {
  color: rgba(245, 242, 232, 0.78);
}

.option-price {
  color: #f6d46b;
  font-weight: 800;
}

.option-lines {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.option-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.7rem;
  border: 1px solid rgba(246, 212, 107, 0.22);
}

.option-line .option-note {
  margin: 0.15rem 0 0;
}

@media (max-width: 980px) {
  .program-panels {
    grid-template-columns: 1fr;
  }

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

  .panel-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .program-card-row {
    grid-template-columns: 1fr;
  }

  .option-line {
    flex-direction: column;
    align-items: flex-start;
  }
}


