/* ============================================================
   SG Theme - Saroosh Gull | Main Stylesheet
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Vidaloka&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --sg-dark:        #040426;
  --sg-dark-2:      #040426;
  --sg-dark-3:      #040426;
  --sg-pink:        #FF008A;
  --sg-pink-hover:  #E0005A;
  --sg-pink-light:  #FF3385;
  --sg-white:       #FFFFFF;
  --sg-gray:        #F8F9FA;
  --sg-gray-2:      #F0F2F5;
  --sg-text-muted:  #8A9BB0;
  --sg-text-light:  #CBD5E1;
  --sg-border:      rgba(255,255,255,0.08);
  --sg-border-dark: rgba(0,0,0,0.08);
  --sg-font:        'Inter', sans-serif;
  --sg-font-heading:'Vidaloka', Georgia, serif;
  --sg-heading-font : 'Vidaloka', Georgia, serif;
  --sg-radius:      12px;
  --sg-radius-sm:   8px;
  --sg-radius-lg:   20px;
  --sg-shadow:      0 4px 24px rgba(0,0,0,0.12);
  --sg-shadow-lg:   0 8px 48px rgba(0,0,0,0.20);
  --sg-transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sg-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--sg-dark);
  background: var(--sg-white);
  overflow-x: hidden;
}

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

a { color: var(--sg-pink); text-decoration: none; transition: var(--sg-transition); }
a:hover { color: var(--sg-pink-hover); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--sg-font-heading);
  font-weight: 400 !important; /* Vidaloka only ships as Regular — !important overrides all component-level weight overrides */
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ── Utility Classes ──────────────────────────────────────── */
.text-pink     { color: var(--sg-pink) !important; }
.text-dark-sg  { color: var(--sg-dark) !important; }
.bg-sg-dark    { background-color: var(--sg-dark); }
.bg-sg-dark-2  { background-color: var(--sg-dark-2); }
.bg-sg-pink    { background-color: var(--sg-pink); }
.bg-sg-gray    { background-color: var(--sg-gray); }

.sg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: var(--sg-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: var(--sg-transition);
  text-decoration: none;
  white-space: nowrap;
}

.sg-btn-pink {
  background: var(--sg-pink);
  color: var(--sg-white);
}
.sg-btn-pink:hover {
  background: var(--sg-pink-hover);
  color: var(--sg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,102,0.4);
}

.sg-btn-outline {
  background: transparent;
  color: var(--sg-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.sg-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--sg-white);
  border-color: var(--sg-white);
  transform: translateY(-2px);
}

.sg-btn-outline-pink {
  background: transparent;
  color: var(--sg-pink);
  border: 1.5px solid var(--sg-pink);
}
.sg-btn-outline-pink:hover {
  background: var(--sg-pink);
  color: var(--sg-white);
  transform: translateY(-2px);
}

.sg-btn-dark {
  background: var(--sg-dark);
  color: var(--sg-white);
}
.sg-btn-dark:hover {
  background: var(--sg-dark-2);
  color: var(--sg-white);
  transform: translateY(-2px);
}

.sg-section { padding: 80px 0; }
.sg-section-sm { padding: 60px 0; }
.sg-section-lg { padding: 100px 0; }

.sg-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255,0,102,0.12);
  color: var(--sg-pink);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sg-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-pink);
  margin-bottom: 12px;
  display: none;
}

/* ── Diamond Pattern Overlay ──────────────────────────────── */
.sg-pattern-overlay {
  position: relative;
}
.sg-pattern-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  pointer-events: none;
  z-index: 0;
}
.sg-pattern-overlay > * { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════════════════════ */
#sg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--sg-dark);
  border-bottom: 1px solid var(--sg-border);
  transition: var(--sg-transition);
}
#sg-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.sg-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.sg-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.sg-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--sg-pink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: white;
  letter-spacing: -0.5px;
}
.sg-logo-text {
  color: var(--sg-white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.sg-logo-text small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.sg-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sg-nav > li { position: relative; }

.sg-nav > li > a {
  color: var(--sg-text-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--sg-transition);
  white-space: nowrap;
}
.sg-nav > li > a:hover,
.sg-nav > li.active > a {
  color: var(--sg-white);
  background: rgba(255,255,255,0.06);
}
.sg-nav > li > a.active { color: var(--sg-pink); }

/* Dropdown */
.sg-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--sg-dark-2);
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--sg-transition);
  box-shadow: var(--sg-shadow-lg);
}
.sg-dropdown.resources-dropdown { min-width: 220px; }
.sg-nav > li:hover .sg-dropdown,
.sg-nav > li:focus-within .sg-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sg-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--sg-text-light);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--sg-transition);
}
.sg-dropdown a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--sg-white);
}
.sg-dropdown a .dd-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,0,102,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-pink);
  font-size: 12px;
  flex-shrink: 0;
}

.sg-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile toggle */
.sg-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.sg-nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--sg-white);
  border-radius: 2px;
  transition: var(--sg-transition);
  display: block;
}
.sg-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sg-nav-toggle.active span:nth-child(2) { opacity: 0; }
.sg-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO SECTIONS
══════════════════════════════════════════════════════════ */
.sg-hero {
  background: var(--sg-dark);
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Blue grid background — matches screenshot */
.sg-hero-grid {
  background-color: var(--sg-dark);
  background-image:
    linear-gradient(rgba(99,179,237,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,179,237,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

.sg-hero-sm {
  min-height: auto;
  padding: 120px 0 60px;
}

/* Keep badge for other uses but not rendered in hero */
.sg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,0,102,0.12);
  border: 1px solid rgba(255,0,102,0.25);
  color: var(--sg-pink);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.sg-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sg-pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Heading */
.sg-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--sg-white);
  line-height: 1.08;
  margin-bottom: 20px;
}

/* Pink tagline (line below heading) */
.sg-hero-tagline {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--sg-pink) !important;
  line-height: 1.55 !important;
  max-width: 520px;
  margin-bottom: 16px !important;
}

/* Body copy (muted, below tagline) */
.sg-hero-body {
  font-size: 15px !important;
  color: rgba(255,255,255,0.55) !important;
  line-height: 1.7 !important;
  max-width: 500px;
  margin-bottom: 36px !important;
}

