/* ═══════════════════════════════════════════════════
   UNITED SHINE | Light Design System
   Palette: Royal Blue + Satin Gold on White
   No dark backgrounds | clean, fresh, professional
   Standard: High-Converting Landing Page
═══════════════════════════════════════════════════ */

:root {
  --blue:         #1E3A8A; /* Luxe Royal Blue */
  --blue-dark:    #111827;
  --blue-light:   #F3F4F6;
  --blue-mid:     #2563EB; /* Added for high-contrast gradients */
  --orange:       #FF4D00; /* Style 4: Vivid Orange */
  --orange-hover: #E64500;

  --white:        #FFFFFF;
  --off-white:    #F9FAFB;
  --surface:      #F3F4F6;
  --surface-y:    #FEF9C3;

  --text:         #111827;
  --text-2:       #374151;
  --text-3:       #4B5563;
  --text-4:       #9CA3AF;

  --green:        #10B981;
  --red-light:    #FFF5F5;
  --red-mid:      #FEB2B2;

  --radius-s:  8px;
  --radius-m:  14px;
  --radius-l:  24px;
  --radius-xl: 32px;
  --radius-f:  9999px;

  --shadow-s: 0 4px 12px rgba(10,46,80,.05);
  --shadow-m: 0 8px 32px rgba(10,46,80,.08);
  --shadow-l: 0 20px 60px rgba(10,46,80,.12);
  --shadow-y: 0 10px 40px rgba(255, 206, 0, 0.3);
  --shadow-b: 0 10px 40px rgba(42, 91, 177, 0.2);
  --shadow-gold-inner: inset 0 1px 1px rgba(255, 255, 255, 0.6);

  --ease:  cubic-bezier(.16,1,.3,1); /* Smooth Apple-style ease */
  --t:     0.4s;
}


/* -- Reset -- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img { max-width:100%; display:block; }
ul  { list-style:none; }
a   { color:inherit; text-decoration:none; }

*:focus-visible {
  outline:3px solid var(--yellow);
  outline-offset:3px;
  border-radius:4px;
}
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after {
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}

/* -- Scroll Progress -- */
.scroll-progress {
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--blue),var(--yellow));
  z-index:1000; transition:width .1s linear;
}

/* ── Typography ── */
h1,h2,h3,h4 {
  font-family:'Playfair Display',Georgia,serif;
  line-height:1.2; color:var(--text);
}
h1 { font-size:clamp(2rem,5.5vw,3.4rem); font-weight:900; }
h2 { font-size:clamp(1.55rem,4vw,2.3rem); font-weight:700; }
h3 { font-size:clamp(1.05rem,2.5vw,1.3rem); font-weight:700; }
p  { font-size:clamp(.94rem,2vw,1.04rem); }

.text-blue { color:var(--blue); }
.text-yellow { color:var(--yellow-deep); }

/* -- Container & Sections -- */
.container { max-width:820px; margin:0 auto; padding:0 24px; }
section    { padding:3.5rem 0; } /* Reduced padding between folds */
section:nth-child(even) { background:var(--off-white); }

/* ── Top Announcement Bar ── */
.top-announcement {
  background: var(--blue-dark);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
}
@media(max-width: 600px) {
  .top-announcement { font-size: 0.72rem; padding: 6px 12px; }
}

/* ── Section Head ── */
.section-head { text-align:center; margin-bottom:2.5rem; }
.section-head h2 { margin-bottom:.5rem; }
.section-sub   { color:var(--text-2); max-width:520px; margin:.6rem auto 0; }
.section-eyebrow {
  font-family:'Inter',sans-serif;
  font-size:.75rem; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--blue); margin-bottom:.5rem;
}

/* -- Buttons -- */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem;
  padding:14px 28px; border-radius:var(--radius-m);
  font-family:'Inter',sans-serif;
  font-weight:700; font-size:1.05rem;
  cursor:pointer; border:none;
  transition:all .3s var(--ease);
  text-decoration:none;
  text-align:center; position:relative; overflow:hidden;
  min-height:44px;
}
.btn:hover  { transform:translateY(-2px); }
.btn:active { transform:translateY(0) scale(.99); }

.btn--yellow { 
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 0 #992E00; /* Solid bottom shadow instead of gradient */
}
.btn--yellow:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 2px 0 #992E00;
}

