/* ==========================================================================
   PAGES.CSS — Inner Page Styles
   All styles for the 6 inner pages (about, method, stories, 3 services).
   Nav, footer, buttons (.hb-p, .hb-g), CSS variables, and .float-wa
   are in main.css — do NOT duplicate here.
   ========================================================================== */


/* ==========================================================================
   PAGE HERO
   Used on about, method, stories pages
   ========================================================================== */

.page-hero {
  min-height: 88vh;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--w1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.07) 0%, transparent 60%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.05) 0%, transparent 60%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}
.ph-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}
.ph-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.ph-eyebrow::before,
.ph-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal));
}
.ph-eyebrow::after {
  background: linear-gradient(90deg, var(--teal), transparent);
}
.ph-title {
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -4px;
  margin-bottom: 24px;
}
.ph-title span {
  display: block;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ph-title em {
  display: block;
  -webkit-text-fill-color: var(--teal);
  font-style: normal;
}
.ph-sub,
.ph-intro {
  font-size: 17px;
  color: var(--w5);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 400;
}
.ph-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ph-btns a {
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pb-p {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  box-shadow: 0 0 32px rgba(20,184,166,0.18);
}
.pb-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(20,184,166,0.3);
}
.pb-g {
  background: rgba(255,255,255,0.08);
  color: var(--w);
  border: 1px solid var(--w15);
  backdrop-filter: blur(8px);
}
.pb-g:hover {
  background: rgba(255,255,255,0.13);
}

/* Hero image wrapper (about page style) */
.ph-img-wrap { position: relative; }
.ph-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
  border: 1px solid var(--w1);
  position: relative;
}
.ph-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
}
.ph-stats-overlay {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.overlay-stat .n {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
}
.overlay-stat .n em { color: var(--teal); font-style: normal; }
.overlay-stat .l { font-size: 11px; color: var(--w3); margin-top: 3px; }

/* Hero image badge (service pages) */
.ph-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--w1);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
}
.ph-img-badge .n { font-size: 32px; font-weight: 900; letter-spacing: -2px; color: var(--w); line-height: 1; }
.ph-img-badge .n em { color: var(--teal); font-style: normal; }
.ph-img-badge .l { font-size: 11px; color: var(--w3); margin-top: 3px; }

/* Hero stats cards (stories page) */
.ph-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ph-stat {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s;
}
.ph-stat:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); transform: translateY(-3px); }
.ph-stat__n { font-size: 52px; font-weight: 900; letter-spacing: -3px; line-height: 1; margin-bottom: 6px; }
.ph-stat__n em { color: var(--teal); font-style: normal; font-size: 32px; }
.ph-stat__l { font-size: 12px; color: var(--w3); font-weight: 500; }