/* Outline button — dark fill with border (matches screenshot 2nd button) */
.sg-btn-hero-outline {
  background: rgba(255,255,255,0.06);
  color: var(--sg-white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  position:relative;
}
.sg-btn-hero-outline::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:10px;
    padding:1.2px;
    background:linear-gradient(
        263.63deg,
        #F6339A -29.92%,
        #F987C6 15.28%,
        #FDF7FF 35.01%,
        #A8C7F2 46.46%,
        #4A91E3 102.47%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

.sg-btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  color: var(--sg-white);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ── Image card ───────────────────────────────────────── */
.sg-hero-image {
  position: relative;
}
.sg-hero-image img {
  border-radius: var(--sg-radius-lg);
  width: 100%;
  max-width:90%;
  margin-left: auto;
  object-fit: cover;
  display: block;    
  max-height: 600px;
  object-position: top;
}

/* Pink smiley badge — top-right of image */
.sg-hero-smiley {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  background: var(--sg-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(255,0,102,0.45);
  /*display:none;*/
}

/* Smiley with custom uploaded image */
.sg-hero-smiley--img {
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}
.sg-hero-smiley-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  max-width:100% !important;
}

/* ── Stat card (bottom-right of image) ───────────────── */
.sg-hero-stat {
  position: absolute;
  bottom: 28px;
  left: -3%;
  background: rgba(10,14,26,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--sg-radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

/* Lightning icon circle */
.sg-hero-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-pink);
  font-size: 18px;
  flex-shrink: 0;
}

/* Text block inside stat card */
.sg-hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sg-hero-stat-text .stat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sg-white);
  display: block;
  line-height: 1.2;
}
.sg-hero-stat-text .stat-meta {
  font-size: 12px;
  color: var(--sg-text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sg-hero-stat-text .stat-meta i {
  color: var(--sg-pink);
  font-size: 12px;
}

/* Page hero (non-full-height) */
.sg-page-hero {
  background: var(--sg-dark);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.sg-page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--sg-white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.sg-page-hero p {
  max-width: 600px;
  color:var(--sg-text-light);
  margin:0 auto;
}
.sg-page-hero .col-12 { text-align:center; margin:0 auto }

/* ── Tools & Frameworks Hero ─────────────────────────────── */
.sg-tools-hero { padding: 120px 0 80px; }

.sg-tools-hero-heading {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sg-tools-hero-tagline {
  font-size: 16px;
  font-weight: 700;
  color: var(--sg-pink);
  margin-bottom: 18px;
  line-height: 1.5;
}

.sg-tools-hero-body {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 680px;
}
.sg-tools-hero-body:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .sg-tools-hero { padding: 100px 0 60px; }
  .sg-tools-hero-heading { font-size: clamp(32px, 8vw, 52px); }
}

/* ── About Page Hero ────────────────────────────────────────── */
.sg-about-hero {
  background-color: var(--sg-dark);
  background-image:
    linear-gradient(45deg,  rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  padding: 110px 0 0;
  position: relative;
  /*overflow: hidden;*/
}
.sg-about-hero-text {
  text-align: center;
  max-width: 72%;
  margin: 0 auto 42px;
  padding: 0 16px;
}
.sg-about-hero-text .sg-section-label {
  margin-bottom: 20px;
}
.sg-about-hero-heading {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(36px, 5vw, 60px) !important;
  font-weight: 400 !important;
  color: var(--sg-white);
  line-height: 1.1;
  margin-bottom:16px;
}
.sg-about-hero-body {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  line-height: 1.75;
  max-width: 94%;
  margin-left: auto;
  margin-right: auto;
}
.sg-about-hero-tagline {
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  color: var(--sg-pink);
  margin: 0;
  margin-bottom:12px;
}
.sg-about-hero-img-wrap {
  width: 100%;
  border-radius: var(--sg-radius-lg) var(--sg-radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  margin-top: -180px;
  transform: translateY(180px) !important;
  margin-bottom: 180px;
}
.sg-about-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius:15px;
}
.sg-about-hero-img-placeholder {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sg-about-hero-img-placeholder i {
  font-size: 80px;
  color: rgba(255,255,255,0.2);
}

/* ── The Journey Section ────────────────────────────────── */
.sg-journey-section {
  background-color: var(--sg-dark);
  background-image:
    linear-gradient(45deg,  rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  padding: 80px 0 100px;
}
.sg-journey-header {
  max-width: 720px;
  margin: 0 auto 56px;
}
.sg-journey-title {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  font-weight: 400 !important;
  color: var(--sg-white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.sg-journey-tagline-bold {
  font-size: 17px;
  font-weight: 700;
  color: var(--sg-white);
  margin-bottom: 16px;
}
.sg-journey-body-text {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}
/* Progress track */
.sg-journey-progress {
  position: relative;
  padding: 10px 0;
  margin-bottom: 28px;
}
.sg-journey-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #D9D9D9;
  transform: translateY(-50%);
}
.sg-journey-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sg-journey-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,1);
  border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  padding: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}
.sg-journey-dot.active {
  background: var(--sg-pink);
  border-color: var(--sg-pink);
  transform: scale(1.2);
}
.sg-journey-dot:hover:not(.active) {
  border-color: rgba(255,0,138,0.65);
  background: rgba(255,0,138,1);
}
/* City cards */
.sg-journey-cards {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.sg-journey-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  overflow: hidden;
  min-width: 0;
}
.sg-journey-card.active {
  border-color: var(--sg-pink);
  background: rgba(255,0,138,0.06);
}
.sg-journey-card:hover:not(.active) {
  border-color: rgba(255,0,138,0.4);
}
.sg-journey-card-img {
  height: 130px;
  background: rgba(255,0,138,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sg-journey-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sg-journey-card-placeholder {
  font-size: 36px;
  color: rgba(255,0,138,0.4);
  line-height: 1;
}
.sg-journey-card-info {
  padding: 12px 12px 14px;
  text-align:center;
}
.sg-journey-card-name {
  font-family: var(--sg-font-heading);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 400 !important;
  color: var(--sg-white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.sg-journey-card-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}
/* Detail panel */
.sg-journey-detail {
  background: rgba(255,255,255,0.93);
  border-radius: 16px;
  padding: 36px 48px 40px;
  min-height: 130px;
}
.sg-journey-detail-name {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(22px, 2.5vw, 34px) !important;
  font-weight: 400 !important;
  color: var(--sg-dark);
  margin-bottom: 12px;
  line-height: 1.1;
}
.sg-journey-detail-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 680px;
}
.sg-journey-detail-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.sg-journey-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.sg-journey-tag-dark  { background: var(--sg-dark); color: #fff; }
.sg-journey-tag-light { background: transparent; color: var(--sg-dark); border: 1.5px solid rgba(0,0,0,0.18); }
@media (max-width: 900px) {
  .sg-journey-cards { grid-template-columns: repeat(4, minmax(120px, 1fr)); }
}
@media (max-width: 576px) {
  .sg-journey-cards { grid-template-columns: repeat(3, minmax(105px, 1fr)); }
  .sg-journey-detail { padding: 28px 24px 32px; }
}

/* ── About Page Bio Section ─────────────────────────────── */
.sg-about-bio {
  background: #ffffff;
  padding: 80px 0 72px;
}
.sg-about-bio-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.sg-about-bio-label {
  display: block;
  margin-bottom: 18px;
}
.sg-about-bio-heading {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(28px, 3.5vw, 46px) !important;
  font-weight: 400 !important;
  color: var(--sg-dark);
  line-height: 1.1;
  margin-bottom: 28px;
}
.sg-about-bio-p {
  font-size: 16px;
  color: #333;
  line-height: 1.85;
  margin-bottom: 20px;
}
.sg-about-bio-p:last-child {
  margin-bottom: 0;
}
.sg-about-bio-quote {
  border-left: 4px solid var(--sg-pink);
  background: #fff0f6;
  border-radius: 0 8px 8px 0;
  padding: 22px 28px;
  margin: 36px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--sg-dark);
  line-height: 1.65;
  font-style: normal;
}

/* ══════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
══════════════════════════════════════════════════════════ */

/* Coaching / Mentoring Cards */
.sg-coaching-card {
  background: var(--sg-gray);      /* light gray fill, no border */
  border: none;
  border-radius: var(--sg-radius);
  padding: 32px 28px;
  transition: var(--sg-transition);
  height: 100%;
}
.sg-coaching-card:hover {
  background: #eef0f3;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

/* Icon — outline style, no background box */
.sg-coaching-icon {
  color: var(--sg-pink);
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.sg-coaching-card h4 {
  font-size: 18px;
  color: var(--sg-dark);
  margin-bottom: 10px;
}
.sg-coaching-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ── Merchandise Banner ───────────────────────────────────── */
.sg-merch-banner-section {
  background: var(--sg-dark-2);
  padding: 0;
  display:none;
}

.sg-merch-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  flex-wrap: wrap;
}

/* Left group: icon + text */
.sg-merch-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

/* Bag icon tile */
.sg-merch-banner-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,0,138,0.30) 0%, rgba(255,0,138,0.10) 100%);
  border: 1px solid rgba(255,0,138,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-pink);
  font-size: 26px;
  flex-shrink: 0;
}

.sg-merch-banner-info { min-width: 0; }

.sg-merch-banner-info h3 {
  color: var(--sg-white);
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 6px;
  line-height: 1.2;
}

.sg-merch-banner-info p {
  color: var(--sg-text-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  max-width: 480px;
}

/* Right group: price + button */
.sg-merch-banner-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.sg-merch-banner-price {
  text-align: right;
}

.sg-merch-price-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-text-muted);
  margin-bottom: 2px;
}

.sg-merch-price-value {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.sg-merch-price-value .price-main {
  font-size: 36px;
  font-weight: 800;
  color: var(--sg-white);
  font-family: var(--sg-font);
}

.sg-merch-price-value .price-cents {
  font-size: 18px;
  font-weight: 700;
  color: var(--sg-white);
  font-family: var(--sg-font);
}

.sg-merch-banner-btn {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .sg-merch-banner { gap: 20px; padding: 24px 0; }
  .sg-merch-banner-right { justify-content: space-between; width: 100%; }
  .sg-merch-banner-price { text-align: left; }
}

/* ── Quote / Testimonial Section (light) ─────────────────── */
.sg-quote-section-light {
  background: var(--sg-gray);
  padding: 90px 0;
}

/* Photo */
.sg-quote-photo {
  border-radius: var(--sg-radius-lg);
  width: 100%;
  max-width: 460px;
  object-fit: cover;
  display: block;
}
.sg-quote-photo-placeholder {
  background: var(--sg-gray-2);
  border-radius: var(--sg-radius-lg);
  aspect-ratio: 4/5;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sg-quote-photo-placeholder i {
  font-size: 100px;
  color: #ccc;
}

/* Quote block */
.sg-quote-block {
  padding-left: 24px;
}

/* Large pink closing quotation marks */
.sg-quote-marks {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 100px;
  color: var(--sg-pink);
  line-height: 0.6;
  margin-bottom: 28px;
  display: block;
  user-select: none;
}

/* Quote body text */
.sg-quote-text {
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--sg-dark);
  line-height: 1.45;
  font-family: var(--sg-font-heading);
  margin: 0 0 36px;
  border: none;
  padding: 0;
  background: none;
}

/* Attribution row */
.sg-quote-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Short pink line */
.sg-quote-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--sg-pink);
  flex-shrink: 0;
  border-radius: 2px;
}

.sg-quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Name — pink, uppercase, bold */
.sg-quote-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--sg-pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

/* Title — dark, normal */
.sg-quote-title {
  font-size: 14px;
  color: var(--sg-dark);
  font-weight: 400;
  display: block;
}

/* Keep old dark quote section class in case used elsewhere */
.sg-quote-section {
  background: var(--sg-dark);
  padding: 80px 0;
}
.sg-big-quote {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--sg-white);
  line-height: 1.4;
  position: relative;
  padding-left: 48px;
}
.sg-big-quote::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -12px;
  font-size: 80px;
  color: var(--sg-pink);
  font-family: Georgia, serif;
  line-height: 1;
}
.sg-big-quote .quote-attr {
  display: block;
  font-size: 14px;
  color: var(--sg-text-muted);
  margin-top: 16px;
}

/* ══════════════════════════════════════════════════════════
   ASSESSMENT — "NEED SOMETHING MORE SPECIFIC?" SECTION
══════════════════════════════════════════════════════════ */

/* Gradient wrapper */
.sg-specific-section {
  padding: 80px 0;
  background: linear-gradient(to right, #b3c6e8 0%, #c8b6e8 50%, #e8b8cc 100%);
}

/* White card with subtle diamond watermark */
.sg-specific-card {
  background: var(--sg-white);
  border-radius: 20px;
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
/* Chevron watermark pattern */
.sg-specific-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg,  rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  border-radius: inherit;
  pointer-events: none;
}

/* Inner content sits above the pattern */
.sg-specific-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

/* Heading */
.sg-specific-heading {
  font-family: var(--sg-heading-font);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--sg-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Body paragraph */
.sg-specific-body {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA button override — rounder pill */
.sg-specific-btn {
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

/* Note text below button */
.sg-specific-note {
  font-size: 13px;
  color: #aaa;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .sg-specific-card { padding: 48px 24px; }
  .sg-specific-heading { font-size: 28px; }
}

/* ══════════════════════════════════════════════════════════
   OUTCOME / CTA SECTION + QUIZ (legacy — homepage)
══════════════════════════════════════════════════════════ */

/* Section — dark navy with large diagonal diamond pattern */
.sg-outcome-section {
  background-color: var(--sg-dark);
  background-image:
    linear-gradient(45deg,  rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Centered content wrapper */
.sg-outcome-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* Main heading */
.sg-outcome-heading {
  color: var(--sg-white);
  line-height: 1.12;
  margin-bottom: 28px;
}
.sg-outcome-heading .accent { color: var(--sg-pink); }

/* Bold intro label below heading */
.sg-outcome-quiz-intro {
  font-size: 15px;
  font-weight: 700;
  color: var(--sg-white);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

/* Frosted intro card */
.sg-outcome-intro-card {
  background: rgba(255, 248, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px 40px;
  margin: 0 auto 36px;
  max-width: 720px;
  text-align: left;
}
.sg-outcome-intro-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0 0 16px;
}
.sg-outcome-intro-card p:last-child { margin-bottom: 0; }

/* Quiz button — pill shape, centered */
.sg-outcome-quiz-btn {
  padding: 16px 48px !important;
  font-size: 15px !important;
  border-radius: 50px !important;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════════════════
   PERSONALITY QUIZ — INLINE SCREENS
══════════════════════════════════════════════════════════ */
#sg-quiz-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.sg-quiz-screen {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sg-radius-lg);
  padding: 48px 48px 40px;
  position: relative;
}
@media (max-width: 575px) {
  .sg-quiz-screen { padding: 32px 24px 28px; }
}

/* Progress */
.sg-qprogress {
  margin-bottom: 36px;
}
.sg-qprogress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.sg-qprogress-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sg-pink);
}
.sg-qprogress-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--sg-text-muted);
}
.sg-qprogress-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.sg-qprogress-fill {
  height: 100%;
  background: var(--sg-pink);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Question text */
.sg-qbody { margin-bottom: 12px; }
.sg-qtext {
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--sg-white);
  line-height: 1.3;
  margin-bottom: 28px;
}

/* Options grid */
.sg-qopts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 575px) { .sg-qopts { grid-template-columns: 1fr; } }

.sg-qopt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--sg-radius);
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  color: var(--sg-text-light);
  font-family: var(--sg-font);
  font-size: 14px;
  line-height: 1.5;
}
.sg-qopt:hover {
  border-color: rgba(255,0,138,0.5);
  background: rgba(255,0,138,0.06);
  color: var(--sg-white);
  transform: translateY(-2px);
}
.sg-qopt.selected {
  border-color: var(--sg-pink);
  background: rgba(255,0,138,0.12);
  color: var(--sg-white);
}
.sg-qopt-letter {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--sg-text-muted);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.sg-qopt:hover .sg-qopt-letter,
.sg-qopt.selected .sg-qopt-letter {
  background: var(--sg-pink);
  color: var(--sg-white);
}
.sg-qopt-text { font-weight: 500; }

/* Footer bar (back + close) */
.sg-qfooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}
.sg-qback, .sg-qclose {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sg-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--sg-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 2px;
  transition: color 0.2s;
}
.sg-qback:hover { color: var(--sg-white); }
.sg-qclose:hover { color: var(--sg-pink); }

