/* ============================================================
   SabkaYoga — Premium Minimal Stylesheet
   Theme: Soft White + Cool Slate Blue + Warm Sand
   Fonts: Manrope (body) + Fraunces (display)
   Target: 40+ users — compact, calm, premium, easy to scan
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --ink:         #1a1f2c;
  --ink-2:       #3d4554;
  --ink-3:       #6b7280;
  --slate:       #4a6fa5;
  --slate-dark:  #38547d;
  --slate-light: #e8eef7;
  --sand:        #f5f1eb;
  --sand-2:      #ede7df;
  --white:       #ffffff;
  --mist:        #f8f9fb;
  --line:        rgba(26,31,44,0.08);
  --line-2:      rgba(26,31,44,0.16);

  --green:       #2d6a4f;
  --green-light: #d8f3dc;
  --orange:      #e76f51;
  --orange-light:#fae1dd;
  --teal:        #2a9d8f;
  --teal-light:  #e0f2f1;
  --lavender:    #9b5de5;
  --lavender-light:#f3e8ff;

  --shadow:      0 2px 14px rgba(26,31,44,0.06);
  --shadow-md:   0 6px 28px rgba(26,31,44,0.10);
  --shadow-lg:   0 18px 48px rgba(26,31,44,0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-tagline: 'Caveat', 'Dancing Script', cursive;
  --font-body:    'Manrope', 'Inter', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- PARTICLES CANVAS ---- */
#particles-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1rem; }
p  { font-size: 1rem; color: var(--ink-2); line-height: 1.7; }

.hero-heading { font-family: var(--font-display); }

/* ---- LAYOUT UTILITIES ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 72px 0; }
.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-family: var(--font-tagline);
  color: var(--slate-dark);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 18px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .section-tag { font-size: 1.4rem; }
}
.section-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--slate-light);
  border-radius: 40% 60% 50% 70% / 50% 50% 60% 50%;
  transform: skewX(-4deg) rotate(-1deg);
  z-index: -1;
  opacity: 0.55;
}

.section-title {
  color: var(--ink);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--ink-3);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  letter-spacing: 0.2px;
  line-height: 1;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  box-shadow: 0 6px 22px rgba(26,31,44,0.22);
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep — continuous light reflection */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  animation: shimmer-sweep 2.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,31,44,0.28);
}
.btn-primary:hover::before {
  animation-duration: 1.1s;
}
@keyframes shimmer-sweep {
  0%   { left: -75%; }
  100% { left: 130%; }
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
  border-radius: 10px;
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  border-radius: 10px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  border-radius: 10px;
}
.btn-white:hover {
  background: var(--mist);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--slate); }

.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-primary.btn-lg { padding: 17px 38px; }
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }

/* ---- ICON UTILITY ---- */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: #ffffff !important;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(26,31,44,0.12);
}
.navbar.scrolled .logo-name,
.navbar.scrolled .nav-links a,
.navbar.scrolled .hamburger span { color: var(--ink); }
.navbar.scrolled .logo-tagline { color: var(--ink-3); }
.navbar.scrolled .nav-cta { background: var(--ink) !important; color: var(--white) !important; }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo — rectangular image slot */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