/* Mini stats row (below CTA buttons in hero) */
.ph-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.ph-mini-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 90px;
  text-align: center;
}
.ph-mini-stat__n {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.ph-mini-stat__n em {
  font-style: normal;
}
.ph-mini-stat__l {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.05em;
}

/* Centered hero variant (service pages) */
.page-hero--centered {
  text-align: center;
  min-height: 70vh;
}
.page-hero--centered .ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero--centered .ph-sub {
  max-width: 640px;
  margin: 0 auto 28px;
}
.page-hero--centered .ph-btns {
  justify-content: center;
}

/* Service page hero variant */
.page-hero--service .ph-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero--service .ph-img {
  aspect-ratio: 4/3;
  max-height: 480px;
}


/* ==========================================================================
   SHARED SECTION & BREADCRUMB
   ========================================================================== */

.page-sec {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Story page breadcrumb */
.breadcrumb {
  padding: 70px 40px 10px;
  max-width: 1280px;
  margin: 0 auto;
  direction: rtl;
}
.breadcrumb-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #888;
}
.breadcrumb-inner a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-inner a:hover {
  color: var(--teal);
  text-decoration: underline;
}
.breadcrumb-inner i {
  font-size: 9px;
  color: #555;
}
.breadcrumb-inner span {
  color: #fff;
  font-weight: 500;
}


/* ==========================================================================
   QUOTE BLOCK
   ========================================================================== */

.qb {
  text-align: center;
  padding: 56px 40px;
  border-top: 1px solid var(--w1);
  border-bottom: 1px solid var(--w1);
  position: relative;
}
.qb::before {
  content: '"';
  font-size: 120px;
  font-weight: 900;
  color: rgba(20,184,166,0.25);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 50%;
  transform: translateX(50%);
  line-height: 1;
}
.qb p {
  font-size: 19px;
  font-weight: 300;
  color: var(--w5);
  max-width: 560px;
  margin: 0 auto 8px;
  line-height: 1.7;
  font-style: italic;
}
.qb em {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
}


/* ==========================================================================
   SPLIT SECTIONS
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.split--reverse { direction: ltr; }
.split--reverse > * { direction: rtl; }
.split__img { position: relative; overflow: hidden; min-height: 480px; }
.split__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}
.split:hover .split__img img { transform: scale(1.03); }
.split__img::after { content: ''; position: absolute; inset: 0; }
.split--right .split__img::after { background: linear-gradient(90deg, transparent 60%, var(--bg)); }
.split--left .split__img::after { background: linear-gradient(-90deg, transparent 60%, var(--bg)); }
.split__content {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__content .sec__e { margin-bottom: 10px; }
.split__content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.split__content h2 em { color: var(--teal); font-style: normal; }
.split__content p { font-size: 14px; color: var(--w5); line-height: 1.7; margin-bottom: 16px; }
.split__features { list-style: none; margin-bottom: 24px; }
.split__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--w6);
  padding: 5px 0;
}
.split__features li i {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(20,184,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 9px;
  flex-shrink: 0;
}
.split__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  align-self: flex-start;
}
.split__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(20,184,166,0.3);
}


/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
  background: var(--s1);
  border-top: 1px solid var(--w1);
  border-bottom: 1px solid var(--w1);
  padding: 64px 40px;
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-band-text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.cta-band-text h2 em { color: var(--teal); font-style: normal; }
.cta-band-text p { font-size: 15px; color: var(--w5); max-width: 440px; line-height: 1.65; }
.cta-band-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cta-band-btns a {
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}


/* ==========================================================================
   CTA SPLIT FORM (method, stories pages)
   ========================================================================== */

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-eye {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-split h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.cta-split h2 em { color: var(--teal); font-style: normal; }
.cta-split > div > p { font-size: 15px; color: var(--w5); line-height: 1.7; margin-bottom: 28px; }
.cta-trust { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.cta-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--w6); }
.cta-trust-item i {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(20,184,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 9px;
  flex-shrink: 0;
}
.cta-mini-review {
  background: var(--w05);
  border: 1px solid var(--w1);
  border-radius: 16px;
  padding: 20px 24px;
  border-right: 3px solid var(--teal);
}
.cta-mini-review p { font-size: 14px; color: var(--w5); font-style: italic; line-height: 1.6; margin-bottom: 6px; }
.cta-mini-review span { font-size: 12px; color: var(--teal); font-weight: 600; }
.cta-form-card {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 24px;
  padding: 40px;
}
.cta-form-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.5px; }
.cta-form-card input,
.cta-form-card textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--w15);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--w);
  font-size: 14px;
  font-family: 'Heebo', sans-serif;
  margin-bottom: 10px;
  transition: border-color 0.3s;
  outline: none;
}
.cta-form-card input::placeholder,
.cta-form-card textarea::placeholder { color: var(--w3); }
.cta-form-card input:focus,
.cta-form-card textarea:focus { border-color: var(--teal); }
.cta-form-card textarea { height: 90px; resize: none; }
.cta-form-card button {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: all 0.3s;
  margin-top: 4px;
}
.cta-form-card button:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(20,184,166,0.3); }
.cta-divider {
  text-align: center;
  font-size: 12px;
  color: var(--w3);
  margin: 16px 0;
  position: relative;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 44%;
  height: 1px;
  background: var(--w1);
}
.cta-divider::before { right: 0; }
.cta-divider::after { left: 0; }
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--w);
  border: 1px solid var(--w15);
  border-radius: 12px;
  padding: 14px;
  transition: all 0.3s;
}
.cta-phone:hover { border-color: var(--teal); color: var(--teal); }
.cta-hours { text-align: center; font-size: 12px; color: var(--w3); margin-top: 10px; }


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* Story grid */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.story-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--w1);
}
.story-img img { filter: brightness(0.8); }
.story-text p { font-size: 16px; color: var(--w5); line-height: 1.8; margin-bottom: 20px; }
.story-quote {
  padding: 24px 28px;
  border-radius: 16px;
  border-right: 3px solid var(--teal);
  background: var(--w05);
  margin: 28px 0;
}
.story-quote p { font-size: 16px; font-style: italic; color: var(--w6); line-height: 1.7; margin: 0; }

/* Milestones */
.milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}
.milestone {
  background: var(--s1);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s;
}
.milestone:hover { background: rgba(20,184,166,0.04); }
.milestone-num { font-size: 48px; font-weight: 900; letter-spacing: -3px; line-height: 1; margin-bottom: 8px; }
.milestone-num em { color: var(--teal); font-style: normal; }
.milestone-lbl { font-size: 13px; color: var(--w3); font-weight: 500; line-height: 1.4; }

/* Beliefs grid — styles in main.css, no duplicate needed */