/* ── Result Screen — 2×2 Profile Grid ───────────────── */
.sg-quiz-result {
  text-align: center;
  padding: 48px 32px 40px;
}
@media (max-width: 575px) { .sg-quiz-result { padding: 32px 16px 28px; } }

/* "Your Builder OS Profile" title */
.sg-qr-title {
  font-size: clamp(26px, 3.5vw, 44px) !important;
  color: var(--sg-white);
  margin-bottom: 32px;
}

/* 2×2 grid */
.sg-qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
  text-align: left;
}
@media (max-width: 600px) { .sg-qr-grid { grid-template-columns: 1fr; } }

/* Individual white card */
.sg-qr-card {
  background: var(--sg-white);
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Name + percentage row */
.sg-qr-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}
.sg-qr-name {
  font-family: var(--sg-font-heading);
  font-weight: 400 !important;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--sg-dark);
  line-height: 1.1;
}
.sg-qr-pct {
  font-size: 16px;
  font-weight: 700;
  color: var(--sg-pink);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* Progress bar */
.sg-qr-bar {
  height: 6px;
  background: rgba(0,0,0,0.09);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}
.sg-qr-bar-fill {
  height: 100%;
  background: var(--sg-pink);
  border-radius: 3px;
  width: 0%;
}

/* Card description */
.sg-qr-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Bottom action buttons */
.sg-qr-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* "Retake Quiz" — dark filled pill */
.sg-qretake {
  background: var(--sg-dark);
  border: none;
  cursor: pointer;
  font-family: var(--sg-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--sg-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  transition: var(--sg-transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.sg-qretake:hover {
  background: #1a2038;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* "Book a Call" CTA pill override */
.sg-qr-cta-btn {
  padding: 14px 36px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   CLIENT PERSPECTIVES SLIDER
══════════════════════════════════════════════════════════ */
.sg-perspectives-section { padding: 90px 0; }

/* ── Testimonial quote card ─────────────────────────── */
.sg-tp-card {
  background: #F5F5F7;
  border-radius: 20px;
  padding: 44px 44px 36px;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) { .sg-tp-card { padding: 32px 28px 28px; } }

/* Big pink closing quote marks */
.sg-tp-quote-marks {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--sg-pink);
  margin-bottom: 16px;
  display: block;
  height: 60px;
}

/* Bold headline quote */
.sg-tp-highlight {
  font-size: clamp(18px, 2vw, 36px) !important;
  color: var(--sg-dark);
  line-height: 1.35;
  margin-bottom: 18px;
}

/* Body paragraph */
.sg-tp-body {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}

/* Footer: author + arrows */
.sg-tp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Author */
.sg-tp-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sg-tp-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,0,138,0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sg-tp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.sg-tp-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sg-pink);
  margin-bottom: 3px;
}
.sg-tp-role {
  display: block;
  font-size: 13px;
  color: #888;
}

/* Prev / Next arrow buttons */
.sg-tp-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sg-tp-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #d4d4d4;
  background: var(--sg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--sg-dark);
  transition: var(--sg-transition);
}
.sg-tp-arrow:hover {
  border-color: var(--sg-pink);
  color: var(--sg-pink);
  box-shadow: 0 4px 12px rgba(255,0,138,0.15);
}

/* ── Right-side video / photo ───────────────────────── */
.sg-tp-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e8e8ec;
  max-height: 400px;
  width: 100%;
}
.sg-tp-vid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position:top;
}
.sg-tp-iframe-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
  display: none;
  border-radius: inherit;
}
.sg-tp-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.sg-tp-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e8ec 0%, #d0d0d8 100%);
  color: #aaa;
  font-size: 80px;
}

/* Play button overlay */
.sg-tp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sg-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 2;
  border: none;
}
.sg-tp-play-btn i {
  font-size: 26px;
  color: var(--sg-pink);
  margin-left: 3px; /* optical centre for play icon */
}
.sg-tp-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.24);
}

/* Keep old class as alias for any other pages that use it */
.sg-testimonial-card {
  background: var(--sg-white);
  border: 1px solid var(--sg-border-dark);
  border-radius: var(--sg-radius);
  padding: 36px;
  transition: var(--sg-transition);
}
.sg-testimonial-author .name { font-weight: 700; font-size: 14px; color: var(--sg-dark); display: block; }
.sg-testimonial-author .role { font-size: 13px; color: var(--sg-text-muted); }

/* ══════════════════════════════════════════════════════════
   NEWSLETTER — THE LEADER'S JOURNAL
══════════════════════════════════════════════════════════ */

/* Section — gradient background (blue-purple → pink) */
.sg-newsletter {
  background: linear-gradient(135deg, #b8c6e8 0%, #dfc0d8 50%, #f5d5e8 100%);
  padding: 80px 0;
}

/* Centered white card with diamond pattern */
.sg-journal-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 64px 60px 56px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.06);
}
@media (max-width: 767px) {
  .sg-journal-card { padding: 48px 28px 40px; }
}

/* SVG pattern overlay on the white card */
.sg-journal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/newsletter-pattern.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.sg-journal-card > * { position: relative; z-index: 1; }

/* Heading */
.sg-journal-heading {
  font-size: clamp(28px, 3.5vw, 46px) !important;
  color: var(--sg-dark);
  margin-bottom: 14px;
}

/* Tagline */
.sg-journal-tagline {
  font-size: 16px;
  font-weight: 500;
  color: var(--sg-dark);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Body paragraph */
.sg-journal-body {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* Email form */
.sg-journal-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 14px;
  border: 1.5px solid #e0e2e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.25s;
}
.sg-journal-form:focus-within {
  border-color: var(--sg-pink);
  box-shadow: 0 0 0 3px rgba(255,0,138,0.08);
}
.sg-journal-form input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-family: var(--sg-font);
  font-size: 14px;
  color: var(--sg-dark);
  background: transparent;
  min-width: 0;
}
.sg-journal-form input[type="email"]::placeholder { color: #aaa; }
.sg-journal-form .sg-btn {
  border-radius: 8px;
  margin: 4px;
  padding: 11px 24px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Below-form note */
.sg-journal-note {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

/* Legacy email form — used on other pages */
.sg-email-form {
  display: flex;
  gap: 8px;
  max-width: 420px;}
.sg-email-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  font-family: var(--sg-font);
  font-size: 14px;
  outline: none;
  transition: var(--sg-transition);
}
.sg-email-form input:focus { border-color: var(--sg-pink); }

/* Dark newsletter */
.sg-newsletter-dark {
  background: var(--sg-dark);
  padding: 80px 0;
}
.sg-newsletter-dark h2 { color: var(--sg-white); }
.sg-newsletter-dark p { color: var(--sg-text-light); }
.sg-newsletter-dark .sg-email-form input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--sg-white);
}
.sg-newsletter-dark .sg-email-form input::placeholder { color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════════════════════
   PODCAST — GET NOTIFIED SECTION
══════════════════════════════════════════════════════════ */

/* Outer section — blue-left to pink-right gradient */
.sg-notify-section {
  padding: 80px 0;
  background: linear-gradient(120deg, #a8badf 0%, #c9aed4 50%, #e8c4d8 100%);
}

/* White card */
.sg-notify-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 70px 60px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.07);
}

/* Chevron / arrow pattern overlay on the card */
.sg-notify-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/newsletter-pattern.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.sg-notify-card > * { position: relative; z-index: 1; }

/* Heading */
.sg-notify-heading {
  font-family: var(--sg-font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--sg-dark);
  margin: 0 0 18px;
  line-height: 1.2;
}

/* Tagline — first body line */
.sg-notify-tagline {
  font-size: 16px;
  color: #2d2d2d;
  margin: 0 0 8px;
  line-height: 1.6;
}

/* Body — second body line */
.sg-notify-body {
  font-size: 16px;
  color: #2d2d2d;
  margin: 0 0 36px;
  line-height: 1.6;
}

/* Email form row */
.sg-notify-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sg-notify-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-family: var(--sg-font);
  color: #111;
  min-width: 0;
}
.sg-notify-input::placeholder { color: #9ca3af; }
.sg-notify-btn {
  flex-shrink: 0;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

/* Success message */
.sg-notify-msg {
  margin: 14px 0 0;
  font-size: 14px;
  min-height: 18px;
}

/* Responsive */
@media (max-width: 767px) {
  .sg-notify-card { padding: 48px 24px 40px; }
  .sg-notify-form { flex-direction: column; border-radius: 16px; padding: 16px; gap: 12px; background: transparent; box-shadow: none; }
  .sg-notify-input { width: 100%; background: #f2f4f8; border-radius: 50px; padding: 13px 20px; border: none; outline: none; }
  .sg-notify-btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   BLOG / ARTICLES
══════════════════════════════════════════════════════════ */
.sg-article-card {
  background: #F7F7F5;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--sg-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.0);
}
.sg-article-card:hover {
  box-shadow: 0 8px 12px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.sg-article-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8ecf0;
  border-radius: 0;
}
.sg-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sg-article-card:hover .sg-article-thumb img { transform: scale(1.05); }

/* Card body */
.sg-article-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Top row: category badge + read time */
.sg-article-meta-top {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.sg-article-cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  background: var(--sg-pink);
  color: #fff;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  margin-right:10px;
}
.sg-article-read-time {
  font-size: 13px;
  color: #888;
  font-weight: 400;
}

/* Title */
.sg-article-card h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--sg-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.sg-article-card h4 a {
  color: var(--sg-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.sg-article-card h4 a:hover { color: var(--sg-pink); }

/* Excerpt — max 5 lines */
.sg-article-excerpt {
  font-size: 16px !important;
  color: #555 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog Filter Tabs */
.sg-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.sg-filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--sg-border-dark);
  background: transparent;
  color: #666;
  cursor: pointer;
  transition: var(--sg-transition);
}
.sg-filter-tab:hover,
.sg-filter-tab.active {
  background: var(--sg-pink);
  border-color: var(--sg-pink);
  color: var(--sg-white);
}

/* ══════════════════════════════════════════════════════════
   BLOG INNER — SINGLE POST
══════════════════════════════════════════════════════════ */

/* ── Post Header ── */
.sg-post-header {
  padding: 110px 0 52px;
  background: var(--sg-dark);
  background-image:
    linear-gradient(45deg,  rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.sg-post-header-inner { max-width: 760px; }

/* Back to blog link */
.sg-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sg-text-muted);
  text-decoration: none;
  margin-bottom: 22px;
  transition: color 0.2s;
}
.sg-post-back:hover { color: var(--sg-white); }

/* Category + read time row */
.sg-post-cat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.sg-post-read-time {
  font-size: 14px;
  color: var(--sg-text-light);
}

/* Title */
.sg-post-title {
  font-family: var(--sg-font-heading);
  font-size: clamp(30px, 4.5vw, 58px);
  color: var(--sg-white);
  line-height: 1.1;
  margin: 0 0 28px;
}

/* Author row */
.sg-post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}
.sg-post-author-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sg-pink);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.sg-post-author-info { display: flex; flex-direction: column; gap: 2px; }
.sg-post-author-name { font-size: 14px; font-weight: 700; color: var(--sg-white); }
.sg-post-author-date { font-size: 13px; color: var(--sg-text-muted); }

/* ── Content section ── */
.sg-post-content-section {
  background: #fff;
  padding: 56px 0 72px;
}

/* 2-col layout: article + share sidebar */
.sg-post-layout {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 48px;
  align-items: start;
  max-width:100%;
}

/* Featured image */
.sg-post-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 40px;
  display: block;
}

/* Article body */
.sg-post-body {
  font-size: 17px;
  line-height: 1.85;
  color: #2d2d2d;
}
.sg-post-body h2 {
  font-family: var(--sg-font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--sg-dark);
  margin: 44px 0 16px;
  line-height: 1.25;
}
.sg-post-body h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--sg-dark);
  margin: 36px 0 12px;
}
.sg-post-body p  { margin-bottom: 22px; }
.sg-post-body ul, .sg-post-body ol { padding-left: 26px; margin-bottom: 22px; }
.sg-post-body li { margin-bottom: 8px; }
.sg-post-body a  { color: var(--sg-pink); text-decoration: underline; }
.sg-post-body blockquote {
  border-left: 4px solid var(--sg-pink);
  background: rgba(255,0,102,0.04);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  margin: 32px 0;
  color: #444;
}
.sg-post-body img { max-width: 100%; border-radius: 10px; }