.btn--outline {
  background:transparent; color:var(--text);
  border:2px solid var(--text);
}
.btn--outline:hover { background:var(--text); color:#fff; }

.btn--lg  { padding:18px 40px; font-size:1.15rem; }
.btn--sticky { width:100%; border-radius:12px; }

/* Pulse */
.pulse-btn { animation:pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { box-shadow:var(--shadow-y); }
  50%      { box-shadow:0 0 0 12px rgba(245,196,0,.18),var(--shadow-y); }
}

/* ── CTA Center ── */
.cta-center { text-align:center; margin-top:2rem; }

/* ── Reveal Animations ── */
.reveal {
  opacity:0; transform:translateY(24px);
  transition:opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.revealed { opacity:1; transform:translateY(0); }
.reveal--delay { transition-delay:.18s; }
.reveal--right  { transform:translateX(24px); }
.reveal--right.revealed { transform:translateX(0); }

/* ─────────────────────────────────────────────────
   TOPBAR
───────────────────────────────────────────────── */
.topbar {
  position:sticky; top:0; z-index:900;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(26,108,200,.10);
  padding:12px 0;
  transition:box-shadow var(--t);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.topbar.scrolled { box-shadow:var(--shadow-m); }
.topbar__inner {
  display:flex; align-items:center;
  justify-content:space-between; gap:1.5rem;
}
@media(max-width: 640px) {
  .topbar { padding: 8px 0; }
  .topbar__inner { gap: 0.5rem; }
  .topbar__logo { height: 38px; }
  .topbar__cta { 
    padding: 8px 14px; 
    font-size: 0.82rem; 
    min-height: 38px;
    border-radius: 10px;
  }
}
.topbar__logo { 
  height: 52px; 
  width: auto; 
  object-fit: contain; 
  transition: transform 0.3s var(--ease);
}
.topbar__logo:hover {
  transform: scale(1.05);
}

.topbar__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* ── Toast ── */
.toast {
  display: none !important; /* Hiding FOMO popups as requested */
}

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero { padding:calc(1.5rem + 16px) 0 3rem; position:relative; overflow:hidden; }
/* Decorative blobs — light, not heavy */
.hero__bg-blobs { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.blob {
  position:absolute; border-radius:50%;
  filter:blur(60px); opacity:.55;
}
.blob--blue {
  width:480px; height:480px;
  background:radial-gradient(circle,rgba(26,108,200,.12),transparent 70%);
  top:-120px; right:-100px;
}
.blob--yellow {
  width:320px; height:320px;
  background:radial-gradient(circle,rgba(245,196,0,.14),transparent 70%);
  bottom:-80px; left:-60px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem; 
  position:relative; z-index:1;
  text-align: center;
}
@media(min-width:768px) {
  .hero__inner { grid-template-columns:1.1fr 0.9fr; gap:2.5rem; text-align: left; }
}

/* Eyebrow pill */
.eyebrow-pill {
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--white); color:var(--blue-dark);
  font-size:.8rem; font-weight:700; letter-spacing:.06em;
  padding:.4rem 1.1rem; border-radius:var(--radius-f);
  margin-bottom:1.5rem; border:1px solid rgba(10,46,80,.1);
  box-shadow:var(--shadow-s);
  text-transform: uppercase;
}
.eyebrow-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--blue); animation:blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero__copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; line-height: 1.1;
  color: var(--blue-dark); margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media(min-width: 768px) {
  .hero__copy h1 { font-size: 4.2rem; margin-bottom: 1.5rem; }
}

.text-blue {
  color: var(--blue);
  /* Removed broken gradient that caused invisibility */
}

.hero__sub {
  color:var(--text-2); font-size:1.05rem; line-height: 1.6;
  margin:1rem auto 1.5rem; max-width:520px;
}
@media(min-width: 768px) {
  .hero__sub { margin: 1.5rem 0 2rem; font-size: 1.15rem; }
}
.hero__sub strong { color:var(--blue-dark); font-weight: 700; }

/* Badge row */
.badge-row { display:flex; flex-wrap:wrap; gap:.45rem; margin-bottom:1.4rem; }
.badge {
  font-size:.76rem; font-weight:700;
  padding:.28rem .75rem; border-radius:var(--radius-f);
}
.badge--blue {
  background:var(--blue-light); color:var(--blue-dark);
  border:1px solid rgba(26,108,200,.2);
}
.badge--yellow {
  background:var(--yellow-light); color:var(--yellow-deep);
  border:1px solid rgba(212,168,0,.3);
}

/* Counter */
.hero__counter {
  display:flex; align-items:center; gap:.75rem;
  margin-bottom:1.5rem;
  background:var(--off-white);
  border:1px solid rgba(26,108,200,.12);
  border-radius:var(--radius-f);
  padding:.6rem 1.1rem;
  width:fit-content;
}
.counter-avatars { display:flex; gap:-4px; }
.counter-avatars span { font-size:.95rem; }
.hero__counter p { font-size:.88rem; color:var(--text-2); }
.hero__counter strong { color:var(--blue-dark); }

.hero__ctas { display:flex; flex-direction:column; gap:.6rem; align-items:center; }
@media(min-width: 768px) {
  .hero__ctas { align-items:flex-start; }
}
.micro-trust { font-size:.82rem; color:var(--text-3); }
.micro-trust strong { color:var(--text-2); }

/* ── Hero Visual ── */
.hero__visual { 
  position:relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.hero-main-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  transform: rotate(-5deg);
  transition: transform 0.6s var(--ease);
}
@media(min-width: 768px) {
  .hero-main-img { transform: rotate(-8deg) scale(1.1); }
  .hero-main-img:hover { transform: rotate(0) scale(1.15); }
}

/* Floating labels refined */
.float-badge {
  position:absolute;
  background:var(--white);
  border:1px solid rgba(10,46,80,.1);
  border-radius:var(--radius-f);
  padding:.5rem 1rem;
  font-size:.85rem; font-weight:700;
  color:var(--blue-dark);
  box-shadow:var(--shadow-m);
  white-space:nowrap;
  z-index: 10;
}
.float-badge--1 { top: 0; left: -20px; }
.float-badge--2 { bottom: 20px; right: -20px; }

.float-anim { animation:float 4s ease-in-out infinite; }
.float-anim--delay { animation-delay: 2s; }

/* ── Trust Bar ── */
.trust-bar {
  background:var(--blue-light);
  border-top:1px solid rgba(26,108,200,.1);
  border-bottom:1px solid rgba(26,108,200,.1);
  padding:1rem 0;
}
.trust-bar__inner {
  display:flex; align-items:center;
  flex-wrap:wrap; gap:.5rem .75rem;
}
.trust-bar__label {
  font-size:.78rem; font-weight:700;
  color:var(--text-3); text-transform:uppercase;
  letter-spacing:.08em; white-space:nowrap;
}
.trust-locations {
  display:flex; flex-wrap:wrap; gap:.25rem .6rem;
}
.trust-locations span {
  font-size:.82rem; font-weight:600; color:var(--blue-dark);
}

/* ─────────────────────────────────────────────────
   PAIN SECTION
───────────────────────────────────────────────── */
.pain-grid {
  display:grid; grid-template-columns:1fr;
  gap:.9rem; margin-bottom:2rem;
}
@media(min-width:540px) { .pain-grid { grid-template-columns:1fr 1fr; } }

.pain-card {
  display:flex; gap:.85rem; align-items:flex-start;
  background:var(--white);
  border:1px solid rgba(26,108,200,.1);
  border-left:3px solid var(--blue-mid);
  border-radius:var(--radius-m);
  padding:1.1rem;
  box-shadow:var(--shadow-s);
  transition:box-shadow var(--t), transform var(--t);
}
.pain-card:hover { box-shadow:var(--shadow-m); transform:translateY(-2px); }

.pain-emoji { font-size:1.4rem; flex-shrink:0; margin-top:.1rem; }
.pain-card strong { display:block; font-size:.92rem; margin-bottom:.2rem; color:var(--text); }
.pain-card p    { font-size:.86rem; color:var(--text-2); }

.reframe {
  background:linear-gradient(135deg,var(--blue-light),var(--yellow-light));
  border:1px solid rgba(26,108,200,.15);
  border-radius:var(--radius-l);
  padding:1.6rem 2rem;
  text-align:center;
}
.reframe__title {
  font-family:'Playfair Display',serif;
  font-size:1.3rem; font-weight:700;
  color:var(--blue-dark); margin-bottom:.5rem;
}
.reframe p:not(.reframe__title) { color:var(--text-2); }
.reframe strong { color:var(--blue-dark); }

/* ─────────────────────────────────────────────────
   BEFORE / AFTER GALLERY
───────────────────────────────────────────────── */
.ba-section { background:var(--off-white); }

.ba-gallery {
  display:flex; flex-direction:column; gap:2rem;
  margin-bottom:2rem;
}

.ba-item {
  background:var(--white);
  border:1px solid rgba(26,108,200,.12);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-m);
  display:grid; grid-template-columns:1fr;
  transition:box-shadow var(--t), transform var(--t);
}
.ba-item:hover { box-shadow:var(--shadow-l); transform:translateY(-3px); }
@media(min-width:580px) { .ba-item { grid-template-columns:1fr 1fr; } }

/* Fix image proportions */
.ba-photos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--surface);
}