/* Credentials */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cred-card {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.4s;
}
.cred-card:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); transform: translateY(-3px); }
.cred-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}
.cred-card:hover .cred-icon { background: #14B8A6; color: #050505; border-color: #14B8A6; }
.cred-content h4 { font-size: 15px; font-weight: 800; margin-bottom: 5px; }
.cred-content p { font-size: 12px; color: var(--w5); line-height: 1.55; }


/* ==========================================================================
   METHOD PAGE
   ========================================================================== */

/* Bento cards */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.bc {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.bc::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(20,184,166,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.bc:hover::before { opacity: 1; }
.bc:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); transform: translateY(-4px); }
.bc:nth-child(1) { grid-column: span 2; }
.bc:nth-child(4) { grid-column: span 2; }
.bc__i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}
.bc:hover .bc__i { background: #14B8A6; color: #050505; border-color: #14B8A6; }
.bc__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(239,68,68,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.bc__t { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.bc__x { font-size: 13px; color: var(--w5); line-height: 1.6; }

/* Pillars */
/* Pillars — now use .beliefs-grid--3 + .belief-card from main.css */

/* Process steps */
.process-wrap { border-top: 1px solid var(--w1); border-bottom: 1px solid var(--w1); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.ps {
  padding: 48px 36px;
  border-left: 1px solid var(--w1);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.ps:last-child { border-left: none; }
.ps:hover { background: var(--w05); }
.ps__num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(20,184,166,0.35);
  letter-spacing: -3px;
  margin-bottom: 16px;
  line-height: 1;
  transition: color 0.3s;
}
.ps:hover .ps__num { color: rgba(20,184,166,0.6); }
.ps__arrow { position: absolute; left: -8px; top: 56px; color: var(--w1); font-size: 10px; }
.ps__t { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.ps__x { font-size: 13px; color: var(--w5); line-height: 1.6; }
.ps__detail { font-size: 12px; color: rgba(20,184,166,0.6); margin-top: 12px; font-style: italic; line-height: 1.5; }

/* Process CTA */
.process-cta { text-align: center; padding: 56px 40px; max-width: 1200px; margin: 0 auto; }
.process-cta__line { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); margin: 0 auto 28px; }
.process-cta__t { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.process-cta__s { font-size: 15px; color: var(--w5); margin-bottom: 24px; }
.process-cta__btns { display: flex; gap: 10px; justify-content: center; }
.process-cta__btns a {
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Comparison table */
.comp-table { border: 1px solid var(--w1); border-radius: 20px; overflow: hidden; margin-top: 48px; }
.comp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--w1); }
.comp-row:last-child { border-bottom: none; }
.comp-row.header { background: var(--s2); }
.comp-cell {
  padding: 20px 28px;
  font-size: 14px;
  color: var(--w5);
  border-left: 1px solid var(--w1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.comp-cell:first-child { border-left: none; font-weight: 600; color: var(--w6); }
.comp-cell.highlight { background: rgba(20,184,166,0.04); color: var(--w8); }
.comp-row.header .comp-cell { font-size: 13px; font-weight: 700; color: var(--w3); letter-spacing: 1px; text-transform: uppercase; }
.comp-row.header .comp-cell.highlight { color: var(--teal); }
.check-icon { color: var(--teal); font-size: 12px; }
.cross-icon { color: rgba(255,255,255,0.2); font-size: 12px; }

/* Photo strip */
.photo-strip { width: 100%; height: 320px; position: relative; overflow: hidden; }
.photo-strip img { filter: brightness(0.45) saturate(0.9); }
.photo-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}
.photo-strip__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}
.photo-strip__text h3 { font-size: 28px; font-weight: 800; letter-spacing: -1px; }
.photo-strip__text h3 em { color: var(--teal); font-style: normal; }


/* ==========================================================================
   STORIES PAGE
   ========================================================================== */

/* Filter bar */
.filter-bar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--w1);
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 53px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
}
.filter-label { font-size: 11px; font-weight: 600; color: var(--w3); letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; }
.filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--w3);
  background: transparent;
  border: 1px solid var(--w1);
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.filter-btn:hover,
.filter-btn.active { background: var(--teal); color: var(--bg); border-color: var(--teal); }

/* Featured story card */
.featured-wrap { padding: 64px 40px 0; max-width: 1200px; margin: 0 auto; }
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--w1);
  border-radius: 24px;
  overflow: hidden;
  background: var(--s1);
  transition: border-color 0.4s;
}
.featured-card:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); }
.feat-img-wrap { position: relative; overflow: hidden; min-height: 460px; }
.feat-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.featured-card:hover .feat-img-wrap img { transform: scale(1.04); }
.feat-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(-90deg, transparent 60%, rgba(10,10,10,0.8)); }
.feat-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}
.feat-body { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.feat-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-tag::before { content: ''; width: 16px; height: 1px; background: var(--teal); }
.feat-body h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 16px; }
.feat-body h2 em { color: var(--teal); font-style: normal; }
.feat-meta { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.feat-meta span {
  font-size: 12px;
  color: var(--w3);
  background: var(--w05);
  border: 1px solid var(--w1);
  border-radius: 100px;
  padding: 4px 12px;
}
.feat-quote {
  font-size: 15px;
  color: var(--w5);
  font-style: italic;
  line-height: 1.7;
  border-right: 2px solid var(--teal);
  padding-right: 16px;
  margin-bottom: 28px;
}
.feat-results { display: flex; gap: 12px; margin-bottom: 28px; }
.result-box {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  background: var(--w05);
  border: 1px solid var(--w1);
  border-radius: 14px;
  transition: border-color 0.3s;
}
.result-box:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); }
.result-val { font-size: 24px; font-weight: 900; letter-spacing: -1px; color: var(--teal); display: block; line-height: 1; margin-bottom: 4px; }
.result-lbl { font-size: 11px; color: var(--w3); font-weight: 500; }
.feat-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--teal); transition: gap 0.3s; }
.feat-link:hover { gap: 14px; }