/* Tags row */
.sg-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sg-border-dark);
}

/* ── Share Sidebar ── */
.sg-post-share-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sg-share-sidebar-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #888;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 4px;
}
.sg-share-sidebar-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sg-share-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sg-dark);
  color: var(--sg-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.sg-share-icon-btn:hover {
  background: var(--sg-pink);
  color: #fff;
  transform: scale(1.08);
}

/* Copy tooltip */
.sg-copy-tooltip {
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.sg-copy-tooltip.visible { opacity: 1; }

/* ── Related Articles ── */
.sg-related-section {
  background: #fafafa;
  padding: 64px 0 72px;
  border-top: 1px solid var(--sg-border-dark);
}
.sg-related-heading {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--sg-dark);
  margin-bottom: 32px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sg-post-layout { grid-template-columns: 1fr; gap: 0; }
  .sg-post-share-sidebar {
    flex-direction: row;
    position: static;
    border-top: 1px solid var(--sg-border-dark);
    padding-top: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .sg-share-sidebar-title { writing-mode: horizontal-tb; margin-right: 4px; margin-bottom: 0; }
  .sg-share-sidebar-btns { flex-direction: row; }
}
@media (max-width: 576px) {
  .sg-post-title { font-size: 30px; }
  .sg-post-content-section { padding: 36px 0 48px; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */

/* Hero */
.sg-contact-hero { padding: 120px 0 72px; }
.sg-contact-hero-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.sg-contact-hero-sub1 {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  line-height: 1.6;
}
.sg-contact-hero-sub2 {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Info left column */
.sg-contact-info-heading {
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--sg-dark);
  margin-bottom: 8px;
}
.sg-contact-info-sub {
  color: var(--sg-pink);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}
.sg-contact-info-body {
  color: #666;
  font-size: 14px;
  margin-bottom: 32px;
}
.sg-contact-note {
  color: #888;
  font-size: 14px;
  margin-top: 24px;
}

/* Cards */
.sg-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  display:none;
}
.sg-contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,0,102,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-pink);
  font-size: 20px;
  flex-shrink: 0;
}
.sg-contact-card-body { flex: 1; }
.sg-contact-info-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--sg-dark);
  margin-bottom: 4px;
}
.sg-contact-info-card a { font-size: 14px; color: #555; }
.sg-contact-info-card p {
  font-size: 14px;
  color: #555;
  margin: 0 0 8px;
  line-height: 1.6;
}
.sg-contact-cta-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--sg-pink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.sg-contact-cta-link:hover { gap: 10px; color: var(--sg-pink); }

/* Form card */
.sg-contact-form-wrap {
  background: var(--sg-gray);
  border-radius: var(--sg-radius);
  padding: 36px;
  border: 1px solid var(--sg-border-dark);
}

/* Form styles */
.sg-form-group { margin-bottom: 20px; }
.sg-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--sg-dark);
  margin-bottom: 8px;
}
.sg-form-group label span { color: var(--sg-pink); }
.sg-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--sg-radius-sm);
  font-family: var(--sg-font);
  font-size: 14px;
  color: var(--sg-dark);
  background: var(--sg-white);
  outline: none;
  transition: var(--sg-transition);
}
.sg-form-control:focus { border-color: var(--sg-pink); box-shadow: 0 0 0 3px rgba(255,0,102,0.1); }
.sg-form-control::placeholder { color: #A0AABF; }
select.sg-form-control { appearance: none; cursor: pointer; }
textarea.sg-form-control { resize: vertical; min-height: 100px; }

/* FAQ Accordion */
.sg-faq-item {
  border-bottom: 1px solid var(--sg-border-dark);
}
.sg-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--sg-dark);
  gap: 16px;
  user-select: none;
  list-style: none;
}
.sg-faq-question:hover { color: var(--sg-pink); }
.sg-faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--sg-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--sg-transition);
  font-size: 14px;
  color: #666;
}
.sg-faq-item.open .sg-faq-chevron {
  background: var(--sg-pink);
  border-color: var(--sg-pink);
  color: white;
  transform: rotate(180deg);
}
.sg-faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.sg-faq-item.open .sg-faq-answer { display: block; }

/* ══════════════════════════════════════════════════════════
   ASSESSMENT PAGE
══════════════════════════════════════════════════════════ */
.sg-assessment-intro {
  background: var(--sg-gray);
  border-radius: var(--sg-radius);
  padding: 32px;
  margin-bottom: 40px;
  border-left: 4px solid var(--sg-pink);
}
.sg-assessment-intro p { font-size: 15px; color: #444; margin: 0; line-height: 1.7; }
.sg-assessment-intro p + p { margin-top: 12px; }

/* ══════════════════════════════════════════════════════════
   COACHING PATH CARDS — NEW DESIGN
══════════════════════════════════════════════════════════ */

/* Section heading */
.sg-cpath-section-heading {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--sg-dark);
  margin-bottom: 14px;
}
.sg-cpath-section-sub {
  font-size: 16px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Card container */
.sg-cpath-card {
  background: var(--sg-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--sg-transition);
}
.sg-cpath-card:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

/* Header row: icon + title/duration */
.sg-cpath-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  align-items:center;
}