/* ── Photo area ── */
.ba-photos {
  display:flex; gap:0; position:relative;
  background:var(--surface);
  min-height:200px;
}
.ba-photo {
  flex:1; position:relative; overflow:hidden;
  min-height:180px;
}
.ba-photo--before { border-right:2px solid var(--white); }

.ba-photo-label {
  position:absolute; bottom:10px; left:50%; transform:translateX(-50%);
  font-size:.65rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  padding:.22rem .8rem; border-radius:var(--radius-f);
  white-space:nowrap; z-index:2;
}
.ba-photo-label--before { background:#FEE2E2; color:#DC2626; }
.ba-photo-label--after  { background:rgba(16,185,129,.15); color:#065F46; }

/* ── Visual Proof Gallery ── */
.proof-gallery {
  margin: 3rem 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media(min-width: 768px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.proof-item {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-m);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  aspect-ratio: 4/5;
}

.proof-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-l);
}

.proof-img-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.proof-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.proof-item:hover img {
  transform: scale(1.05);
}

.proof-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--blue-dark) 0%, rgba(10,46,80,0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0.9;
  transition: opacity var(--t);
}

.proof-overlay span {
  color: var(--yellow);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* ── Hero Visuals ── */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(10, 46, 80, 0.05);
  box-shadow: var(--shadow-l);
  z-index: 1;
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(10, 46, 80, 0.15));
  transform: rotate(-3deg);
  transition: transform 0.8s var(--ease);
}
.hero-image-wrapper:hover .hero-main-img {
  transform: rotate(0deg) scale(1.03);
}