/* Stories grid & cards */
.stories-sec { padding: 64px 40px 120px; max-width: 1200px; margin: 0 auto; }
.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--w1);
}
.stories-header h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.stories-counter { font-size: 13px; color: var(--w3); font-weight: 500; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.sc {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.sc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,184,166,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.sc:hover::before { opacity: 1; }
.sc:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); transform: translateY(-5px); }
.sc:hover .sc-img { transform: scale(1.05); }
.sc-img-wrap { height: 180px; position: relative; overflow: hidden; }
.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.sc-num { position: absolute; top: 14px; right: 14px; font-size: 32px; font-weight: 900; color: rgba(255,255,255,0.12); z-index: 2; letter-spacing: -2px; line-height: 1; }
.sc-service {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.5px;
}
.sc-breed {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 400;
  z-index: 2;
}
.sc-body { padding: 24px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.sc-duration {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sc-duration::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.sc-title { font-size: 19px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; line-height: 1.25; }
.sc-title em { color: var(--teal); font-style: normal; }
.sc-desc { font-size: 13px; color: var(--w5); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.sc-footer { padding-top: 16px; border-top: 1px solid var(--w1); display: flex; justify-content: space-between; align-items: center; }
.sc-author { display: flex; align-items: center; gap: 10px; }
.sc-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20,184,166,0.2), rgba(20,184,166,0.05));
  border: 1px solid rgba(20,184,166,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}
.sc-name { font-size: 13px; font-weight: 700; color: var(--w8); line-height: 1.2; }
.sc-dog { font-size: 11px; color: var(--w3); margin-top: 2px; }
.sc-arrow { color: var(--w1); font-size: 14px; transition: all 0.3s; }
.sc:hover .sc-arrow { color: var(--teal); transform: translateX(-4px); }
.sc.hidden { display: none; }

/* Quote band */
.quote-band {
  text-align: center;
  padding: 48px 40px;
  border-top: 1px solid var(--w1);
  border-bottom: 1px solid var(--w1);
  position: relative;
  margin: 0 -40px;
}
.quote-band::before {
  content: '\201C';
  font-size: 80px;
  font-weight: 300;
  color: rgba(20,184,166,0.08);
  position: absolute;
  top: 10px;
  right: 50%;
  transform: translateX(50%);
  line-height: 1;
}
.quote-band p { font-size: 18px; font-weight: 300; color: var(--w5); max-width: 520px; margin: 0 auto 8px; line-height: 1.7; font-style: italic; }
.quote-band em { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 2px; text-transform: uppercase; font-style: normal; }

/* Stats strip */
.stats-strip {
  border-top: 1px solid var(--w1);
  border-bottom: 1px solid var(--w1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ss-item { padding: 48px 40px; text-align: center; border-left: 1px solid var(--w1); transition: background 0.3s; }
.ss-item:last-child { border-left: none; }
.ss-item:hover { background: var(--w05); }
.ss-num { font-size: 48px; font-weight: 900; letter-spacing: -3px; line-height: 1; margin-bottom: 6px; }
.ss-num em { color: var(--teal); font-style: normal; }
.ss-lbl { font-size: 12px; color: var(--w3); font-weight: 500; }


/* ==========================================================================
   SERVICE PAGES (puppy, training, boarding)
   ========================================================================== */

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.why-card {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover::after { opacity: 1; }
.why-card:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); transform: translateY(-4px); }
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 18px;
  margin-bottom: 16px;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}
.why-card:hover .why-icon { background: #14B8A6; color: #050505; border-color: #14B8A6; }
.why-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.why-text { font-size: 13px; color: var(--w5); line-height: 1.65; }

/* Included grid */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--s1);
  border: 1px solid var(--w1);
  border-right: 3px solid #14B8A6;
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s;
}
.inc-item:hover { border-color: rgba(255,255,255,0.08); border-right-color: #2DD4BF; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); }
.inc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 14px;
  flex-shrink: 0;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}
.site-icon { display: block; font-size: 26px; margin-bottom: 14px; line-height: 1; color: #14B8A6; }
.inc-item .site-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.inc-badge {
  display: inline-block;
  background: #14B8A6;
  color: #050505;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.inc-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.inc-text p { font-size: 13px; color: var(--w5); line-height: 1.6; }

/* Timeline */
.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--w1);
  align-items: start;
  transition: background 0.3s;
  position: relative;
}
.tl-item:first-child { border-top: 1px solid var(--w1); }
.tl-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,184,166,0.03);
  opacity: 0;
  transition: opacity 0.3s;
}
.tl-item:hover::before { opacity: 1; }
.tl-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(20,184,166,0.35);
  letter-spacing: -3px;
  line-height: 1;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}
.tl-item:hover .tl-num { color: rgba(20,184,166,0.6); }
.tl-content { position: relative; z-index: 1; }
.tl-week { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.tl-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.tl-text { font-size: 14px; color: var(--w5); line-height: 1.65; }
.tl-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.tl-tag { font-size: 11px; color: var(--w3); background: var(--w05); border: 1px solid var(--w1); border-radius: 100px; padding: 3px 10px; }

/* Pricing */
.pricing-card {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  max-width: 560px;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.pricing-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.pricing-label { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.pricing-name { font-size: 26px; font-weight: 900; letter-spacing: -1px; }
.pricing-price { text-align: left; }
.pricing-price .from { font-size: 11px; color: var(--w3); display: block; margin-bottom: 2px; }
.pricing-price .amount { font-size: 36px; font-weight: 900; letter-spacing: -2px; }
.pricing-price .per { font-size: 12px; color: var(--w3); }
.pricing-divider { height: 1px; background: var(--w1); margin-bottom: 28px; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--w6); }
.pricing-list li i {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(20,184,166,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 9px;
  flex-shrink: 0;
}
.pricing-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: var(--bg);
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: all 0.3s;
}
.pricing-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(20,184,166,0.3); }
.pricing-note { font-size: 12px; color: var(--w3); text-align: center; margin-top: 12px; }

/* Reviews grid */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rc {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.3s;
}
.rc:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); }
.rc__stars { color: var(--teal); font-size: 12px; margin-bottom: 14px; display: flex; gap: 3px; }
.rc__text { font-size: 14px; color: var(--w5); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.rc__tag {
  display: inline-block;
  font-size: 11px;
  color: var(--teal);
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.15);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 16px;
}
.rc__author { display: flex; align-items: center; gap: 10px; }
.rc__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20,184,166,0.2), rgba(20,184,166,0.05));
  border: 1px solid rgba(20,184,166,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}