/* Icon box */
.sg-cpath-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.sg-cpath-icon--pink   { background: rgba(255,0,138,0.1);  color: var(--sg-pink); }
.sg-cpath-icon--blue   { background: rgba(59,130,246,0.1); color: #3B82F6; }
.sg-cpath-icon--green  { background: rgba(34,197,94,0.1);  color: #16a34a; }
.sg-cpath-icon--orange { background: rgba(249,115,22,0.1); color: #F97316; }

/* Custom image / SVG icon variant */
.sg-cpath-icon-img  { width: 32px; height: 32px; object-fit: contain; display: block; }

/* Title + duration */
.sg-cpath-title-wrap { display: flex; flex-direction: column; justify-content: center; }
.sg-cpath-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--sg-dark);
  margin: 0 0 4px;
  line-height: 1.2;
}
.sg-cpath-duration {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #aaa;
  text-transform: uppercase;
  display:none;
}

/* Description paragraph */
.sg-cpath-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Section labels (BEST FIT WHEN / WORK AREAS) */
.sg-cpath-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #bbb;
  text-transform: uppercase;
  margin: 20px 0 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

/* Best Fit When list */
.sg-cpath-bestfit {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sg-cpath-bestfit li {
  font-size: 13px;
  color: #555;
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}
.sg-cpath-bestfit li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
}

/* Work Areas list */
.sg-cpath-workareas {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sg-cpath-workareas li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  padding: 5px 0;
  line-height: 1.5;
}
.sg-cpath-workareas li i { font-size: 14px; flex-shrink: 0; }
.sg-cpath-wa--pink   i { color: var(--sg-pink); }
.sg-cpath-wa--blue   i { color: #3B82F6; }
.sg-cpath-wa--green  i { color: #16a34a; }
.sg-cpath-wa--orange i { color: #F97316; }

/* Outcome box */
.sg-cpath-outcome {
  border-radius: 8px;
  padding: 14px 16px;
  margin: 20px 0 22px;
  margin-top: auto;
}
.sg-cpath-outcome p {
  font-size: 13px;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}
.sg-cpath-outcome--pink   { background: rgba(255,0,138,0.06);  }
.sg-cpath-outcome--pink   p { color: #b5006a; }
.sg-cpath-outcome--blue   { background: rgba(59,130,246,0.08); }
.sg-cpath-outcome--blue   p { color: #1d4ed8; }
.sg-cpath-outcome--green  { background: rgba(34,197,94,0.08);  }
.sg-cpath-outcome--green  p { color: #15803d; }
.sg-cpath-outcome--orange { background: rgba(249,115,22,0.08); }
.sg-cpath-outcome--orange p { color: #c2410c; }

/* Outline CTA button */
.sg-cpath-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--sg-dark);
  color: var(--sg-dark);
  border-radius: 50px;
  padding: 13px 24px;
  font-family: var(--sg-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--sg-transition);
  width: 100%;
}
.sg-cpath-btn-outline:hover {
  background: var(--sg-dark);
  color: var(--sg-white);
  text-decoration: none;
}

/* ── Legacy coaching-path (kept for compat) ──────── */
.sg-coaching-path {
  border: 1.5px solid var(--sg-border-dark);
  border-radius: var(--sg-radius);
  padding: 28px;
  height: 100%;
  transition: var(--sg-transition);
  position: relative;
  overflow: hidden;
}
.sg-coaching-path::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sg-pink);
}
.sg-coaching-path:hover {
  border-color: rgba(255,0,102,0.3);
  box-shadow: var(--sg-shadow);
  transform: translateY(-4px);
}
.sg-path-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.sg-path-icon.orange { background: rgba(255, 147, 38, 0.12); color: #FF9326; }
.sg-path-icon.blue   { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
.sg-path-icon.green  { background: rgba(34, 197, 94, 0.12);  color: #22C55E; }
.sg-path-icon.purple { background: rgba(168, 85, 247, 0.12); color: #A855F7; }

.sg-coaching-path h4 { font-size: 18px; font-weight: 800; color: var(--sg-dark); margin-bottom: 6px; }
.sg-coaching-path .path-subtitle { font-size: 13px; color: var(--sg-text-muted); margin-bottom: 16px; }
.sg-coaching-path ul { list-style: none; padding: 0; margin: 0 0 20px; }
.sg-coaching-path ul li {
  font-size: 13px;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid var(--sg-border-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sg-coaching-path ul li::before {
  content: '✓';
  color: var(--sg-pink);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sg-coaching-path ul li:last-child { border-bottom: none; }
.sg-path-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--sg-pink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sg-path-link:hover { gap: 8px; }
.sg-coachingPath { background-color:#F7F7F5 }

/* ══════════════════════════════════════════════════════════
   PODCASTS PAGE
══════════════════════════════════════════════════════════ */

/* ── Podcast Hero ────────────────────────────────────────── */
.sg-podcast-hero {
  background-color: var(--sg-dark);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.sg-podcast-hero-heading {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(36px, 5.5vw, 56px) !important;
  font-weight: 400 !important;
  color: var(--sg-white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.sg-podcast-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 620px;
  margin:0 auto 40px;
}
.sg-podcast-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.sg-podcast-hero .col-12 { text-align: center;
    margin: 0 auto;  }
.sg-podcast-hero-btn1 {
  padding: 14px 36px !important;
}
.sg-podcast-hero-btn2 {
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sg-white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.25s, background 0.25s;
  cursor: pointer;
}
.sg-podcast-hero-btn2:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  color: var(--sg-white);
  text-decoration: none;
}

/* ── Latest Episode Section ──────────────────────────────── */
.sg-latest-section { background: #fff; padding: 60px 0 48px; }
.sg-latest-heading {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  font-weight: 400 !important;
  color: var(--sg-dark);
  margin-bottom: 28px;
}
.sg-latest-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}
/* Thumbnail */
.sg-latest-thumb {
  position: relative;
  aspect-ratio: 16 / 8;
  background: #1a0a2e;
  overflow: hidden;
}
.sg-latest-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sg-latest-no-img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,#1a0a2e,#0A0E1A);
  display: flex; align-items: center; justify-content: center;
}
.sg-latest-no-img span {
  font-size: clamp(60px,8vw,120px);
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  letter-spacing: -2px;
}
.sg-latest-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}

/* ── Inline video player overlay ── */
.sg-latest-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: #000;
  display: none;
}
.sg-latest-video-wrap--active {
  display: block;
}
.sg-latest-video-wrap iframe,
.sg-latest-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* Close button inside video player */
.sg-latest-video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 7;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.sg-latest-video-close:hover {
  background: rgba(255,0,138,0.8);
  border-color: transparent;
}

.sg-latest-big-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sg-pink);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  box-shadow: 0 4px 24px rgba(255,0,138,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  padding-left: 4px;
  z-index: 3;
}
.sg-latest-big-play:hover { transform: translate(-50%,-50%) scale(1.1); box-shadow: 0 6px 32px rgba(255,0,138,0.6); }
.sg-latest-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  z-index: 2;
}
.sg-latest-ep-title {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(18px, 2.5vw, 30px) !important;
  font-weight: 400 !important;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.sg-latest-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sg-ep-num-badge {
  background: var(--sg-pink);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .08em;
  display: inline-flex; align-items: center;
}
.sg-ep-cat-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: .08em;
}
/* Custom audio player */
.sg-audio-player {
  display: flex; align-items: center; gap: 16px;
  background: #1a1a2e;
  padding: 16px 24px;
}
.sg-ap-play {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding-left: 2px;
  transition: border-color 0.2s;
}
.sg-ap-play:hover { border-color: #fff; }
.sg-ap-progress-wrap { flex: 1; padding: 8px 0; cursor: pointer; }
.sg-ap-track {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.sg-ap-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--sg-pink);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.sg-ap-thumb {
  position: absolute; top: 50%;
  width: 12px; height: 12px;
  background: var(--sg-pink);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  left: 0%;
  transition: left 0.1s linear;
}
.sg-ap-time { font-size: 13px; color: rgba(255,255,255,0.65); white-space: nowrap; flex-shrink: 0; font-variant-numeric: tabular-nums; }
.sg-ap-actions { display: flex; gap: 8px; flex-shrink: 0; }
.sg-ap-vol {
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); font-size: 18px;
  display: flex; align-items: center;
  transition: color 0.2s;
}
.sg-ap-vol:hover { color: #fff; }
.sg-latest-empty {
  background: rgba(0,0,0,0.04); border-radius: 12px;
  padding: 60px; text-align: center; color: #999;
}

/* ── Recent Episodes Section ─────────────────────────────── */
.sg-recent-section { background: #fff; padding: 20px 0 72px; }
.sg-recent-heading {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  font-weight: 400 !important;
  color: var(--sg-dark);
  margin-bottom: 28px;
}
.sg-episodes-list {
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.sg-ep-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  cursor: pointer;
  transition: background 0.2s;
}
.sg-ep-row:last-child { border-bottom: none; }
.sg-ep-row:hover, .sg-ep-row.sg-ep-active { background: rgba(255,0,138,0.03); }
.sg-ep-hidden { display: none !important; }
/* Thumbnail */
.sg-ep-thumb-wrap {
  position: relative;
  flex-shrink: 0;
  width: 110px; height: 78px;
  border-radius: 8px;
  overflow: hidden;
}
.sg-ep-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sg-ep-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#1a0a2e,#0A0E1A);
  display: flex; align-items: center; justify-content: center;
}
.sg-ep-thumb-placeholder span {
  font-size: 14px; font-weight: 900;
  color: rgba(255,255,255,0.2);
  letter-spacing: -1px;
}
.sg-ep-dur-badge {
  position: absolute; bottom: 5px; left: 5px;
  background: rgba(0,0,0,0.72);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: .03em;
}
.sg-ep-play-overlay {
  position: absolute; inset: 0;
  background: rgba(255,0,138,0.55);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  opacity: 0;
  transition: opacity 0.2s;
  padding-left: 3px;
}
.sg-ep-row:hover .sg-ep-play-overlay { opacity: 1; }
/* Episode info */
.sg-ep-info { flex: 1; min-width: 0; }
.sg-ep-meta-row { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.sg-ep-num-label { font-size: 12px; font-weight: 700; color: var(--sg-pink); }
.sg-ep-meta-dot  { font-size: 12px; color: #aaa; }
.sg-ep-cat-label { font-size: 11px; font-weight: 700; color: #999; letter-spacing: .08em; }
.sg-ep-title { font-size: 15px; font-weight: 700; color: var(--sg-dark); margin-bottom: 4px; line-height: 1.3; }
.sg-ep-excerpt { font-size: 13px; color: #888; line-height: 1.5; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* Right side */
.sg-ep-right { flex-shrink: 0; text-align: right; }
.sg-ep-watch { display: block; font-size: 13px; font-weight: 600; color: var(--sg-dark); }
.sg-ep-date  { display: block; font-size: 12px; color: #aaa; margin-top: 3px; white-space: nowrap; }
/* View all button */
.sg-view-all-ep-btn {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.2);
  color: var(--sg-dark);
  font-size: 14px; font-weight: 600;
  padding: 13px 48px;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.sg-view-all-ep-btn:hover { border-color: var(--sg-dark); background: rgba(0,0,0,0.03); }
@media (max-width: 576px) {
  .sg-ep-right { display: none; }
  .sg-ep-excerpt { display: none; }
  .sg-ep-row { gap: 12px; padding: 14px 16px; }
  .sg-latest-overlay { padding: 20px; }
}

.sg-featured-episode {
  border-radius: var(--sg-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--sg-dark-3);
}
.sg-featured-episode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.sg-featured-episode-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 40%, transparent);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.sg-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: var(--sg-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: var(--sg-transition);
  cursor: pointer;
}
.sg-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--sg-pink-hover); }
.sg-featured-episode .episode-info h3 { color: white; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.sg-featured-episode .episode-info p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }

.sg-episode-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sg-border-dark);
  transition: var(--sg-transition);
  cursor: pointer;
}
.sg-episode-row:hover { background: var(--sg-gray); border-radius: var(--sg-radius-sm); padding-left: 8px; }
.sg-episode-thumb {
  width: 80px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
}
.sg-episode-row h5 { font-size: 14px; font-weight: 700; color: var(--sg-dark); margin-bottom: 4px; line-height: 1.3; }
.sg-episode-row .ep-meta { font-size: 12px; color: var(--sg-text-muted); }
.sg-episode-play {
  margin-left: auto;
  width: 36px;
  height: 36px;
  background: rgba(255,0,102,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-pink);
  font-size: 12px;
  flex-shrink: 0;
}

.sg-video-card {
  border-radius: var(--sg-radius);
  overflow: hidden;
  position: relative;
  background: var(--sg-dark-3);
  transition: var(--sg-transition);
}
.sg-video-card:hover { transform: translateY(-4px); box-shadow: var(--sg-shadow); }
.sg-video-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: 0.75;
  transition: var(--sg-transition);
}
.sg-video-card:hover img { opacity: 0.9; }
.sg-video-info { padding: 16px; background: var(--sg-white); }
.sg-video-info h5 { font-size: 14px; font-weight: 700; color: var(--sg-dark); margin-bottom: 4px; line-height: 1.35; }
.sg-video-info .vid-meta { font-size: 12px; color: var(--sg-text-muted); }
.sg-video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(255,0,102,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

/* ── Video Library Section ───────────────────────────────── */
.sg-vidlib-section {
  background: #f8f8fb;
  padding: 72px 0 80px;
}
/* Header row */
.sg-vidlib-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.sg-vidlib-heading {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(28px, 3.5vw, 44px) !important;
  font-weight: 400 !important;
  color: var(--sg-dark);
  margin: 0;
}
/* Filter tabs */
.sg-vidlib-filters {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.sg-vidlib-filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #888;
  transition: background 0.2s, color 0.2s;
}
.sg-vidlib-filter-btn:hover { color: var(--sg-dark); }
.sg-vidlib-filter-btn.active {
  background: var(--sg-dark);
  color: #fff;
}
/* 3-column grid */
.sg-vidlib-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .sg-vidlib-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 576px) { .sg-vidlib-grid { grid-template-columns: 1fr; } }
/* Video card */
.sg-vid-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sg-vid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
/* Thumbnail */
.sg-vid-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a0a2e;
}
.sg-vid-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.sg-vid-card:hover .sg-vid-thumb img { transform: scale(1.04); }
.sg-vid-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#1a0a2e,#0A0E1A);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(255,255,255,0.15);
}
.sg-vid-dur {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .03em;
}
.sg-vid-play-btn {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.28);
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 44px;
  color: #fff;
  padding-left: 4px;
}
.sg-vid-card:hover .sg-vid-play-btn { opacity: 1; }
/* Card body */
.sg-vid-body { padding: 18px 20px 20px; }
.sg-vid-cat-badge {
  display: inline-block;
  background: var(--sg-pink);
  color: #fff;
  font-size: 10px; font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.sg-vid-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sg-dark);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sg-vid-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sg-vid-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #aaa;
}
.sg-vid-views { display: flex; align-items: center; gap: 4px; }
.sg-vid-meta-dot { font-size: 10px; }

/* ── Video Popup ─────────────────────────────────────────── */
.sg-vid-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.sg-vid-popup.active { opacity: 1; visibility: visible; }
.sg-vid-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
}
.sg-vid-popup-box {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.3s;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.sg-vid-popup.active .sg-vid-popup-box { transform: scale(1) translateY(0); }
.sg-vid-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: none; cursor: pointer;
  color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.sg-vid-popup-close:hover { background: rgba(0,0,0,0.8); }
.sg-vid-popup-player {
  aspect-ratio: 16 / 9;
  background: #000;
  width: 100%;
}
.sg-vid-popup-player iframe,
.sg-vid-popup-player video {
  width: 100%; height: 100%;
  display: block;
  border: none;
}
.sg-vid-popup-info {
  padding: 24px 28px 28px;
}
.sg-vid-popup-title {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(18px,2.2vw,26px) !important;
  font-weight: 400 !important;
  color: var(--sg-dark);
  margin-bottom: 8px;
}
.sg-vid-popup-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Podcast application form (legacy — kept for safety) */
.sg-podcast-apply {
  background: linear-gradient(135deg, #0A0E1A 0%, #1a0a2e 100%);
  padding: 60px;
  border-radius: var(--sg-radius-lg);
  position: relative;
  overflow: hidden;
}
.sg-podcast-apply h2 { color: white; font-size: 32px; margin-bottom: 8px; }
.sg-podcast-apply h2 span { color: var(--sg-pink); }
.sg-podcast-apply p { color: var(--sg-text-light); margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════
   APPLY TO BE ON THE SHOW SECTION
══════════════════════════════════════════════════════════ */
.sg-apply-section {
  padding: 100px 0;
  background-color: var(--sg-dark);
  background-image: url('../images/apply-bg-pattern.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
/* Dark overlay so text stays readable over the pattern */
.sg-apply-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.82);
  pointer-events: none;
  z-index: 0;
}
.sg-apply-section > .container {
  position: relative;
  z-index: 1;
}

/* 2-column layout — left slightly wider */
.sg-apply-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ══ LEFT COLUMN ══ */
.sg-apply-heading {
  font-family: var(--sg-font-heading);
  font-size: clamp(36px, 4.2vw, 56px);
  color: var(--sg-white);
  line-height: 1.13;
  margin: 0 0 14px;
}
.sg-apply-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--sg-pink);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.sg-apply-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--sg-text-light);
  margin: 0 0 14px;
}
.sg-apply-body:last-of-type {
  margin-bottom: 40px;
}

/* Contact items */
.sg-apply-contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
  display:none;
}
.sg-apply-contact-item:last-child { margin-bottom: 0; }

.sg-apply-contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,0,138,0.14);
  border: 1px solid rgba(255,0,138,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-pink);
  font-size: 18px;
  margin-top: 2px;
}