/* Mobile sidebar — hidden on desktop */
.mobile-sidebar { display: none; }

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 15px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(26,31,44,0.06);
}
.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  margin-left: 6px;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--ink-2) !important;
  transform: translateY(-2px) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: auto;
  background: linear-gradient(150deg, #f8fafc 0%, #eef4ff 55%, #f5f1eb 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 28px;
  z-index: 2;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(74,111,165,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero-blob.b1 { width: 380px; height: 380px; background: rgba(74,111,165,0.10); top:-80px; right:-80px; }
.hero-blob.b2 { width: 260px; height: 260px; background: rgba(231,111,81,0.08); bottom:-60px; left:-40px; }

/* Floating spiritual icons */
.hero-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hf {
  position: absolute;
  color: var(--slate);
  opacity: 0.20;
  will-change: transform;
}
.hf-1  { width: 34px; height: 34px; top: 10%; left: 5%;  }
.hf-2  { width: 26px; height: 26px; top: 55%; left: 2%;  }
.hf-3  { width: 30px; height: 30px; top: 22%; left: 86%; }
.hf-4  { width: 36px; height: 36px; top: 65%; left: 82%; }
.hf-5  { width: 28px; height: 28px; top: 42%; left: 90%; }
.hf-6  { width: 32px; height: 32px; top: 78%; left: 18%; }
.hf-7  { width: 36px; height: 36px; top: 14%; left: 72%; }
.hf-8  { width: 30px; height: 30px; top: 38%; left: 10%; }
.hf-9  { width: 24px; height: 24px; top: 72%; left: 45%; }
.hf-10 { width: 28px; height: 28px; top: 20%; left: 48%; }
.hf-11 { width: 34px; height: 34px; top: 50%; left: 60%; }
.hf-12 { width: 38px; height: 38px; top: 82%; left: 70%; }
.hf-13 { width: 32px; height: 32px; top: 5%;  left: 35%; }
.hf-14 { width: 26px; height: 26px; top: 60%; left: 35%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text { color: var(--ink); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  background: rgba(74,111,165,0.08);
  color: var(--slate-dark);
  border: 1px solid rgba(74,111,165,0.18);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero-heading .line-1 { display: block; }
.hero-heading .line-2 {
  display: block;
  font-family: var(--font-tagline);
  color: var(--slate);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-top: 4px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 480px;
}

.hero-cta-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-member-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-3);
  font-weight: 500;
}
.hero-avatars {
  display: flex;
  align-items: center;
}
.hav {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -7px;
  flex-shrink: 0;
  object-fit: cover;
}
.hav:first-child { margin-left: 0; }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 530px;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: 120px 120px 32px 32px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.hero-image-badge {
  position: absolute;
  bottom: 16px;
  left: -12px;
  background: var(--white);
  border-radius: 10px;
  padding: 7px 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 4;
}
.hero-image-badge .icon {
  width: 24px; height: 24px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 6px;
  padding: 4px;
}
.hib-text { font-size: 0.68rem; color: var(--ink-3); line-height: 1.25; }
.hib-text strong { display: block; color: var(--ink); font-size: 0.82rem; }

.hero-visual-rings {
  position: absolute;
  inset: -20px;
  display: flex; align-items: center; justify-content: center;
  z-index: -1;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74,111,165,0.12);
}
.ring-1 { width: 320px; height: 320px; animation: spin-slow 40s linear infinite; }
.ring-2 { width: 250px; height: 250px; border-color: rgba(231,111,81,0.10); animation: spin-slow 60s linear infinite reverse; }
.ring-3 { width: 180px; height: 180px; border-color: rgba(74,111,165,0.08); animation: spin-slow 25s linear infinite; }

@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-pose-card {
  width: 170px; height: 170px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  text-align: center;
  gap: 6px;
}
.hero-pose-card .icon { width: 56px; height: 56px; color: var(--white); }
.pose-label { font-size: 0.7rem; color: rgba(255,255,255,0.55); letter-spacing: 1px; text-transform: uppercase; }

.coach-badge-float {
  position: absolute;
  bottom: 24px; right: -10px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  z-index: 4;
}
.coach-badge-float .cb-avatar {
  width: 36px; height: 36px;
  background: var(--slate);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0;
}
.cb-name { font-size: 0.82rem; font-weight: 700; color: var(--ink); display: block; }
.cb-title { font-size: 0.68rem; color: var(--ink-3); display: block; }

/* ============================================================
   FREE 14-DAY TRIAL SECTION (NEW COMPACT STYLE)
   ============================================================ */
.free-trial-new { background: var(--white); border-top: 1px solid var(--line); overflow: hidden; }
.ft-new-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* Left Visual */
.ft-new-visual {
  background: #fffafa;
  border-radius: 24px;
  padding: 40px;
  min-height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ft-visual-inner { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; }

.yt-main-preview {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  z-index: 2;
  border: 1px solid var(--line);
  width: 100%;
}
.yt-video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 5px;
}
.yt-thumbnail {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.yt-video-placeholder:hover .yt-thumbnail { opacity: 1; }
.play-button-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}
.play-button-overlay svg { width: 24px; height: 24px; margin-left: 4px; }
.yt-video-placeholder:hover .play-button-overlay { transform: translate(-50%, -50%) scale(1.1); background: #ff0000; }

.live-pulse-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff1f0;
  color: #ff0000;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #ff0000;
  border-radius: 50%;
  animation: pulse-red 1.5s infinite;
}

/* Floating YT Tags */
.yt-tag {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.8rem;
  background: white;
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.tag-top { top: -20px; left: -10px; }
.tag-mid { right: -30px; top: 40%; }
.tag-bottom { bottom: -10px; left: 10px; }

/* Right Content */
.ft-new-content { padding-left: 10px; }
.ft-headline {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 12px 0 10px;
}
.yt-red-text { color: #ff0000; }
.ft-summary { font-size: 1.1rem; color: var(--ink-3); margin-bottom: 24px; }

.ft-points-minimal { display: flex; flex-direction: row; flex-wrap: wrap; gap: 24px; margin-bottom: 30px; }
.ft-point-item { display: flex; gap: 16px; align-items: center; }
.point-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.point-icon svg { width: 22px; height: 22px; }
.pi-red   { background: #fff1f0; color: #ff0000; }
.pi-green { background: #f0fff4; color: #38a169; }
.pi-blue  { background: #eff6ff; color: #3b82f6; }

.point-text strong { display: block; font-size: 1rem; color: var(--ink); margin-bottom: 2px; }
.point-text p { font-size: 0.9rem; color: var(--ink-3); margin: 0; line-height: 1.4; }
.point-text p { font-size: 0.9rem; color: var(--ink-3); margin: 0; line-height: 1.4; }

.yt-cta-btn {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  color: white !important;
  padding: 14px 28px !important;
  font-size: 1rem !important;
}
.yt-cta-btn:hover { background: #cc0000 !important; transform: translateY(-2px); }

@media (max-width: 992px) {
  .ft-new-grid { display: flex; flex-direction: column; gap: 20px; }
  .ft-new-visual { order: 2; min-height: auto; padding: 25px 15px; max-width: 500px; margin: 0 auto; width: 100%; box-shadow: none; background: transparent; }
  .ft-visual-inner { width: 100%; height: auto; }
  .yt-main-preview { padding: 6px; border-radius: 16px; width: 100%; }
  .ft-new-content { order: 1; text-align: center; padding: 0; }
  .ft-point-item { text-align: left; margin-bottom: 5px; }
  .ft-points-minimal { justify-content: center; gap: 12px; margin-bottom: 24px; }
  .ft-headline { font-size: 1.8rem; margin: 8px 0 6px; }
  .ft-summary { font-size: 1rem; margin-bottom: 18px; }
  .yt-tag { font-size: 0.62rem; padding: 3px 8px; border-radius: 8px; }
  .tag-top { top: -12px; left: 10px; }
  .tag-mid { right: 5px; top: 25%; }
  .tag-bottom { bottom: -8px; left: 20px; }
}

/* ============================================================
   WHATSAPP SUPPORT BAND
   ============================================================ */
.wa-support-band {
  background: var(--green-light);
  padding: 18px 0;
  z-index: 2;
  position: relative;
}
.wa-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.wa-info { display: flex; align-items: center; gap: 10px; }
.wa-info .icon { width: 22px; height: 22px; color: var(--green); }
.wa-info p { color: var(--green); font-size: 0.95rem; margin: 0; font-weight: 600; }

.wa-text-mobile { display: none; }

.wa-cta.btn { 
  background: var(--green); 
  border-color: var(--green); 
  color: white;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 50px;
}
.wa-cta.btn:hover { background: var(--green); opacity: 0.9; transform: translateY(-2px); }

@media (max-width: 600px) {
  .wa-support-band { padding: 12px 0; }
  .wa-band-inner { gap: 12px; }
  .wa-text-desktop { display: none; }
  .wa-text-mobile { display: block; }
  .wa-cta.btn { padding: 8px 16px; font-size: 0.85rem; }
}

/* ============================================================
   COACH SECTION (NEW ILLUSTRATIVE STYLE)
   ============================================================ */
.coach-section { background: var(--white); padding: 80px 0 80px; border-top: 1px solid var(--line); }
.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Left Visual Canvas */
.coach-visual-container {
  background: #f0f7ff;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 480px;
}
.coach-canvas { position: relative; width: 100%; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.coach-main-img {
  width: 280px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

/* Floating Highlight Tags */
.ms-tag {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.2;
  text-align: center;
  background: white;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.ms-arrow { width: 40px; height: 15px; color: var(--slate); margin: 4px 0; }

.tag-tl { top: 5%; left: -20px; }
.tag-tr { top: 15%; right: -20px; }
.tag-bl { bottom: 30%; left: -30px; }
.tag-br { bottom: 15%; right: -30px; }

/* Right Info Area */
.coach-info-new { padding-left: 20px; }
.coach-headline {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: #555c6e;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}
.coach-headline .accent-text { color: #22577a; }
.coach-summary {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 22px;
}
.coach-description {
  font-size: 1.1rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 34px;
}

/* Social Row */
.coach-social-row { display: flex; gap: 24px; align-items: center; }
.social-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: #22577a;
  transition: var(--transition);
  background: var(--mist);
  border-radius: 50%;
}
.social-btn svg { width: 22px; height: 22px; }
.social-btn:hover { background: #22577a; color: white; transform: translateY(-3px); }

/* Responsive Coach */
@media (max-width: 992px) {
  .coach-grid { grid-template-columns: 1fr; gap: 60px; }
  .coach-visual-container { min-height: 400px; padding: 20px; }
  .coach-main-img { width: 240px; }
  .ms-tag { font-size: 0.75rem; padding: 6px 10px; }
  .tag-tl { left: 0; } .tag-tr { right: 0; } .tag-bl { left: 0; } .tag-br { right: 0; }
  .coach-headline { font-size: 2.2rem; }
  .coach-info-new { text-align: center; padding-left: 0; }
  .coach-social-row { justify-content: center; }
}

/* ============================================================
   HEALTH BENEFITS (REIMAGINED)
   ============================================================ */
.benefits-section { background: var(--white); position: relative; z-index: 2; padding: 0 0 50px; }
.benefits-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.benefit-card-new {
  padding: 40px 30px;
  border-radius: 24px;
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-card-new:hover { transform: translateY(-8px); }

.bc-red    { background: #fff5f5; } .bc-red .bc-icon    { color: #e53e3e; } .bc-red h3, .bc-red h4 { color: #9b2c2c; }
.bc-green  { background: #f0fff4; } .bc-green .bc-icon  { color: #38a169; } .bc-green h3, .bc-green h4  { color: #22543d; }
.bc-yellow { background: #ffffeb; } .bc-yellow .bc-icon { color: #d69e2e; } .bc-yellow h3, .bc-yellow h4 { color: #744210; }

.bc-head { display: flex; flex-direction: column; gap: 16px; }
.bc-icon { width: 50px; height: 50px; }
.bc-icon svg { width: 100%; height: 100%; }
.benefit-card-new h3 { font-size: 1.4rem; font-weight: 800; font-family: var(--font-display); line-height: 1.2; }

.bc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #4b5563;
}
.bc-list li .check { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7; }

@media (max-width: 992px) {
  .benefits-grid-new { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   LIFE & HABIT BENEFITS
   ============================================================ */
/* ============================================================
   LIFE TRANSFORMATION (MODERN DESIGN WITH IMAGES)
   ============================================================ */
.life-section-new { background: white; padding: 30px 0 100px; border-top: 1px solid var(--line); }
.life-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.life-card-new {
  border-radius: 24px;
  text-align: left;
  transition: var(--transition);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.life-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(26,31,44,0.1);
  border-color: transparent;
}

.lc-image-wrap {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.lc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.life-card-new:hover .lc-img { transform: scale(1.05); }

.lc-content {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lc-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  font-family: var(--font-display);
}
.lc-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

@media (max-width: 992px) {
  .life-grid-new { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--sand); position: relative; z-index: 2; }
.testimonials-grid {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 4px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.testimonials-grid::-webkit-scrollbar { display: none; }

.tcard {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  transition: var(--transition);
  position: relative;
  min-width: 350px;
  width: 350px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--slate-light);
  position: absolute; top: -10px; left: 20px;
  line-height: 1;
  pointer-events: none;
  opacity: 0.5;
}
.stars { font-size: 1rem; margin-bottom: 12px; color: #f5a623; letter-spacing: 2px; }
.tcard-text {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
.tcard-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.tauthor-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.av-green  { background: var(--slate); }
.av-orange { background: var(--ink); }
.av-teal   { background: #5a7fa8; }
.tauthor-name { font-size: 0.88rem; font-weight: 700; color: var(--ink); display: block; }
.tauthor-meta { font-size: 0.72rem; color: var(--ink-3); display: block; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--white); position: relative; z-index: 2; }
.faq-wrap { max-width: 760px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none; border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  transition: var(--transition);
  gap: 14px;
}
.faq-q:hover { color: var(--slate); }
.faq-q.open  { color: var(--slate); }
.faq-toggle {
  width: 30px; height: 30px; min-width: 30px;
  background: var(--slate-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--slate-dark);
  transition: var(--transition);
  font-weight: 500;
  flex-shrink: 0;
}
.faq-q.open .faq-toggle {
  background: var(--slate);
  color: white;
  transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner {
  padding: 2px 0 20px;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--slate-light) 0%, var(--orange-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.cta-section h2 { color: var(--ink); margin-bottom: 10px; }
.cta-section p  { color: var(--ink-3); font-size: 0.98rem; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btn-row    { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  padding: 56px 0 28px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand .fb-logo {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--slate);
  color: white;
  transform: translateY(-2px);
}
.footer-col h4 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; font-family: var(--font-body); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.84rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(26,31,44,0.82);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 42px 36px 34px;
  max-width: 440px; width: 100%;
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
  max-height: 92vh; overflow-y: auto;
}
.modal-overlay.active .modal-card { transform: translateY(0) scale(1); }
.modal-close-btn {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.4rem; cursor: pointer;
  color: var(--ink-3); transition: var(--transition); line-height: 1;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.modal-close-btn:hover { color: var(--ink); background: var(--slate-light); }
.modal-icon-wrap {
  width: 62px; height: 62px;
  background: var(--slate-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--slate-dark);
}
.modal-icon-wrap .icon { width: 28px; height: 28px; }
.modal-title { font-size: 1.6rem; color: var(--ink); text-align: center; margin-bottom: 6px; }
.modal-subtitle { text-align: center; font-size: 0.88rem; color: var(--ink-3); margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--mist);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--slate);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74,111,165,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-3); }
.form-note { font-size: 0.72rem; color: var(--ink-3); text-align: center; }
.modal-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--mist);
  border-radius: var(--radius);
  margin-top: 2px;
}
.modal-perk { font-size: 0.8rem; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.modal-perk .icon { width: 16px; height: 16px; color: var(--slate); }
.modal-success { text-align: center; padding: 16px 0; display: none; }
.modal-success .icon { width: 56px; height: 56px; color: var(--slate); margin: 0 auto 14px; }
.modal-success h3 { color: var(--ink); margin-bottom: 6px; }
.modal-success p  { font-size: 0.9rem; }

/* ============================================================
   PAGE HEADERS
   ============================================================ */
.page-header {
  background: linear-gradient(150deg, #f8fafc 0%, #eef4ff 55%, #f5f1eb 100%);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(74,111,165,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.page-header h1 { color: var(--ink); margin-bottom: 10px; }
.page-header p  { color: var(--ink-3); font-size: 0.98rem; max-width: 520px; margin: 0 auto; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-note {
  text-align: center;
  padding: 18px 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.pricing-note strong { color: var(--ink); }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 48px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.plan-card:hover,
.plan-card.selected {
  border-color: var(--slate);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.plan-card.popular { border-color: var(--slate); }

.popular-pill {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--slate);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 2;
}

.plan-card-top { padding: 28px 26px; text-align: center; }

.plan-tag  { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.plan-tag-green  { background: var(--green-light); color: var(--green); }
.plan-tag-orange { background: var(--orange-light); color: var(--orange); }

.plan-name { font-size: 1.35rem; color: var(--ink); margin-bottom: 2px; }
.plan-dur  { font-size: 0.8rem; color: var(--ink-3); margin-bottom: 16px; }

.plan-price-row { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.plan-amount {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 600;
  color: var(--ink); line-height: 1;
  display: inline-block;
}
.plan-currency { font-size: 1.2rem; vertical-align: super; color: var(--ink-3); }
.plan-period { font-size: 0.76rem; color: var(--ink-3); display: block; margin-top: 4px; }
.plan-per-day { font-size: 0.72rem; color: var(--slate-dark); font-weight: 700; margin-top: 2px; display: block; }

.plan-hint {
  display: none;
}

.plan-features {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 10px;
  padding: 0 26px 28px;
  background: var(--mist);
}
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: var(--ink-2); }
.plan-features li .icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.plan-features li .icon.tick { color: var(--green); }
.plan-features li .icon.cross { color: #dc2626; opacity: 0.8; }
.plan-features li.excluded { color: var(--ink-3); opacity: 0.8; }

.plan-card .btn { width: 100%; justify-content: center; }

/* Free plan teaser */
.free-plan-teaser {
  background: var(--slate);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  color: white;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.free-plan-teaser h3 { color: white; font-size: 1.35rem; margin-bottom: 8px; }
.free-plan-teaser p  { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 0.9rem; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-thumb {
  width: 100%; aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-thumb .icon { width: 48px; height: 48px; color: rgba(255,255,255,0.85); }
.blog-body { padding: 20px; }
.blog-pill {
  display: inline-block;
  background: var(--slate-light);
  color: var(--slate-dark);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px;
  margin-bottom: 10px;
}
.blog-title { font-size: 0.98rem; color: var(--ink); margin-bottom: 8px; line-height: 1.4; font-family: var(--font-display); font-weight: 600; }
.blog-excerpt { font-size: 0.82rem; color: var(--ink-3); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { font-size: 0.72rem; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.cinfo-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--mist);
  border-radius: var(--radius);
  transition: var(--transition);
}
.cinfo-card:hover { transform: translateX(3px); box-shadow: var(--shadow); }
.cinfo-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--slate);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.cinfo-icon .icon { width: 20px; height: 20px; }
.cinfo-card h4 { font-size: 0.78rem; color: var(--ink-3); margin-bottom: 2px; font-weight: 600; font-family: var(--font-body); }
.cinfo-card p  { font-size: 0.88rem; color: var(--ink); margin: 0; font-weight: 600; }
.contact-form-card {
  background: var(--white);
  padding: 38px 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form-card h3 { color: var(--ink); margin-bottom: 20px; font-size: 1.35rem; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-visual        { order: 1; margin-top: 10px; }
  .hero-eyebrow       { justify-content: center; margin-bottom: 2px; }
  .hero-desc          { margin-left: auto; margin-right: auto; }
  .hero-image-wrap    { max-width: 396px; margin: 0 auto; }
  .hero-image-badge   { left: 10px; }

  .ft-grid            { grid-template-columns: 1fr; }
  .coach-grid         { grid-template-columns: 1fr; text-align: center; }
  .coach-image-wrap   { justify-content: center; margin-bottom: 14px; }
  .coach-creds        { align-items: center; }
  .coach-quote        { text-align: left; }
  .tags-row           { justify-content: center; }

  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .life-grid          { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 28px; }

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

@media (max-width: 768px) {
  .section-pad { padding: 52px 0; }

  .hamburger       { display: flex; }
  .hamburger span  { background: var(--ink); }
  .navbar-inner    { position: relative; }
  .nav-links       { display: none; }

  /* ---- Body-level Mobile Sidebar ---- */
  .mobile-sidebar {
    display: block;
    position: fixed; inset: 0;
    z-index: 10001;
    pointer-events: none;
  }
  .mobile-sidebar.open { pointer-events: auto; }

  .mobile-sidebar-backdrop {
    position: absolute; inset: 0;
    background: rgba(26,31,44,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-sidebar.open .mobile-sidebar-backdrop { opacity: 1; }

  .mobile-sidebar-panel {
    position: absolute;
    top: 0; right: 0;
    width: 280px; height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(26,31,44,0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.32,0.72,0,1);
  }
  .mobile-sidebar.open .mobile-sidebar-panel { transform: translateX(0); }

  .ms-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
  }
  .ms-panel-logo { height: 32px; width: auto; }
  .ms-panel-close {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: var(--mist);
    border: none; border-radius: 50%;
    color: var(--ink-2);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
  }
  .ms-panel-close:hover { background: var(--ink); color: var(--white); }

  .ms-panel-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 22px;
    flex: 1;
  }
  .ms-panel-nav a {
    display: block;
    padding: 15px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: var(--transition);
  }
  .ms-panel-nav a:hover,
  .ms-panel-nav a.active { background: var(--mist); }

  .ms-panel-cta-wrap {
    padding: 0 22px 24px;
    flex-shrink: 0;
  }
  .ms-panel-cta {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
  }
  .ms-panel-cta:hover { background: var(--ink-2); }

  .hero { padding: 86px 0 28px; }
  .hero-heading { font-size: 2.5rem; }

  .hero { padding: 86px 0 28px; }
  .hero-heading { font-size: 2.5rem; }
  .hero-heading .line-2 { font-size: 2rem; }
  .hero-image-wrap { max-width: 330px; }
  .hero-image-wrap img { border-radius: 80px 80px 24px 24px; }

  .benefits-grid     { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }

  .plans-grid        { grid-template-columns: 1fr; max-width: 420px; }
  .plan-card.popular { margin-top: 14px; }

  .cf-grid           { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
  .blogs-grid        { grid-template-columns: 1fr; }

  .modal-card        { padding: 32px 22px 28px; border-radius: var(--radius-lg); }
  .modal-title       { font-size: 1.4rem; }

}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn-lg    { padding: 15px 28px; font-size: 0.98rem; width: 100%; }
  .ft-features { grid-template-columns: 1fr; }
  .benefit-card { padding: 16px; }
  .benefit-icon { width: 44px; height: 44px; min-width: 44px; }
  .benefit-icon .icon { width: 22px; height: 22px; }
  .tcard { min-width: 85vw; width: 85vw; padding: 28px 22px; }
  .tcard-text { font-size: 0.95rem; }
  .testimonials-grid { 
    gap: 16px; 
    margin-left: -18px; 
    margin-right: -18px; 
    padding-left: 18px; 
    padding-right: 18px;
    scroll-padding-left: 18px;
  }
}

/* ============================================================
   RE-REDESIGNED TRIAL SECTION (COMPACT & SIMPLE)
   ============================================================ */
.trial-section-new { padding: 60px 0; background: var(--white); border-top: 1px solid var(--line); }
.trial-card-compact {
  background: #fdf6ec; /* Very light yellowish tint */
  border-radius: 20px;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(214, 158, 46, 0.1);
}
.trial-badge {
  display: inline-block;
  background: #fef3c7;
  color: #78350f;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trial-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.trial-desc {
  font-size: 1rem;
  color: var(--ink-2);
  margin-bottom: 24px;
  opacity: 0.9;
}
.trial-visual-new { display: flex; justify-content: flex-end; }
.visual-decorator {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  border: 2px dashed #fcd34d;
  animation: rotate 20s linear infinite;
}
.v-icon { width: 50px; height: 50px; color: #d97706; position: relative; z-index: 2; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 768px) {
  .trial-card-compact { grid-template-columns: 1fr; padding: 30px; text-align: center; }
  .trial-visual-new { display: none; }
}

.accent-red { color: #e53e3e; }

/* ============================================================
   RE-REDESIGNED TRIAL SECTION (COMPACT & SIMPLE)
   ============================================================ */
.trial-section-new { padding: 80px 0; background: var(--white); border-top: 1px solid var(--line); }
.trial-card-compact {
  background: #fdf6ec; 
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid rgba(214, 158, 46, 0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.trial-badge {
  display: inline-block;
  background: #fef3c7;
  color: #78350f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.trial-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
}
.trial-desc {
  font-size: 1.1rem;
  color: var(--ink-2);
  margin-bottom: 30px;
  line-height: 1.6;
}
.trial-visual-new { display: flex; justify-content: center; position: relative; }
.visual-decorator {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  border: 2px dashed #fcd34d;
  animation: rotate 20s linear infinite;
}
.v-icon { width: 60px; height: 60px; color: #d97706; position: relative; z-index: 2; }
.v-tag {
  position: absolute;
  bottom: -10px;
  background: var(--ink);
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 3;
}

@media (max-width: 992px) {
  .trial-card-compact { grid-template-columns: 1fr; padding: 40px 30px; text-align: center; }
  .trial-visual-new { display: none; }
  .trial-title { font-size: 1.8rem; }
}

/* ============================================================
   FINAL TRIAL SECTION CSS
   ============================================================ */
.trial-section-new { padding: 90px 0; background: var(--white); border-top: 1px solid var(--line); position: relative; z-index: 2; }
.trial-card-compact {
  background: #f0f7ff; /* Very soft blue tint */
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(74, 111, 165, 0.08);
}
.trial-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trial-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #1a1f2c;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}
.trial-title .accent-blue { color: #2563eb; }
.trial-desc {
  font-size: 1.15rem;
  color: #4b5563;
  margin-bottom: 34px;
  line-height: 1.6;
}
.trial-cta-wrap-new {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trial-meta-hint {
  font-size: 0.9rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.trial-visual-new { display: flex; justify-content: center; position: relative; }
.visual-decorator {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  border: 4px dashed #93c5fd;
  animation: rotate-slow 25s linear infinite;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.05);
}
.v-icon { width: 70px; height: 70px; color: #2563eb; position: relative; z-index: 2; }
.v-tag {
  position: absolute;
  bottom: -15px;
  background: #1e293b;
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 992px) {
  .trial-card-compact { grid-template-columns: 1fr; padding: 50px 30px; text-align: center; gap: 40px; }
  .trial-visual-new { display: none; }
  .trial-title { font-size: 2.2rem; }
  .trial-cta-wrap-new { flex-direction: column; gap: 16px; }
}