.rc__name { font-size: 13px; font-weight: 700; color: var(--w8); }
.rc__dog { font-size: 11px; color: var(--w3); }

/* Inner page FAQ */
.faq-section {
  padding: 100px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-q h3 { font-size: 16px; font-weight: 700; transition: color 0.2s; }
.faq-q:hover h3 { color: #14B8A6; }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-toggle { background: #14B8A6; border-color: #14B8A6; color: #050505; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; padding-bottom: 0; transition: max-height 0.4s ease, padding-bottom 0.4s ease; }
.faq-item.open .faq-answer { padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* Steps grid (training page) */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.step-card {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.4s;
}
.step-card:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); transform: translateY(-3px); }
.step-num { font-size: 40px; font-weight: 900; color: rgba(20,184,166,0.35); letter-spacing: -3px; line-height: 1; flex-shrink: 0; transition: color 0.3s; }
.step-card:hover .step-num { color: rgba(20,184,166,0.6); }
.step-content h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.step-content p { font-size: 13px; color: var(--w5); line-height: 1.65; }

/* Results band (training page) */
.results-band {
  background: var(--s1);
  border-top: 1px solid var(--w1);
  border-bottom: 1px solid var(--w1);
  padding: 64px 40px;
}
.results-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}
.result-item { background: var(--s1); padding: 40px 28px; text-align: center; transition: background 0.3s; }
.result-item:hover { background: rgba(20,184,166,0.04); }
.result-num { font-size: 44px; font-weight: 900; letter-spacing: -3px; line-height: 1; margin-bottom: 6px; }
.result-num em { color: var(--teal); font-style: normal; }

/* Daily grid (boarding page) */
.daily-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.day-card {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.day-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.day-card:hover::after { opacity: 1; }
.day-card:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); transform: translateY(-4px); }
.day-time { font-size: 15px; font-weight: 800; color: #14B8A6; letter-spacing: -0.3px; margin-bottom: 14px; }
.day-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 18px;
  margin-bottom: 14px;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}
.day-card:hover .day-icon { background: #14B8A6; color: #050505; border-color: #14B8A6; }
.day-title { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.day-text { font-size: 13px; color: var(--w5); line-height: 1.65; }

/* Diff grid (boarding page) */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.diff-card {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.diff-card:hover { border-color: #14B8A6; box-shadow: 0 0 0 1px rgba(20,184,166,0.3), 0 0 24px rgba(20,184,166,0.12); }
.diff-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14B8A6;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid #14B8A6;
  transition: all 0.3s ease;
}
.diff-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.diff-text p { font-size: 13px; color: var(--w5); line-height: 1.6; }

/* Journey (boarding page) */
.journey { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.journey-side {
  background: var(--s1);
  border: 1px solid var(--w1);
  border-radius: 20px;
  padding: 36px;
}
.journey-side h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.5px; }
.journey-side .sub { font-size: 12px; color: var(--teal); margin-bottom: 24px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.journey-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.journey-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--w5); line-height: 1.6; }
.journey-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 5px; }


/* Story read-more button (on story cards) */
.story-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
  transition: gap 0.3s;
}
.story-read-more:hover { gap: 14px; }

/* ==========================================================================
   STORY PAGE (individual dog story)
   ========================================================================== */