.sg-apply-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sg-apply-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sg-text-muted);
}
.sg-apply-contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--sg-white);
  text-decoration: none;
  transition: color 0.2s;
}
.sg-apply-contact-value:hover { color: var(--sg-pink); }
.sg-apply-contact-desc {
  font-size: 14px;
  color: var(--sg-text-light);
  line-height: 1.6;
  margin: 0 0 10px;
}
.sg-apply-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sg-pink);
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s;
}
.sg-apply-cta-link:hover { gap: 10px; opacity: 0.85; color: var(--sg-pink); }

/* ══ RIGHT COLUMN — Form Card ══ */
.sg-apply-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

.sg-apply-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sg-apply-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sg-apply-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}
.sg-apply-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--sg-font);
  color: #111827;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.sg-apply-input:focus {
  border-color: var(--sg-pink);
  box-shadow: 0 0 0 3px rgba(255,0,138,0.10);
  background: #ffffff;
}
.sg-apply-input::placeholder { color: #b0b7c3; }
.sg-apply-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Submit */
.sg-apply-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}

/* Feedback message */
.sg-apply-form-note {
  font-size: 14px;
  margin: 0;
  text-align: center;
  min-height: 18px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .sg-apply-wrap { grid-template-columns: 1fr; gap: 48px; }
  .sg-apply-section { padding: 72px 0; }
}
@media (max-width: 576px) {
  .sg-apply-form-card { padding: 28px 22px; }
  .sg-apply-heading { font-size: 34px; }
}

/* ══════════════════════════════════════════════════════════
   MERCHANDISE PAGE
══════════════════════════════════════════════════════════ */
.sg-product-card {
  border: 1px solid var(--sg-border-dark);
  border-radius: var(--sg-radius);
  overflow: hidden;
  transition: var(--sg-transition);
  background: var(--sg-white);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sg-product-card:hover {
  box-shadow: var(--sg-shadow);
  transform: translateY(-4px);
}
.sg-product-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--sg-gray);
  position: relative;
}
.sg-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sg-product-card:hover .sg-product-img img { transform: scale(1.06); }
.sg-product-badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sg-pink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sg-product-add-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  background: var(--sg-dark);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--sg-font);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--sg-transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sg-product-card:hover .sg-product-add-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.sg-product-info { padding: 16px 18px 18px; flex: 1; }
.sg-product-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-pink);
  margin-bottom: 6px;
  display: block;
}
.sg-product-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.sg-product-name {
  font-family: var(--sg-font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--sg-dark);
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
.sg-product-price-tag {
  font-size: 22px;
  font-weight: 400;
  color: var(--sg-dark);
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
  font-family: var(--sg-font-heading);
}

/* ── Trust strip (merchandise page) ─────────────────────── */
.sg-trust-strip {
  background: var(--sg-gray);
  padding: 40px 0;
  border-top: 1px solid var(--sg-border-dark);
  border-bottom: 1px solid var(--sg-border-dark);
}
.sg-trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.sg-trust-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sg-trust-strip-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 0, 138, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--sg-pink);
  flex-shrink: 0;
}
.sg-trust-strip-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sg-trust-strip-body strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--sg-dark);
  line-height: 1.3;
}
.sg-trust-strip-body span {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .sg-trust-strip-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
}

.sg-shipping-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--sg-border-dark);
  border-radius: var(--sg-radius);
  background: var(--sg-white);
}
.sg-shipping-icon {
  width: 44px;
  height: 44px;
  background: var(--sg-gray-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.sg-shipping-card h5 { font-size: 14px; font-weight: 700; color: var(--sg-dark); margin-bottom: 4px; }
.sg-shipping-card p { font-size: 13px; color: #666; margin: 0; }

/* ══════════════════════════════════════════════════════════
   TOOLS & FRAMEWORKS PAGE
══════════════════════════════════════════════════════════ */

/* Section wrapper */
.sg-frameworks-section {
  background: #f5f6f8;
  padding: 72px 0 80px;
}

/* Card */
.sg-framework-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 32px 28px 28px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}
.sg-framework-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

/* Icon box */
.sg-framework-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1a1a2e;
  margin-bottom: 22px;
  flex-shrink: 0;
}

/* Custom image icon */
.sg-framework-icon--img { background: transparent; padding: 0; overflow: hidden; }
.sg-fw-icon-img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Title */
.sg-framework-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--sg-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

/* Optional pink sub-label */
.sg-framework-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--sg-pink);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Description */
.sg-framework-desc {
  font-size: 15px;
  color: #5a5f72;
  line-height: 1.68;
  margin: 0;
}

/* ── Tools CTA Card ──────────────────────────────────────── */
.sg-tools-cta-section {
  background: #fff;
  padding: 80px 0 ;
}

.sg-tools-cta-card {
  background: linear-gradient(135deg, #0d1235 0%, #120d30 45%, #1c0a38 100%);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Chevron / arrow pattern overlay */
.sg-tools-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='16,12 36,36 16,60' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1.5' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpolyline points='40,12 60,36 40,60' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1.5' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

.sg-tools-cta-card > * { position: relative; z-index: 1; }

.sg-tools-cta-heading {
  font-family: var(--sg-heading-font);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  max-width: 580px;
  margin: 0 auto 20px;
}

.sg-tools-cta-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 40px;
}

.sg-tools-cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Ensure outline button is fully white on this dark card */
.sg-tools-cta-card .sg-btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  font-weight: 600;
}
.sg-tools-cta-card .sg-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (max-width: 768px) {
  .sg-tools-cta-card { padding: 52px 28px; border-radius: 16px; }
  .sg-tools-cta-btns { flex-direction: column; align-items: stretch; }
  .sg-tools-cta-btns .sg-btn { justify-content: center; text-align: center; }
}