.hero-image-badge {
  position: absolute;
  bottom: -10px;
  right: 15px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--yellow);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-y);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}
.hib-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.hib-sub { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }

.fb-icon { margin-right: 4px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── BA Info panel ── */
.ba-info {
  padding:1.5rem;
  display:flex; flex-direction:column; gap:.6rem;
}
.ba-info h3 { font-size:1.05rem; color:var(--text); }
.ba-service-tag {
  font-size:.75rem; font-weight:700;
  background:var(--blue-light); color:var(--blue-dark);
  padding:.22rem .8rem; border-radius:var(--radius-f);
  display:inline-block; letter-spacing:.04em;
}
.ba-result { font-size:.88rem; color:var(--text-2); }
.ba-customer { display:flex; align-items:center; gap:.7rem; margin-top:.4rem; }
.ba-avatar {
  width:36px; height:36px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue-deeper),var(--blue));
  color:var(--yellow); font-weight:800; font-size:.75rem;
  display:flex; align-items:center; justify-content:center;
  font-family:'Inter',sans-serif; flex-shrink:0;
}
.ba-name { font-weight:700; font-size:.88rem; display:block; }
.ba-stars { color:var(--yellow-dark); font-size:.8rem; }

/* ─────────────────────────────────────────────────
   CASE STUDIES
───────────────────────────────────────────────── */
.cs-list { display:flex; flex-direction:column; gap:1.5rem; }

.cs-card {
  background:var(--white);
  border:1px solid rgba(26,108,200,.12);
  border-radius:var(--radius-xl);
  padding:1.75rem;
  box-shadow:var(--shadow-s);
  display:grid; grid-template-columns:1fr;
  gap:1.2rem;
  transition:box-shadow var(--t);
}
.cs-card:hover { box-shadow:var(--shadow-m); }
@media(min-width:580px) {
  .cs-card { grid-template-columns:48px 1fr; }
}

.cs-number {
  font-family:'Playfair Display',serif;
  font-size:2.8rem; font-weight:900;
  color:var(--blue-light);
  line-height:1; padding-top:.25rem;
}
.cs-meta {
  display:flex; align-items:center; gap:.85rem;
  flex-wrap:wrap; margin-bottom:1rem;
}
.cs-avatar {
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue-deeper),var(--blue));
  color:var(--yellow); font-weight:800; font-size:.8rem;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.cs-meta h3 { font-size:1rem; color:var(--text); margin:0; }
.cs-context { font-size:.78rem; color:var(--text-3); display:block; }
.cs-stars { margin-left:auto; color:var(--yellow-dark); font-size:.9rem; }

.cs-story {
  display:grid; grid-template-columns:1fr;
  gap:.75rem; margin-bottom:1rem;
}
@media(min-width:480px) { .cs-story { grid-template-columns:repeat(3,1fr); } }

.cs-block {
  border-radius:var(--radius-m);
  padding:1rem;
}
.cs-block h4 {
  font-family:'Inter',sans-serif;
  font-size:.78rem; font-weight:800;
  text-transform:uppercase; letter-spacing:.08em;
  margin-bottom:.5rem;
  display:flex; align-items:center; gap:.4rem;
}
.cs-block p { font-size:.84rem; color:var(--text-2); line-height:1.65; }