/* Story Hero */
.story-hero {
  padding: 100px 40px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
}
.story-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-hero-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.08);
}
.story-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.story-service-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #14B8A6;
  color: #050505;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
}
.story-hero-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 16px;
}
.story-hero-title span {
  display: block;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-hero-title em {
  display: block;
  -webkit-text-fill-color: #14B8A6;
  font-style: normal;
}
.story-stars {
  color: #F59E0B;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.story-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 24px;
}
.story-owner-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.story-owner-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #14B8A6;
}
.story-owner-name {
  font-size: 14px;
  font-weight: 700;
}
.story-owner-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* Story body */
.story-body {
  max-width: 740px;
  margin: 80px auto;
  padding: 0 40px;
}
/* Light variant */
.story-body--light {
  max-width: none;
  margin: 0;
  padding: 80px 40px;
  background: #F8FAFB;
  box-shadow: 0 0 0 100vmax #F8FAFB;
  clip-path: inset(-2px -100vmax);
}
.story-body--light .back-link { color: #999; max-width: 740px; margin: 0 auto 48px; }
.story-body--light .back-link:hover { color: #14B8A6; }
.story-body--light .story-text { max-width: 740px; margin: 0 auto; }
.story-body--light .story-text p { color: #333; }
.story-body--light .story-pull-quote {
  max-width: 740px;
  margin: 40px auto;
  color: #1A1A2E;
  background: rgba(20,184,166,0.06);
}
.story-body--light .story-results {
  max-width: 740px;
  margin: 48px auto;
}
.story-body--light .result-box {
  background: #fff;
  border-color: #E2E8F0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.story-body--light .result-num { color: var(--teal); }
.story-body--light .result-lbl { color: #666; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 48px;
  transition: color 0.2s;
  text-decoration: none;
}
.back-link:hover { color: #14B8A6; }
.story-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 24px;
}
.story-pull-quote {
  border-right: 3px solid #14B8A6;
  padding: 20px 24px;
  margin: 40px 0;
  background: rgba(20,184,166,0.04);
  border-radius: 0 12px 12px 0;
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Results */
.story-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 48px 0;
}
.result-box {
  background: #0A0A0A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.result-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #14B8A6;
  line-height: 1;
  margin-bottom: 6px;
}
.result-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-hero .ph-eyebrow { animation: fadeUp 0.7s ease 0.2s both; }
.page-hero .ph-title { animation: fadeUp 0.8s ease 0.35s both; }
.page-hero .ph-sub,
.page-hero .ph-intro { animation: fadeUp 0.8s ease 0.5s both; }
.page-hero .ph-btns { animation: fadeUp 0.8s ease 0.6s both; }
.page-hero .ph-stats { animation: fadeUp 0.8s ease 0.4s both; }


/* ==========================================================================
   PRICING LAYOUT (replaces inline grid in puppy page)
   ========================================================================== */

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}


/* ==========================================================================
   SEC--LIGHT OVERRIDES FOR INNER PAGE COMPONENTS
   ========================================================================== */

/* Why cards */
.sec--light .why-card { background: #fff; border-color: #E2E8F0; }
.sec--light .why-card:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(20,184,166,0.12); }
.sec--light .why-title { color: #1A1A2E; }
.sec--light .why-text { color: #666; }
.sec--light .why-card:hover .why-icon { color: #fff; }

/* Included items */
.sec--light .inc-item { background: #fff; border-color: #E2E8F0; border-right-color: var(--teal); }
.sec--light .inc-item:hover { border-color: #E2E8F0; border-right-color: var(--teal2); }
.sec--light .inc-text h4 { color: #1A1A2E; }
.sec--light .inc-text p { color: #666; }

/* Timeline */
.sec--light .tl-item { border-color: #E2E8F0; }
.sec--light .tl-item:first-child { border-top-color: #E2E8F0; }
.sec--light .tl-title { color: #1A1A2E; }
.sec--light .tl-text { color: #555; }
.sec--light .tl-tag { color: #666; background: #fff; border-color: #E2E8F0; }

/* Pricing card */
.sec--light .pricing-card { background: #fff; border-color: #E2E8F0; }
.sec--light .pricing-name { color: #1A1A2E; }
.sec--light .pricing-price .amount { color: #1A1A2E; }
.sec--light .pricing-price .from,
.sec--light .pricing-price .per,
.sec--light .pricing-note { color: #888; }
.sec--light .pricing-divider { background: #E2E8F0; }
.sec--light .pricing-list li { color: #555; }

/* FAQ in light context */
.sec--light .faq-item { border-color: #E2E8F0; }
.sec--light .faq-item:first-child { border-top-color: #E2E8F0; }
.sec--light .faq-q h3 { color: #1A1A2E; }
.sec--light .faq-q:hover h3 { color: var(--teal); }
.sec--light .faq-toggle { background: rgba(20,184,166,0.06); border-color: #E2E8F0; color: #999; }
.sec--light .faq-item.open .faq-toggle { background: var(--teal); border-color: var(--teal); color: #fff; }
.sec--light .faq-answer p { color: #555; }
.sec--light .faq-header .sec__t { color: #1A1A2E; }

/* Reviews in light context */
.sec--light .rc { background: #fff; border-color: #E2E8F0; }
.sec--light .rc:hover { border-color: var(--teal); }
.sec--light .rc__text { color: #555; }
.sec--light .rc__name { color: #1A1A2E; }
.sec--light .rc__dog { color: #888; }

/* Step cards */
.sec--light .step-card { background: #fff; border-color: #E2E8F0; }
.sec--light .step-card:hover { border-color: var(--teal); }
.sec--light .step-content h3 { color: #1A1A2E; }
.sec--light .step-content p { color: #666; }

/* Comparison table */
.sec--light .comp-table { border-color: #E2E8F0; background: #fff; }
.sec--light .comp-row { border-bottom-color: #E2E8F0; }
.sec--light .comp-row.header { background: #F1F5F9; }
.sec--light .comp-row.header .comp-cell { color: #888; }
.sec--light .comp-row.header .comp-cell.highlight { color: var(--teal); background: rgba(20,184,166,0.08); }
.sec--light .comp-cell { color: #555; border-left-color: #E2E8F0; }
.sec--light .comp-cell:first-child { color: #1A1A2E; }
.sec--light .comp-cell.highlight { background: rgba(20,184,166,0.06); color: #1A1A2E; }
.sec--light .cross-icon { color: #CBD5E1; }
.sec--light .check-icon { color: var(--teal); }

/* Bento / problem cards */
.sec--light .bc { background: #fff; border-color: #E2E8F0; }
.sec--light .bc:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(20,184,166,0.12); }
.sec--light .bc::before { display: none !important; }
.sec--light .bc__t { color: #1A1A2E; }
.sec--light .bc__x { color: #666; }
.sec--light .bc__badge { color: #e53e3e; }

/* Diff cards (boarding page) */
.sec--light .diff-card { background: #fff; border-color: #E2E8F0; }
.sec--light .diff-card:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(20,184,166,0.12); }
.sec--light .diff-text h4 { color: #1A1A2E; }
.sec--light .diff-text p { color: #666; }

/* Daily schedule cards (boarding page) */
.sec--light .day-card { background: #fff; border-color: #E2E8F0; }
.sec--light .day-card:hover { border-color: var(--teal); box-shadow: 0 8px 24px rgba(20,184,166,0.12); }
.sec--light .day-title { color: #1A1A2E; }
.sec--light .day-text { color: #666; }

/* Journey (before/after boarding) */
.sec--light .journey-side { border-color: #E2E8F0; }
.sec--light .journey-side h3 { color: #1A1A2E; }
.sec--light .journey-list li { color: #555; }

/* Generic inner-page text */
.sec--light p,
.sec--light .about-text { color: #555; }
.sec--light h2,
.sec--light h3 { color: #1A1A2E; }
.sec--light h2 em,
.sec--light h3 em { color: var(--teal); }

/* FAQ section full-width light (uses box-shadow like .sec) */
.faq-section.sec--light {
  box-shadow: 0 0 0 100vmax #F8FAFB;
  clip-path: inset(-2px -100vmax);
  background: #F8FAFB;
  color: #1A1A2E;
}

/* Teal quote on inner pages */
.qb.sec--teal {
  background: linear-gradient(135deg, #0D9488, #14B8A6, #2DD4BF);
  border-color: rgba(255,255,255,0.15);
}
.qb.sec--teal::before { color: rgba(255,255,255,0.2); }
.qb.sec--teal p { color: rgba(255,255,255,0.95); }
.qb.sec--teal em { color: #fff; }

/* ==========================================================================
   STORIES PAGE: Alternating section colors
   ========================================================================== */

/* Featured section - light bg */
.sec--light-bg {
  background: #F8FAFB;
  padding-bottom: 64px;
  box-shadow: 0 0 0 100vmax #F8FAFB;
  clip-path: inset(-2px -100vmax);
}
.sec--light-bg .featured-card {
  background: #fff;
  border-color: #E2E8F0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.sec--light-bg .featured-card:hover { border-color: var(--teal); }
.sec--light-bg .feat-body h2 { color: #1A1A2E; }
.sec--light-bg .feat-meta span { color: #888; border-color: #E2E8F0; }
.sec--light-bg .feat-quote { color: #555; }
.sec--light-bg .feat-img-wrap::after {
  background: linear-gradient(-90deg, transparent 50%, rgba(248,250,251,0.9));
}
.sec--light-bg .result-box { border-color: #E2E8F0; }
.sec--light-bg .result-val { color: var(--teal); }
.sec--light-bg .result-lbl { color: #888; }

/* Stories section header (above grids) */
.stories-sec--header {
  padding-bottom: 0;
}

/* Light stories section */
.stories-sec--light {
  background: #F8FAFB;
  padding: 48px 40px 64px;
  max-width: none;
}
.stories-sec--light .stories-grid {
  max-width: 1200px;
  margin: 0 auto;
}
.stories-sec--light .sc {
  background: #fff;
  border-color: #E2E8F0;
}
.stories-sec--light .sc:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(20,184,166,0.12);
}
.stories-sec--light .sc-title { color: #1A1A2E; }
.stories-sec--light .sc-desc { color: #555; }
.stories-sec--light .sc-duration { color: #888; }
.stories-sec--light .sc-footer { border-top-color: #E2E8F0; }
.stories-sec--light .sc-name { color: #1A1A2E; }
.stories-sec--light .sc-dog { color: #888; }
.stories-sec--light .sc-arrow { color: #ccc; }
.stories-sec--light .sc-img { filter: brightness(0.85) saturate(0.95); }

/* Teal quote bands */
.quote-band--teal {
  background: linear-gradient(135deg, #0D9488, #14B8A6, #2DD4BF);
  border-color: rgba(255,255,255,0.15);
}
.quote-band--teal::before { color: rgba(255,255,255,0.15); }
.quote-band--teal p { color: rgba(255,255,255,0.95); }
.quote-band--teal em { color: #fff; }

/* ==========================================================================
   RESPONSIVE — INNER PAGES
   Mobile-first: base = mobile, then scale up
   ========================================================================== */

/* ===== xs/sm base (320px–480px) — stacks everything ===== */

@media (max-width: 768px) {

  /* Page hero */
  .page-hero {
    min-height: auto;
    padding: 80px 20px 48px;
  }
  .ph-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ph-top > :last-child {
    order: -1;
  }
  .ph-title {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .ph-sub,
  .ph-intro {
    font-size: 15px;
    max-width: 100%;
  }
  .ph-btns {
    flex-direction: column;
    width: 100%;
  }
  .ph-btns a {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .ph-img {
    aspect-ratio: 16/9;
    max-height: 260px;
    width: 100%;
    border-radius: 16px;
  }
  .ph-stats-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 12px;
    border-radius: 14px;
  }
  .ph-mini-stats {
    gap: 8px;
  }
  .ph-mini-stat {
    min-width: 0;
    flex: 1 1 calc(50% - 4px);
    padding: 10px 12px;
  }
  .ph-mini-stat__n {
    font-size: 18px;
  }
  .ph-stat__n {
    font-size: 36px;
  }
  .ph-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .ph-stat {
    padding: 20px 16px;
    border-radius: 14px;
  }

  /* Service page hero variant */
  .page-hero--service .ph-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-hero--service .ph-img {
    aspect-ratio: 16/9;
    max-height: 260px;
    order: -1;
  }

  /* Page sections */
  .page-sec {
    padding: 64px 20px;
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 60px 20px 8px;
  }

  /* Story grid (about page) */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Milestones */
  .milestones {
    grid-template-columns: repeat(2, 1fr);
  }
  .milestone {
    padding: 28px 16px;
  }
  .milestone-num {
    font-size: 36px;
  }

  /* Beliefs grid */
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .beliefs-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .belief-card {
    padding: 24px;
  }

  /* Credentials */
  .cred-grid {
    grid-template-columns: 1fr;
  }

  /* Bento */
  .bento {
    grid-template-columns: 1fr;
  }
  .bc:nth-child(1),
  .bc:nth-child(4) {
    grid-column: span 1;
  }

  /* Process grid */
  .process-grid {
    grid-template-columns: 1fr;
  }
  .ps {
    border-left: none;
    border-bottom: 1px solid var(--w1);
    padding: 32px 20px;
  }
  .ps:last-child {
    border-bottom: none;
  }
  .ps__arrow {
    display: none;
  }
  .process-cta {
    padding: 40px 20px;
  }
  .process-cta__btns {
    flex-direction: column;
    align-items: center;
  }
  .process-cta__btns a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    min-height: 48px;
  }

  /* Comparison table */
  .comp-table {
    border-radius: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comp-row {
    min-width: 500px;
  }
  .comp-cell {
    padding: 14px 16px;
    font-size: 12px;
  }

  /* Split sections */
  .split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split__img {
    min-height: 260px;
  }
  .split__content {
    padding: 40px 20px;
  }
  .split--reverse {
    direction: rtl;
  }
  .split__btn {
    align-self: stretch;
    justify-content: center;
    min-height: 48px;
  }

  /* Photo strip */
  .photo-strip {
    height: 200px;
  }
  .photo-strip__text h3 {
    font-size: 20px;
    padding: 0 20px;
  }

  /* Quote block */
  .qb {
    padding: 40px 20px;
  }
  .qb p {
    font-size: 16px;
  }
  .qb::before {
    font-size: 80px;
  }

  /* Quote band */
  .quote-band {
    padding: 36px 20px;
    margin: 0;
  }
  .quote-band p {
    font-size: 16px;
  }

  /* Stats strip */
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .ss-item {
    padding: 28px 16px;
  }
  .ss-item:nth-child(2) {
    border-left: none;
  }
  .ss-num {
    font-size: 36px;
  }

  /* Stories page */
  .filter-bar {
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .filter-btns {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .filter-btn {
    flex-shrink: 0;
  }
  .featured-wrap {
    padding: 32px 20px 0;
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .feat-img-wrap {
    min-height: 220px;
  }
  .feat-body {
    padding: 28px 24px;
  }
  .feat-body h2 {
    font-size: 26px;
  }
  .feat-results {
    flex-direction: column;
    gap: 8px;
  }
  .stories-sec {
    padding: 40px 20px 80px;
  }
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stories-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Story page (individual) */
  .story-hero {
    padding: 20px;
  }
  .story-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-hero-title {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .story-body {
    padding: 0 20px;
    margin: 48px auto;
  }
  .story-results {
    grid-template-columns: 1fr;
  }
  .story-pull-quote {
    padding: 16px 20px;
    font-size: 15px;
    margin: 28px 0;
  }

  /* Service page sections */
  .why-grid {
    grid-template-columns: 1fr;
  }
  .included-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .daily-grid {
    grid-template-columns: 1fr;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .journey {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .journey-side {
    padding: 28px 20px;
  }

  /* Results band */
  .results-band {
    padding: 40px 20px;
  }
  .results-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .result-item {
    padding: 24px 16px;
  }
  .result-num {
    font-size: 32px;
  }

  /* Timeline */
  .tl-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .tl-num {
    font-size: 32px;
  }
  .tl-title {
    font-size: 17px;
  }

  /* Pricing */
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pricing-card {
    padding: 28px 24px;
  }
  .pricing-top {
    flex-direction: column;
    gap: 16px;
  }
  .pricing-price {
    text-align: right;
  }

  /* Reviews grid */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ section */
  .faq-section {
    padding: 64px 20px;
  }

  /* CTA band */
  .cta-band {
    padding: 40px 20px;
  }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .cta-band-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-band-btns a {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .cta-band-text p {
    max-width: 100%;
  }

  /* CTA split form */
  .cta-split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 20px;
  }
  .cta-form-card {
    padding: 28px 20px;
  }
  .cta-form-card input,
  .cta-form-card textarea {
    min-height: 48px;
    font-size: 16px;
  }
  .cta-form-card button {
    min-height: 48px;
    font-size: 16px;
  }
  .cta-phone {
    font-size: 16px;
    min-height: 48px;
  }
}


/* ===== 481px–768px tablet tweaks ===== */

@media (min-width: 481px) and (max-width: 768px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .daily-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== 480px and below (xs) ===== */

@media (max-width: 480px) {
  .ph-title {
    font-size: 32px;
    letter-spacing: -1.5px;
  }
  .beliefs-grid,
  .beliefs-grid--3 {
    grid-template-columns: 1fr;
  }
  .milestones {
    grid-template-columns: 1fr;
  }
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .ss-item {
    border-left: none;
    border-bottom: 1px solid var(--w1);
  }
  .ss-item:last-child {
    border-bottom: none;
  }
  .results-inner {
    grid-template-columns: 1fr;
  }
  .ph-stats {
    grid-template-columns: 1fr;
  }
  .story-hero-title {
    font-size: 32px;
    letter-spacing: -1.5px;
  }
  .feat-meta {
    flex-direction: column;
    gap: 8px;
  }
}


/* ===== 769px–1024px (tablet landscape) ===== */

@media (min-width: 769px) and (max-width: 1024px) {
  .page-hero {
    padding: 100px 32px 64px;
  }
  .ph-top {
    gap: 40px;
  }
  .ph-title {
    font-size: clamp(40px, 5.5vw, 64px);
  }
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .daily-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .milestones {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split__content {
    padding: 48px 32px;
  }
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }
  .feat-img-wrap {
    min-height: 360px;
  }
  .comp-cell {
    padding: 16px 20px;
    font-size: 13px;
  }
}