/* ── 3-Step Process Section ──────────────────────────────── */
.sg-3step-section {
  background: #f5f6f8;
  padding: 80px 0 88px;
}
.sg-3step-header { margin-bottom: 56px; }
.sg-3step-heading {
  font-family: var(--sg-heading-font);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 400;
  color: var(--sg-dark);
  margin-bottom: 14px;
  line-height: 1.15;
}
.sg-3step-sub {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
/* Row: step — arrow — step — arrow — step */
.sg-3step-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.sg-3step-item {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 8px;
}
/* Large pink number */
.sg-3step-num {
  font-family: var(--sg-heading-font);
  font-size: clamp(72px, 9vw, 108px);
  font-weight: 400;
  color: var(--sg-pink);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.sg-3step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sg-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.sg-3step-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
/* Curved arrow between steps */
.sg-3step-arrow {
  flex-shrink: 0;
  width: 110px;
  align-self: flex-start;
  margin-top: 42px;
  opacity: 0.82;
}
@media (max-width: 768px) {
  .sg-3step-row { flex-direction: column; align-items: center; gap: 40px; }
  .sg-3step-arrow { display: none; }
  .sg-3step-item { max-width: 340px; padding: 0; }
  .sg-3step-num { font-size: 72px; }
}

/* Legacy step selectors (kept for backward compat) */
.sg-steps { display: flex; gap: 40px; align-items: flex-start; }
.sg-step  { text-align: center; flex: 1; position: relative; }
.sg-step-num { font-size: 80px; font-weight: 900; color: var(--sg-pink); opacity: 0.15; line-height: 1; display: block; margin-bottom: -20px; }
.sg-step h4 { font-size: 17px; font-weight: 800; color: var(--sg-dark); margin-bottom: 8px; }
.sg-step p  { font-size: 14px; color: #666; line-height: 1.65; margin: 0; }

/* ── The Leader's Beliefs ───────────────────────────────── */
.sg-beliefs-section { background: #fff; }
.sg-beliefs-heading {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  font-weight: 400 !important;
  color: var(--sg-dark);
  margin: 0;
}
/* Outer wrapper — pink border, gradient right bg */
.sg-beliefs-outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--sg-pink);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce8f3 0%, #fdf3fa 60%, #fde8f4 100%);
}
/* Left — white card */
.sg-beliefs-built {
  background: #ffffff;
  border-radius: 22px 0 0 22px;
  padding: 40px 36px;
  margin: 15px;
}
/* Right — shows gradient from outer */
.sg-beliefs-not {
  padding: 40px 36px;
}
/* Column header row */
.sg-beliefs-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.sg-beliefs-col-title {
  font-family: var(--sg-font-heading);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400 !important;
  color: var(--sg-dark);
  line-height: 1;
}
.sg-beliefs-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.sg-beliefs-arrow-pink { color: var(--sg-pink); }
/* Items list */
.sg-beliefs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sg-beliefs-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
}
.sg-beliefs-item-built { color: var(--sg-dark); }
.sg-beliefs-item-not   { color: #999; }
/* Icons */
.sg-beliefs-icon-built {
  font-size: 22px;
  color: var(--sg-pink);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}
.sg-beliefs-icon-not {
  font-size: 20px;
  color: #bbb;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .sg-beliefs-outer { grid-template-columns: 1fr; }
  .sg-beliefs-built { border-right: none; border-radius: 22px 22px 0 0; border-bottom: 2px solid var(--sg-pink); }
  .sg-beliefs-not   { border-radius: 0 0 22px 22px; }
}

/* Legacy classes kept for compat */
.sg-beliefs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sg-belief-col { background: var(--sg-white); border: 1px solid var(--sg-border-dark); border-radius: var(--sg-radius); padding: 28px; }

/* ── Leadership Is Paid For ──────────────────────────────── */
.sg-paid-section {
  background-color: var(--sg-dark);
  background-image:
    linear-gradient(45deg,  rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  padding: 100px 0;
}
.sg-paid-heading {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(30px, 4vw, 58px) !important;
  font-weight: 400 !important;
  color: var(--sg-white);
  line-height: 1.1;
  margin-bottom: 32px;
}
.sg-paid-body-p {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 20px;
}
.sg-paid-body-p:last-child { margin-bottom: 0; }
.sg-paid-img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.sg-paid-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sg-paid-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,0.2);
}

/* ── About Page Bottom CTA ───────────────────────────────── */
.sg-about-cta {
  background: linear-gradient(135deg, #b8c6e8 0%, #dfc0d8 50%, #f5c8e8 100%);
  padding: 80px 0;
}
.sg-about-cta-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 64px 72px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 48px rgba(0,0,0,0.06);
}
.sg-about-cta-heading {
  font-family: var(--sg-font-heading) !important;
  font-size: clamp(28px, 3.8vw, 52px) !important;
  font-weight: 400 !important;
  color: var(--sg-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.sg-about-cta-body {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 36px;
}
.sg-about-cta-btn {
  padding: 16px 52px !important;
  border-radius: 50px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
@media (max-width: 576px) {
  .sg-about-cta-card { padding: 44px 28px; }
  .sg-about-cta-btn  { width: 100%; text-align: center; }
}

/* Timeline */
.sg-timeline {
  display: flex;
  gap: 0;
  border-radius: var(--sg-radius);
  overflow: hidden;
  border: 1px solid var(--sg-border-dark);
}
.sg-timeline-item {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid var(--sg-border-dark);
  transition: var(--sg-transition);
  cursor: pointer;
}
.sg-timeline-item:last-child { border-right: none; }
.sg-timeline-item:hover, .sg-timeline-item.active {
  background: rgba(255,0,102,0.05);
}
.sg-timeline-item.active { border-bottom: 3px solid var(--sg-pink); }
.sg-timeline-city { font-size: 14px; font-weight: 700; color: var(--sg-dark); margin-bottom: 4px; }
.sg-timeline-label { font-size: 11px; color: var(--sg-text-muted); }
.sg-timeline-bar {
  height: 4px;
  background: var(--sg-pink);
  border-radius: 2px;
  margin: 8px auto 0;
  transition: var(--sg-transition);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#sg-footer {
  background: var(--sg-dark);
  padding: 60px 0 0;
  border-top: 1px solid var(--sg-border);
}
.sg-footer-logo { margin-bottom: 16px; }
.sg-footer-tagline {
  font-size: 13px;
  color: var(--sg-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.sg-footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-text-muted);
  margin-bottom: 16px;
}
.sg-footer-links { list-style: none; padding: 0; margin: 0; }
.sg-footer-links li { margin-bottom: 10px; }
.sg-footer-links a {
  color: var(--sg-text-light);
  font-size: 13px;
  font-weight: 500;
  transition: var(--sg-transition);
  text-decoration: none;
}
.sg-footer-links a:hover { color: var(--sg-white); }

.sg-footer-bottom {
  border-top: 1px solid var(--sg-border);
  padding: 24px 0;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sg-footer-copy { font-size: 13px; color: var(--sg-text-muted); }
.sg-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sg-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sg-text-muted);
  font-size: 14px;
  transition: var(--sg-transition);
  text-decoration: none;
}
.sg-social-link:hover {
  background: var(--sg-pink);
  color: white;
}

/* ══════════════════════════════════════════════════════════
   POPUP — Newsletter
══════════════════════════════════════════════════════════ */
.sg-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sg-popup-overlay.active { opacity: 1; visibility: visible; }

/* Box */
.sg-popup-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 56px 48px 48px;
  width: 100%;
  max-width: 560px;
  position: relative;
  text-align: center;
  overflow: hidden;
  transform: scale(0.94) translateY(14px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.20);
}
.sg-popup-overlay.active .sg-popup-box {
  transform: scale(1) translateY(0);
}

/* Chevron / diamond pattern inside box */
.sg-popup-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(140,165,220,0.10) 25%, transparent 25%),
    linear-gradient(225deg, rgba(140,165,220,0.10) 25%, transparent 25%),
    linear-gradient(315deg, rgba(140,165,220,0.10) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(140,165,220,0.10) 25%, transparent 25%);
  background-size: 56px 56px;
  background-position: 0 0, 0 28px, 28px -28px, -28px 0;
  pointer-events: none;
  z-index: 0;
  background:none !important;
}
.sg-popup-box > * { position: relative; z-index: 1; }

/* Close button */
.sg-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #888;
  transition: color 0.2s;
  z-index: 2;
  padding: 0;
}
.sg-popup-close:hover { color: var(--sg-dark); }

/* Heading */
.sg-popup-heading {
  font-family: var(--sg-font-heading);
  font-size: clamp(30px, 5vw, 42px);
  color: var(--sg-dark);
  margin: 0 0 14px;
  line-height: 1.15;
}

/* Tagline */
.sg-popup-tagline {
  font-size: 16px;
  font-weight: 500;
  color: var(--sg-dark);
  margin: 0 0 18px;
  line-height: 1.5;
}

/* Body */
.sg-popup-body {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Form */
.sg-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sg-popup-input {
  width: 100%;
  padding: 15px 18px;
  font-size: 15px;
  font-family: var(--sg-font);
  color: #111;
  background: #f5f5f5;
  border: 1.5px solid #f0f0f0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s;
  box-sizing: border-box;
  text-align: left;
}
.sg-popup-input:focus {
  border-color: var(--sg-pink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,0,138,0.08);
}
.sg-popup-input::placeholder { color: #b0b7c3; }

/* Submit button */
.sg-popup-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--sg-pink);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--sg-font);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s;
  letter-spacing: 0.01em;
}
.sg-popup-submit:hover { background: var(--sg-pink-hover); transform: translateY(-1px); }
.sg-popup-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Feedback message */
.sg-popup-msg {
  font-size: 13px;
  margin: 10px 0 0;
  min-height: 18px;
}

/* Mobile */
@media (max-width: 480px) {
  .sg-popup-box { padding: 44px 22px 36px; border-radius: 10px; }
  .sg-popup-heading { font-size: 28px; }
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.animate-fade-up   { animation: fadeInUp 0.7s ease both; }
.animate-fade-left { animation: fadeInLeft 0.7s ease both; }
.animate-fade-right{ animation: fadeInRight 0.7s ease both; }
.animate-float     { animation: floatY 4s ease-in-out infinite; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll-triggered animations */
.sg-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sg-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.sg-reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.sg-reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.sg-reveal-left.revealed,
.sg-reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* Gradient heading */
.sg-gradient-text {
  background: linear-gradient(135deg, var(--sg-pink) 0%, #ff6b9d 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

/* ══════════════════════════════════════════════════════════
   PAGE BODY OFFSET (sticky header)
══════════════════════════════════════════════════════════ */
body { padding-top: 0; }

/* ══════════════════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .sg-nav-toggle { display: flex; }

  .sg-nav-wrapper {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--sg-dark-2);
    border-left: 1px solid var(--sg-border);
    transition: var(--sg-transition);
    z-index: 999;
    overflow-y: auto;
    padding: 80px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .sg-nav-wrapper.open { right: 0; }

  .sg-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .sg-nav > li > a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: var(--sg-radius-sm);
  }
  .sg-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    border-radius: var(--sg-radius-sm);
    margin-top: 4px;
    display: none;
  }
  .sg-nav > li.open .sg-dropdown { display: block; }

  .sg-nav-actions { display: none; }

  .sg-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
  }
  .sg-nav-overlay.active { display: block; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .sg-hero  { padding: 100px 0 60px; min-height: auto; }
  .sg-hero-image { margin-top: 40px; }
  .sg-hero-image img { max-width: 100%; margin: 0 auto; }
  .sg-hero-smiley { top: -8px; right: 4px; width: 40px; height: 40px; font-size: 18px; }
  .sg-hero-stat   { right: 0; left: 0; bottom: -20px; min-width: auto; justify-content: center; }
  .sg-section { padding: 60px 0; }
  .sg-section-lg { padding: 60px 0; }
  .sg-beliefs { grid-template-columns: 1fr; }
  .sg-steps { flex-direction: column; gap: 24px; }
  .sg-timeline { flex-wrap: wrap; }
  .sg-timeline-item { flex: 0 0 33.33%; }
  .sg-product-banner { flex-direction: column; padding: 28px; }
  .sg-podcast-apply { padding: 32px; }
  .sg-apply-section { padding: 64px 0; }
  .sg-footer-bottom { flex-direction: column; text-align: center; }
  .sg-email-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .sg-hero h1 { font-size: 32px; }
  .sg-page-hero h1 { font-size: 28px; }
  .sg-timeline-item { flex: 0 0 50%; }

  .sg-about-hero { padding: 80px 0 0; }
  .sg-about-hero-img-wrap { aspect-ratio: 16 / 9; border-radius: 12px 12px 0 0; }
}

/* ══════════════════════════════════════════════════════════
   MERCHANDISE PAGE — EXTENDED STYLES
══════════════════════════════════════════════════════════ */

/* Cart badge pill on hero button */
.sg-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* Floating cart bar animation */
#sg-merch-cart-bar {
  animation: slideUp 0.35s ease both;
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity:0; }
  to   { transform: translateX(-50%) translateY(0);    opacity:1; }
}

/* Toast transitions */
#sg-merch-toast {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Product card hover on add-btn overlay */
.sg-product-img button:hover { background: var(--sg-pink) !important; }

/* Anchor scroll offset for sticky header */
#sg-shop { scroll-margin-top: 80px; }

/* Merch hero stats on mobile */
@media (max-width: 575px) {
  #sg-merch-cart-bar { width: calc(100% - 32px); left: 16px; transform: none; }
  #sg-merch-cart-bar.shown { transform: none; }
}

/* ══════════════════════════════════════════════════════════
   WOOCOMMERCE BASIC RESETS (Merchandise)
══════════════════════════════════════════════════════════ */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { display: none; }
.woocommerce ul.products { margin: 0; padding: 0; list-style: none; }
.woocommerce ul.products li.product { margin: 0 !important; padding: 0 !important; }
.woocommerce a.button, .woocommerce button.button {
  background: var(--sg-pink) !important;
  color: white !important;
  border-radius: 50px !important;
  font-family: var(--sg-font) !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 12px 24px !important;
}

/* ══════════════════════════════════════════════════════════
   ASSESSMENT PAGE — HERO & FIND YOUR PATH
══════════════════════════════════════════════════════════ */

/* Split heading (white + pink) */
.sg-assess-hero-heading {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--sg-white);
  margin-bottom: 20px;
}

/* Find Your Path section heading */
.sg-assess-path-heading {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--sg-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

/* Sub text below heading */
.sg-assess-path-sub {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* Intro card (left border, light bg) */
.sg-assess-intro-card {
  background: var(--sg-gray);
  border-radius: var(--sg-radius);
  border-left: 4px solid var(--sg-pink);
  padding: 28px 32px;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 680px;
}
.sg-assess-intro-card p {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.7;
}
.sg-assess-intro-card p + p { margin-top: 12px; }

/* Quiz trigger button */
.sg-assess-quiz-btn {
  font-size: 15px;
  padding: 14px 40px;
  border-radius: 50px;
}

/* Quiz container wrapper */
.sg-assess-quiz-wrap {
  max-width: 900px;
  margin: 0 auto;    
  padding: 2rem 4rem;
  border-radius: 16px;
  background:linear-gradient(to right, rgb(179 198 232 / 49%) 0%, rgb(200 182 232 / 26%) 50%, rgb(232 184 204 / 43%) 100%);
}

/* ══════════════════════════════════════════════════════════
   QUIZ — LIGHT MODE VARIANT (Assessment page)
══════════════════════════════════════════════════════════ */

.sg-quiz-screen--light {
  background: #f7f7f9;
  border: 1px solid var(--sg-border-dark);
  color: var(--sg-dark);
}

/* Progress */
.sg-qprogress--light .sg-qprogress-label { color: #666; }
.sg-qprogress--light .sg-qprogress-bar   { background: rgba(0,0,0,0.09); }

/* Question text */
.sg-qtext--light { color: var(--sg-dark); }

/* Option buttons */
.sg-qopt--light {
  background: var(--sg-white);
  border-color: rgba(0,0,0,0.1);
  color: var(--sg-dark);
}
.sg-qopt--light:hover {
  border-color: rgba(255,0,138,0.45);
  background: rgba(255,0,138,0.04);
  color: var(--sg-dark);
  transform: translateY(-2px);
}
.sg-qopt--light.selected {
  border-color: var(--sg-pink);
  background: rgba(255,0,138,0.08);
  color: var(--sg-dark);
}
.sg-qopt--light:hover .sg-qopt-letter,
.sg-qopt--light.selected .sg-qopt-letter {
  background: var(--sg-pink);
  color: var(--sg-white);
}

/* Footer bar */
.sg-qfooter--light {
  border-top-color: rgba(0,0,0,0.08);
}
.sg-qback--light,
.sg-qclose--light {
  color: #999;
}
.sg-qback--light:hover  { color: var(--sg-dark); }
.sg-qclose--light:hover { color: var(--sg-pink); }

/* ══════════════════════════════════════════════════════════
   QUIZ RESULT — NEW DESIGN (Assessment + Homepage)
══════════════════════════════════════════════════════════ */

.sg-qr-new {
  padding: 36px 0 8px;
  text-align: center;
}

/* "YOUR RECOMMENDATION" pill badge */
.sg-qr-rec-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,0,138,0.1);
  border: 1px solid rgba(255,0,138,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--sg-pink);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Recommendation card */
.sg-qr-rec-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--sg-white);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 36px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
@media (max-width: 600px) {
  .sg-qr-rec-card { flex-direction: column; text-align: center; }
}

/* Icon box */
.sg-qr-rec-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255,0,138,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--sg-pink);
}