.cs-block--problem  { background:#FFF5F5; border:1px solid #FECACA; }
.cs-block--problem h4 { color:#B91C1C; }
.cs-block--solution { background:var(--blue-light); border:1px solid rgba(26,108,200,.15); }
.cs-block--solution h4 { color:var(--blue-dark); }
.cs-block--result   { background:#F0FDF4; border:1px solid #BBF7D0; }
.cs-block--result h4 { color:#065F46; }

.cs-quote {
  background:linear-gradient(135deg,var(--blue-light),var(--yellow-light));
  border-left:3px solid var(--blue);
  border-radius:0 var(--radius-m) var(--radius-m) 0;
  padding:.9rem 1.1rem;
  font-size:.88rem; font-style:italic;
  color:var(--text-2);
}

/* ─────────────────────────────────────────────────
   SOLUTION / HOW IT WORKS
───────────────────────────────────────────────── */
.solution-section { background:var(--off-white); }

/* ── Redesigned Journey (Process Map) ── */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.journey-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-m);
  border: 1px solid rgba(42, 91, 177, 0.08);
  box-shadow: var(--shadow-s);
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: transform var(--t), box-shadow var(--t);
}
.journey-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
  border-color: rgba(42, 91, 177, 0.2);
}
.ji-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--blue);
  line-height: .9;
  flex-shrink: 0;
  margin-top: .15rem;
}
.ji-content h3 { font-size: 1.05rem; margin-bottom: .3rem; color: var(--blue-dark); }
.ji-content p   { font-size: .88rem; color: var(--text-2); line-height: 1.6; }

.step-connector {
  display: none;
}

.diff-box {
  background:var(--white);
  border:1px solid rgba(26,108,200,.15);
  border-radius:var(--radius-m);
  padding:1.4rem 1.6rem; text-align:center;
}
.diff-box strong { color:var(--blue-dark); }
.diff-box p { color:var(--text-2); }

/* ─────────────────────────────────────────────────
   TRANSFORMATION
───────────────────────────────────────────────── */
.tf-grid {
  display:grid; grid-template-columns:1fr; gap:1rem;
}
@media(min-width:540px) { .tf-grid { grid-template-columns:1fr 1fr; } }

.tf-col { border-radius:var(--radius-l); padding:1.5rem; }
.tf-col--before { background:var(--red-light); border:1px solid var(--red-mid); }
.tf-col--after  { background:var(--blue-light); border:1px solid rgba(26,108,200,.2); }

.tf-header { display:flex; align-items:center; gap:.6rem; margin-bottom:1rem; }
.tf-header span { font-size:1.4rem; }
.tf-col--before h3 { color:#B91C1C; font-size:1rem; }
.tf-col--after  h3 { color:var(--blue-dark); font-size:1rem; }

.tf-list { display:flex; flex-direction:column; gap:.55rem; }
.tf-list li {
  font-size:.88rem; color:var(--text-2);
  padding-left:1.2rem; position:relative;
}
.tf-col--before .tf-list li::before {
  content:'✗'; position:absolute; left:0;
  color:#DC2626; font-weight:700;
}
.tf-col--after .tf-list li::before {
  content:'✓'; position:absolute; left:0;
  color:var(--blue); font-weight:700;
}

/* ─────────────────────────────────────────────────
   VALUE STACK
───────────────────────────────────────────────── */
.vs-stack {
  border:1px solid rgba(26,108,200,.14);
  border-radius:var(--radius-l);
  overflow:hidden; margin-bottom:1.5rem;
}
.vs-row {
  display:flex; align-items:center; gap:1rem;
  padding:1rem 1.4rem;
  background:var(--white);
  border-bottom:1px solid rgba(26,108,200,.07);
  transition:background var(--t);
}
.vs-row:last-child { border-bottom:none; }
.vs-row:hover { background:var(--off-white); }
.vs-row--bonus { background:var(--yellow-light); }

.vs-check { font-size:1rem; color:var(--blue); width:1.4rem; text-align:center; flex-shrink:0; }
.vs-text  { flex:1; }
.vs-text strong { display:block; font-size:.92rem; margin-bottom:.12rem; }
.vs-text p { font-size:.8rem; color:var(--text-3); }

.vs-price { text-align:right; flex-shrink:0; }
.vs-price s  { display:block; font-size:.74rem; color:var(--text-4); }
.vs-price em { font-style:normal; font-size:.78rem; font-weight:700; color:var(--blue); }

.vs-total {
  background:linear-gradient(135deg,var(--blue-light),var(--yellow-light));
  border:1px solid rgba(26,108,200,.15);
  border-radius:var(--radius-l);
  padding:1.4rem 1.6rem;
  margin-bottom:1.5rem;
}
.vst-row {
  display:flex; justify-content:space-between; align-items:center;
  padding-bottom:.7rem; margin-bottom:.7rem;
  border-bottom:1px solid rgba(26,108,200,.12);
  font-size:.9rem; color:var(--text-2);
}
.vst-row:last-of-type { border-bottom:none; padding-bottom:0; margin-bottom:.5rem; }
.vst-row s { color:var(--text-4); }
.vst-row--price { font-weight:700; }
.vst-row--price strong {
  font-family:'Playfair Display',serif;
  font-size:2rem; font-weight:900; color:var(--blue);
}
.vst-note { font-size:.78rem; color:var(--text-3); text-align:center; }

/* ─────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────── */
.testimonials-section { background:var(--off-white); }

.tm-grid {
  display:grid; grid-template-columns:1fr;
  gap:1rem; margin-bottom:2rem;
}
@media(min-width:540px) { .tm-grid { grid-template-columns:1fr 1fr; } }

.tm-card {
  background:var(--white);
  border:1px solid rgba(26,108,200,.12);
  border-radius:var(--radius-l);
  padding:1.4rem;
  box-shadow:var(--shadow-s);
  transition:box-shadow var(--t), transform var(--t);
}
.tm-card:hover { box-shadow:var(--shadow-m); transform:translateY(-2px); }
.tm-card--featured {
  border-color:var(--yellow-dark);
  border-width:2px;
  box-shadow:0 4px 20px rgba(212,168,0,.15);
}

.tm-stars { color:var(--yellow-dark); font-size:.88rem; margin-bottom:.6rem; }
.tm-card blockquote {
  font-size:.88rem; color:var(--text-2);
  line-height:1.68; font-style:italic;
  margin-bottom:.9rem;
}
.tm-footer { display:flex; align-items:center; gap:.65rem; }
.tm-av {
  width:36px; height:36px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue-deeper),var(--blue));
  color:var(--yellow); font-weight:800; font-size:.75rem;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.tm-name   { font-weight:700; font-size:.88rem; display:block; color:var(--text); font-style:normal; }