/* Body text */
.sg-qr-rec-body {
  flex: 1;
}
.sg-qr-rec-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--sg-dark);
  margin-bottom: 5px;
}
.sg-qr-rec-body p {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* "Book Call" outline button */
.sg-qr-book-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: none;
  border: 2px solid var(--sg-pink);
  border-radius: 50px;
  font-family: var(--sg-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--sg-pink);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--sg-transition);
}
.sg-qr-book-btn:hover {
  background: var(--sg-pink);
  color: var(--sg-white);
}

/* "Your Recommended Paths" heading */
.sg-qr-paths-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--sg-dark);
  margin-bottom: 8px;
}
/* Homepage dark context override */
#sg-quiz-container .sg-qr-paths-title { color: var(--sg-white); }

/* Sub text */
.sg-qr-paths-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}
#sg-quiz-container .sg-qr-paths-sub { color: var(--sg-text-muted); }
#sg-quiz-container .sg-qr-paths-sub strong { color: var(--sg-white); }

/* Path cards — 2-column grid */
.sg-qr-path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
  text-align: left;
}
@media (max-width: 600px) {
  .sg-qr-path-cards { grid-template-columns: 1fr; }
}

/* Individual path card */
.sg-qr-path-card {
  background: var(--sg-white);
  border-radius: 16px;
  padding: 24px 22px;
  border: 2px solid var(--sg-border-dark);
  transition: var(--sg-transition);
}
.sg-qr-path-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* PRIMARY FIT — gradient border */
.sg-qr-path-primary {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--sg-white), var(--sg-white)) padding-box,
    linear-gradient(135deg, var(--sg-pink), #7c3aed) border-box;
}

/* Label */
.sg-qr-path-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--sg-pink);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sg-qr-path-card:not(.sg-qr-path-primary) .sg-qr-path-label {
  color: #999;
}

/* Path name */
.sg-qr-path-name {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: var(--sg-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

/* "View Details" link */
.sg-qr-path-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sg-pink);
  text-decoration: none;
  transition: gap 0.2s;
}
.sg-qr-path-link:hover {
  gap: 10px;
  color: var(--sg-pink);
  text-decoration: none;
}

/* "RETAKE ASSESSMENT" text button */
.sg-qr-retake-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sg-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
  text-transform: uppercase;
  padding: 8px 0;
  transition: color 0.2s;
}
.sg-qr-retake-btn:hover { color: var(--sg-pink); }

/* ══════════════════════════════════════════════════════════
   PRE-QUIZ LEAD CAPTURE MODAL
══════════════════════════════════════════════════════════ */

.sg-qlead-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sg-qlead-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sg-qlead-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sg-qlead-overlay.active .sg-qlead-modal {
  transform: translateY(0) scale(1);
}

/* Dark header */
.sg-qlead-header {
  background: linear-gradient(135deg, #0d1235 0%, #120d30 50%, #1c0a38 100%);
  padding: 44px 40px 36px;
  text-align: center;
}
.sg-qlead-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 138, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #FF008A;
  border: 1px solid rgba(255, 0, 138, 0.25);
}
.sg-qlead-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.sg-qlead-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
  max-width: 340px;
  margin-inline: auto;
}

/* Pink accent line */
.sg-qlead-header::after {
  content: '';
  display: block;
  height: 3px;
  background: #FF008A;
  margin: 28px -40px -36px;
}

/* Form body */
.sg-qlead-body {
  padding: 36px 40px 40px;
}
.sg-qlead-field {
  margin-bottom: 20px;
}
.sg-qlead-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.sg-qlead-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e4ef;
  border-radius: 12px;
  font-size: 15px;
  color: #1a1a2e;
  background: #f8f9fb;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.sg-qlead-input:focus {
  border-color: #FF008A;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 0, 138, 0.1);
}
.sg-qlead-input::placeholder { color: #aab0c0; }

.sg-qlead-error {
  font-size: 13px;
  color: #ef4444;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.sg-qlead-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 15px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.sg-qlead-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sg-qlead-note i { color: #22c55e; font-size: 13px; }

/* Mobile */
@media (max-width: 520px) {
  .sg-qlead-header { padding: 36px 28px 28px; }
  .sg-qlead-header::after { margin: 24px -28px -28px; }
  .sg-qlead-body { padding: 28px 28px 32px; }
  .sg-qlead-title { font-size: 22px; }
}

/* ── Quiz greeting strip ── */
.sg-quiz-greet {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 138, 0.07);
  border: 1px solid rgba(255, 0, 138, 0.18);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #1a1a2e;
  margin-bottom: 20px;
}
.sg-quiz-greet i { color: #FF008A; font-size: 18px; }
/* Dark context (homepage quiz) */
#sg-quiz-container .sg-quiz-greet {
  color: rgba(255,255,255,0.85);
  background: rgba(255,0,138,0.1);
}

/* ── Email confirmation strip on result ── */
.sg-qr-email-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 13px;
  color: #15803d;
  margin-bottom: 20px;
  margin-right:10px;
}
.sg-qr-email-note i { color: #22c55e; font-size: 16px; }

/* ══════════════════════════════════════════════════════════
   QUIZ RESULT DETAIL POPUP
══════════════════════════════════════════════════════════ */

/* Overlay */
.sg-rpop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sg-rpop-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal card */
.sg-rpop-modal {
  background: var(--sg-white);
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}
.sg-rpop-overlay.active .sg-rpop-modal {
  transform: translateY(0) scale(1);
}

/* Close button */
.sg-rpop-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  color: #888;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
  flex-shrink: 0;
}
.sg-rpop-close:hover { background: var(--sg-pink); color: #fff; }

/* Header */
.sg-rpop-header {
  padding: 40px 40px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* Badge */
.sg-rpop-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.sg-rpop-badge--primary   { background: var(--sg-pink); color: #fff; }
.sg-rpop-badge--secondary { background: var(--sg-dark); color: #fff; }

/* Title */
.sg-rpop-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--sg-dark);
  margin: 0 0 12px;
  line-height: 1.15;
  padding-right: 40px; /* avoid overlap with close btn */
}

/* Tagline */
.sg-rpop-tagline {
  font-size: 15px;
  color: #666;
  font-style: italic;
  margin: 0;
  line-height: 1.65;
}

/* Body sections */
.sg-rpop-body { padding: 8px 40px 4px; }

.sg-rpop-section {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sg-rpop-section:last-child { border-bottom: none; }

/* Section header: icon + label */
.sg-rpop-sec-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sg-rpop-sec-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.sg-rpop-sec-icon--blue   { background: rgba(59,130,246,0.1);  color: #3B82F6; }
.sg-rpop-sec-icon--orange { background: rgba(249,115,22,0.1);  color: #F97316; }
.sg-rpop-sec-icon--green  { background: rgba(34,197,94,0.1);   color: #16a34a; }

.sg-rpop-sec-head h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--sg-dark);
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Bullet list */
.sg-rpop-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sg-rpop-list li {
  font-size: 14px;
  color: #444;
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.6;
}
.sg-rpop-list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sg-pink);
}

/* Footer */
.sg-rpop-footer {
  padding: 24px 40px 36px;
  border-top: 1px solid rgba(0,0,0,0.07);
  text-align: center;
  background: #fafafa;
  border-radius: 0 0 20px 20px;
}
.sg-rpop-cta-note {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 20px;
}
.sg-rpop-cta-btn {
  font-size: 15px !important;
  padding: 14px 36px !important;
  border-radius: 50px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* "View Details" trigger button (styled like a link) */
.sg-rpop-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sg-font);
  padding: 0;
}

/* Mobile adjustments */
@media (max-width: 575px) {
  .sg-rpop-header { padding: 32px 24px 22px; }
  .sg-rpop-body   { padding: 4px 24px; }
  .sg-rpop-footer { padding: 20px 24px 32px; }
  .sg-rpop-title  { padding-right: 28px; }
}