.tm-detail { font-size:.74rem; color:var(--text-3); display:block; }

/* Stats row */
.stats-row {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:.75rem;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  border-radius:var(--radius-l);
  padding:1.6rem;
  text-align:center;
}
@media(min-width:480px) { .stats-row { grid-template-columns:repeat(4,1fr); } }

.stat-box strong {
  display:block;
  font-family:'Playfair Display',serif;
  font-size:clamp(1.5rem,4vw,2rem);
  font-weight:900; color:var(--yellow);
  line-height:1; margin-bottom:.25rem;
}
.stat-box span { font-size:.74rem; color:rgba(255,255,255,.72); }

/* ─────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────── */
.price-grid {
  display:grid; grid-template-columns:1fr;
  gap:1.1rem; margin-bottom:2rem;
}
@media(min-width:560px) { .price-grid { grid-template-columns:repeat(3,1fr); align-items:start; } }

.price-card {
  background:var(--white);
  border:1px solid rgba(26,108,200,.14);
  border-radius:var(--radius-l);
  padding:1.6rem 1.4rem;
  position:relative;
  transition:box-shadow var(--t), transform var(--t);
}
.price-card:hover { box-shadow:var(--shadow-m); transform:translateY(-2px); }
.price-card--featured {
  border-color:var(--yellow-dark); border-width:2px;
  box-shadow:0 4px 24px rgba(212,168,0,.18);
}
.pc-badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,var(--yellow),var(--yellow-dark));
  color:var(--text); font-size:.68rem; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase;
  padding:.22rem .9rem; border-radius:var(--radius-f); white-space:nowrap;
}
.price-card h3 { font-size:1rem; color:var(--text); margin-bottom:.2rem; }
.pc-for        { font-size:.74rem; color:var(--text-3); margin-bottom:1rem; }
.pc-price      { margin-bottom:1.1rem; padding-bottom:1.1rem; border-bottom:1px solid rgba(26,108,200,.08); }
.pc-price span { font-family:'Playfair Display',serif; font-size:1.9rem; font-weight:900; color:var(--text); }
.pc-price small{ font-size:.78rem; color:var(--text-3); margin-left:.2rem; }
.pc-list { display:flex; flex-direction:column; gap:.55rem; margin-bottom:1.4rem; }
.pc-list li { font-size:.84rem; color:var(--text-2); padding-left:1.2rem; position:relative; }
.pc-list li::before { content:'✓'; position:absolute; left:0; color:var(--blue); font-weight:700; }

/* First Clean Offer */
.first-offer {
  background:linear-gradient(135deg,var(--blue-light) 0%,var(--yellow-light) 100%);
  border:2px solid rgba(26,108,200,.2);
  border-radius:var(--radius-xl);
  padding:2rem; text-align:center;
}
.fo-badge {
  display:inline-block; font-size:.72rem; font-weight:800;
  letter-spacing:.1em; text-transform:uppercase;
  background:rgba(26,108,200,.12); color:var(--blue-dark);
  padding:.28rem 1rem; border-radius:var(--radius-f);
  margin-bottom:.9rem; border:1px solid rgba(26,108,200,.2);
}
.first-offer h3 { font-size:clamp(1.1rem,3vw,1.5rem); margin-bottom:.6rem; }
.first-offer > p:not(.fo-secure) { font-size:.88rem; color:var(--text-2); margin-bottom:1.2rem; }
.fo-secure { margin-top:.75rem; font-size:.8rem; color:var(--text-3); }

/* ─────────────────────────────────────────────────
   URGENCY — uses BLUE as an accent, not full-dark
───────────────────────────────────────────────── */
.urgency-section {
  background:linear-gradient(135deg,var(--blue-light) 0%,#DCF0FF 100%);
  border-top:3px solid var(--blue);
}
.urg-inner { text-align:center; }
.urg-icon  { font-size:2.5rem; margin-bottom:.75rem; }
.urg-inner h2 { color:var(--text); margin-bottom:1.5rem; }

.countdown {
  display:flex; align-items:center; justify-content:center;
  gap:.6rem; margin-bottom:1.5rem;
}
.cd-block {
  background:var(--white);
  border:2px solid var(--blue);
  border-radius:var(--radius-m);
  padding:.9rem 1.3rem;
  min-width:80px; text-align:center;
  box-shadow:var(--shadow-b);
}
.cd-num {
  display:block;
  font-family:'Playfair Display',serif;
  font-size:2rem; font-weight:900; color:var(--blue);
  line-height:1;
}
.cd-lbl {
  display:block; font-size:.65rem; text-transform:uppercase;
  letter-spacing:.1em; color:var(--text-3); margin-top:.2rem;
}
.cd-sep { font-size:2rem; font-weight:900; color:var(--blue); }

.urg-note { margin-bottom:1.5rem; color:var(--text-2); font-size:.95rem; }
.urg-seats {
  display:inline-block;
  background:rgba(26,108,200,.1); border:1px solid rgba(26,108,200,.2);
  border-radius:var(--radius-m);
  padding:.5rem 1rem; margin-top:.5rem;
  font-size:.88rem;
}
.urg-seats strong { color:var(--blue-dark); }

/* ─────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────── */
.faq-list { display:flex; flex-direction:column; gap:.65rem; }
.faq-item {
  background:var(--white);
  border:1px solid rgba(26,108,200,.12);
  border-radius:var(--radius-m);
  overflow:hidden;
}
.faq-q {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  gap:1rem; padding:1.05rem 1.3rem;
  background:none; border:none; cursor:pointer;
  font-family:'Inter',sans-serif; font-size:.92rem; font-weight:600;
  color:var(--text); text-align:left;
  transition:background var(--t);
}
.faq-q:hover { background:var(--off-white); }
.faq-icon {
  font-size:1.25rem; font-weight:400;
  color:var(--blue); flex-shrink:0;
  transition:transform var(--t); line-height:1;
}
.faq-a {
  max-height:0; overflow:hidden; padding:0 1.3rem;
  transition:max-height .35s ease, padding var(--t);
}
.faq-a p { font-size:.88rem; color:var(--text-2); padding-bottom:1.1rem; line-height:1.7; }
.faq-item.open .faq-a   { max-height:300px; padding-top:.2rem; }
.faq-item.open .faq-q   { background:var(--blue-light); color:var(--blue-dark); }
.faq-item.open .faq-icon { transform:rotate(45deg); }

/* ─────────────────────────────────────────────────
   PROCESS GRID (HOW IT WORKS)
───────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.process-card {
  position: relative;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(10, 46, 80, 0.06);
  box-shadow: var(--shadow-m);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-l);
  border-color: rgba(212, 175, 55, 0.3);
}

.pc-num {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(10, 46, 80, 0.03);
  line-height: 1;
  user-select: none;
  z-index: 0;
}

.pc-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.process-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--blue-dark);
  position: relative;
  z-index: 1;
}

.process-card p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.pc-badge {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-f);
  display: inline-block;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

/* Featured Step (Proof) */
.pc--featured {
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.pc-tag {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  background: var(--gold-gradient);
  color: var(--blue-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pc--featured .pc-badge {
  background: var(--gold-gradient);
  color: var(--blue-dark);
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.final-cta-section {
  background:linear-gradient(155deg,var(--blue-light) 0%,var(--yellow-light) 100%);
}
.fc-inner { text-align:center; }
.fc-icon  { font-size:3rem; margin-bottom:1rem; animation:float 3s ease-in-out infinite; }
.fc-inner h2 { margin-bottom:1rem; }
.fc-sub   { color:var(--text-2); max-width:480px; margin:0 auto 1.8rem; }
.fc-trust {
  margin-top:.75rem; font-size:.82rem; color:var(--text-3);
  display:flex; justify-content:center; gap:1.5rem; flex-wrap:wrap;
}
.ps-note {
  background:rgba(255,255,255,.75);
  border:1px solid rgba(26,108,200,.15);
  border-radius:var(--radius-l);
  padding:1.3rem 1.5rem; margin-top:1.75rem;
  font-size:.88rem; color:var(--text-2); line-height:1.7;
  max-width:560px; margin-left:auto; margin-right:auto;
  text-align:left;
}
.ps-note strong { color:var(--blue-dark); }

/* ─────────────────────────────────────────────────
   TRANSFORMATION CARDS (LIFE WITH US)
───────────────────────────────────────────────── */
.transformation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.tf-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(10, 46, 80, 0.06);
  box-shadow: var(--shadow-m);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.tf-card--before { border-top: 4px solid #ff4d4d; }
.tf-card--after { 
  border-top: 4px solid var(--yellow);
  background: linear-gradient(135deg, #fff 0%, rgba(212, 175, 55, 0.03) 100%);
}

.tf-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-l);
}

.tf-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.tf-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--off-white);
  border-radius: var(--radius-m);
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.tf-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.tf-card:hover .tf-card-image img {
  transform: scale(1.05);
}

.tf-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 46, 80, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.tf-card-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.tf-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.tf-card-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.tf-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tf-card-tag {
  position: absolute;
  top: -12px;
  right: 2.5rem;
  background: var(--gold-gradient);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-y);
}

/* -- Lifestyle Gallery -- */
.lifestyle-section { background: var(--off-white); }
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.ls-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-sm);
}
.ls-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.ls-item:hover img { transform: scale(1.05); }
.ls-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem .8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
@media(max-width:768px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
}

.footer {
  background: var(--off-white);
  color: var(--text);
  padding: 2.5rem 0;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}
.footer__logo-img {
  height: 90px;
  width: auto;
  margin-bottom: 2rem;
  display: inline-block;
}
.footer__tagline {
  color: var(--text-3);
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  max-width: 500px;
  font-size: 1.15rem;
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__social-link {
  color: var(--text-2);
  transition: color .3s var(--ease);
  display: flex;
  align-items: center;
}
.footer__social-link svg {
  width: 32px;
  height: 32px;
}
.footer__social-link:hover {
  color: var(--orange);
}
.footer__bottom {
  padding-top: 1.5rem;
  padding-bottom: 0;
  border-top: 1px solid #E5E7EB;
  font-size: 1.1rem;
  color: var(--text-4);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
@media(max-width: 640px) {
  .footer__bottom { padding-bottom: 90px; }
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
.footer__legal a {
  font-size: 0.9rem;
  color: var(--text-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}
.footer__legal a:hover { color: var(--blue); }

.footer__disclaimer {
  font-size: 0.82rem;
  color: var(--text-4);
  margin-bottom: 0.5rem;
}

.footer__copy {
  font-size: 0.95rem;
}

.footer__credit {
  margin-top: 0.5rem;
}
.footer__credit a {
  color: var(--text-2);
  text-decoration: underline;
  font-weight: 700;
}
.footer__credit a:hover {
  color: var(--orange);
}

@media(max-width:640px) {
  .footer { padding: 2rem 0; }
  .footer__logo-img { height: 60px; }
  .footer__socials { gap: 1.5rem; }
  .footer__bottom { font-size: 1rem; }
}

/* ─────────────────────────────────────────────────
   STICKY CTA + WA FLOAT (Updated)
───────────────────────────────────────────────── */

.sticky-cta {
  position:fixed; bottom:0; left:0; right:0;
  padding:10px 14px 14px;
  background:linear-gradient(to top,rgba(255,255,255,.98) 80%,transparent);
  z-index:700; display:none;
  transform:translateY(100%);
  transition:transform .35s var(--ease);
}
.sticky-cta.visible { transform:translateY(0); }
@media(max-width:640px) { .sticky-cta { display:block; } }

.wa-float {
  position:fixed; bottom:80px; right:18px;
  width:54px; height:54px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(37,211,102,.4);
  z-index:700;
  transition:transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 24px rgba(37,211,102,.6); }
@media(max-width:640px) { .wa-float { bottom:88px; } }

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media(max-width:480px) {
  .cd-block { min-width:65px; padding:.7rem .85rem; }
  .cd-num   { font-size:1.6rem; }
  .hba-pair { gap:.5rem; }
  .shoe-art { width:52px; height:52px; }
  .shoe-body { width:48px; height:22px; }
  .shoe-sole { width:52px; height:10px; }
}

/* Touch targets */
.btn,.faq-q,.wa-float { min-height:44px; }
.btn { min-width:44px; }
