/* ============================================================
   DOLLAR SMART GUIDES — Feminine Brand Redesign
   Target: Women · Palette: Rose Pink + Warm Gold + Cream
   ============================================================ */

/* ─── TOKENS ─── */
:root {
  /* Rose / Pink palette */
  --rose-950: #3b0d1a;
  --rose-900: #5e1a2e;
  --rose-800: #8b2b46;
  --rose-700: #b5385c;
  --rose-600: #d4546e;
  --rose-500: #e07088;
  --rose-400: #ec8fa4;
  --rose-300: #f3b3c3;
  --rose-200: #f8d1db;
  --rose-100: #fde8ee;
  --rose-50:  #fff5f7;

  /* Warm Gold / Honey */
  --gold-700:  #a16207;
  --gold-600:  #ca8a04;
  --gold-500:  #eab308;
  --gold-400:  #facc15;
  --gold-300:  #fde047;
  --gold-100:  #fef9c3;
  --gold-50:   #fefce8;

  /* Warm cream / neutrals */
  --cream-bg:  #fff9f7;
  --cream-2:   #fdf4f0;
  --cream-3:   #f9ede9;

  --gray-900: #1c1917;
  --gray-800: #292524;
  --gray-700: #44403c;
  --gray-600: #57534e;
  --gray-500: #78716c;
  --gray-400: #a8a29e;
  --gray-300: #d6d3d1;
  --gray-100: #f5f5f4;
  --white:    #ffffff;

  /* Dark footer */
  --dark:     #1a0a10;
  --dark-2:   #2d111e;

  /* Fonts */
  --font-body:    'DM Sans', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Shadows */
  --shadow-xs:   0 1px 3px rgba(180,56,92,.08);
  --shadow-sm:   0 2px 8px rgba(180,56,92,.1);
  --shadow-md:   0 6px 24px rgba(180,56,92,.12);
  --shadow-lg:   0 12px 40px rgba(180,56,92,.16);
  --shadow-xl:   0 24px 64px rgba(180,56,92,.18);
  --shadow-gold: 0 8px 28px rgba(234,179,8,.3);
  --shadow-rose: 0 8px 28px rgba(212,84,110,.3);

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream-bg);
  color: var(--gray-900);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
ul  { list-style: none; }

/* Global Anchor Reset to kill WordPress theme defaults */
.header-inner a, 
.header-inner a:hover, 
.header-inner a:visited, 
.header-inner a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SHARED TYPOGRAPHY ─── */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 540px;
}
.sec-header {
  text-align: center;
  margin-bottom: 56px;
}
.sec-header .sec-desc { margin: 0 auto; }

/* ─── DECORATIVE BLOBS ─── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* ─── BUTTONS ─── */
.btn-optin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--rose-600), var(--rose-700));
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--ease);
  box-shadow: var(--shadow-rose);
  letter-spacing: 0.01em;
}
.btn-optin:hover {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-800));
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(180,56,92,.35);
}

/* HIGH OVERRIDE NAVIGATION CTA SYSTEM */
.hustle-nav-button {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700)) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  padding: 10px 22px !important;
  border-radius: var(--r-full) !important;
  transition: var(--ease) !important;
  white-space: nowrap !important;
  box-shadow: var(--shadow-rose) !important;
  display: inline-block !important;
  text-decoration: none !important;
  border: none !important;
  line-height: 1.2 !important;
}
.hustle-nav-button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 28px rgba(180,56,92,.45) !important;
  color: var(--white) !important;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose-700);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--rose-300);
  padding-bottom: 3px;
  transition: var(--ease);
}
.btn-ghost:hover {
  color: var(--rose-800);
  border-color: var(--rose-600);
  gap: 12px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--rose-400);
  color: var(--rose-700);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: var(--r-full);
  transition: var(--ease);
  background: var(--white);
}
.btn-outline:hover {
  background: var(--rose-600);
  border-color: var(--rose-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}

.btn-cta {
  background: linear-gradient(135deg, var(--rose-600), var(--rose-700));
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  box-shadow: var(--shadow-rose);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(180,56,92,.4);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background: linear-gradient(90deg, var(--rose-700), var(--rose-600));
  color: var(--white);
  padding: 11px 60px;
  text-align: center;
  font-size: 0.875rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ann-bar p { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; color: var(--white); }
.ann-link {
  background: var(--white) !important;
  color: var(--rose-700) !important;
  font-weight: 800 !important;
  padding: 3px 14px !important;
  border-radius: var(--r-full) !important;
  font-size: 0.8rem !important;
  transition: var(--ease);
  display: inline-block;
}
.ann-link:hover { background: var(--rose-50) !important; }
.ann-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--ease);
  line-height: 1;
}
.ann-close:hover { color: var(--white); }


/* ============================================================
   HEADER & STRUCTURE ADJUSTMENTS
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,249,247,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rose-100);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(180,56,92,.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px; /* Provides complete baseline vertical alignment room */
  gap: 20px;
}

/* Core Brand Constraint Settings */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  max-width: 45%; 
}
.logo-img {
  height: auto !important;
  max-height: 48px !important; /* Forces bounding block limits */
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
}
.logo-fallback {
  display: none;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--white);
  font-family: Georgia, serif;
  box-shadow: var(--shadow-rose);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.logo-main {
  font-weight: 800;
  font-size: 1rem;
  color: var(--rose-800);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-sub  { font-size: 0.68rem; font-weight: 600; color: var(--rose-500); letter-spacing: 0.08em; text-transform: uppercase; }

/* Menu Navigation Elements */
.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: var(--gray-700) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 8px 14px !important;
  border-radius: var(--r-sm) !important;
  transition: var(--ease);
  white-space: nowrap !important;
  display: inline-block;
}
.nav-link:hover, .nav-link.active {
  color: var(--rose-700) !important;
  background: var(--rose-50) !important;
}
.drop-btn {
  background: none !important;
  border: none !important;
  font-family: var(--font-body);
  cursor: pointer;
}
.nav-drop { position: relative; }
.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--rose-100);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--ease);
  z-index: 100;
}
.nav-drop:hover .drop-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.drop-menu a {
  display: block !important;
  padding: 10px 14px !important;
  border-radius: var(--r-sm) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--gray-700) !important;
  transition: var(--ease);
}
.drop-menu a:hover { background: var(--rose-50) !important; color: var(--rose-700) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-700); border-radius: 2px;
  transition: var(--ease);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #fce4ec 0%, #fff0f5 35%, #fff9f0 70%, #fffbf0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.blob-1 {
  width: 500px; height: 500px;
  background: var(--rose-300);
  top: -150px; right: -150px;
  opacity: 0.25;
  animation: blobFloat 9s ease-in-out infinite;
}
.blob-2 {
  width: 280px; height: 280px;
  background: var(--gold-300);
  bottom: 60px; left: -80px;
  opacity: 0.2;
  animation: blobFloat 7s ease-in-out infinite reverse;
}
.blob-3 {
  width: 160px; height: 160px;
  background: var(--rose-400);
  top: 40%; left: 42%;
  opacity: 0.15;
  animation: blobFloat 11s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -15px) scale(1.04); }
  66%       { transform: translate(-10px, 10px) scale(0.97); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,84,110,.1);
  border: 1px solid rgba(212,84,110,.25);
  color: var(--rose-700);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--rose-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: italic;
  color: var(--rose-600);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--rose-400), var(--gold-400));
  border-radius: 2px;
}

.hero-desc {
  color: var(--gray-600);
  font-size: 1.08rem;
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.optin-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  max-width: 480px;
  border: 1px solid var(--rose-100);
}
.optin-tag {
  display: inline-block;
  background: var(--rose-100);
  color: var(--rose-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.optin-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 14px;
}
.optin-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.optin-checks li {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rose-700);
  display: flex;
  align-items: center;
  gap: 6px;
}
.optin-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inp {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--gray-300);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-100);
  outline: none;
  transition: var(--ease);
}
.inp:focus {
  border-color: var(--rose-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,84,110,.12);
}
.inp::placeholder { color: var(--gray-400); }
.optin-privacy {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ebook-wrap { position: relative; width: 270px; }
.ebook-shadow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 30px;
  background: rgba(180,56,92,.2);
  border-radius: 50%;
  filter: blur(14px);
}
.ebook-card {
  width: 260px;
  background: linear-gradient(160deg, #fff0f5 0%, #fff5f0 100%);
  border: 2px solid var(--rose-200);
  border-radius: var(--r-xl);
  padding: 28px 22px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.ebook-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--rose-50);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ebook-dot {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  font-family: Georgia, serif;
  flex-shrink: 0;
}
.ebook-dot::before { content: '$'; }
.ebook-num {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--rose-600);
  line-height: 1;
}
.ebook-sub {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--rose-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ebook-divider {
  height: 1px;
  background: var(--rose-200);
  margin: 2px 0;
}
.ebook-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.ebook-list li {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
}
.ebook-footer {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--rose-400);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid var(--rose-100);
  padding-top: 10px;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rose-100);
}
.fc-emoji { font-size: 1.4rem; }
.fc-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--rose-700);
  line-height: 1;
}
.fc-label { font-size: 0.65rem; color: var(--gray-500); font-weight: 600; white-space: nowrap; }

.fc1 { top: -20px; left: -40px; animation: fcFloat1 7s ease-in-out infinite; }
.fc2 { top: 30%;  right: -40px; animation: fcFloat1 8s ease-in-out infinite reverse; }
.fc3 { bottom: 20px; left: -50px; animation: fcFloat1 6s ease-in-out infinite; animation-delay: 1.5s; }

@keyframes fcFloat1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-wave svg { display: block; width: 100%; }


/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--cream-bg);
  padding: 24px 0;
  border-bottom: 1px solid var(--rose-100);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-items span { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
.divider { width: 1px; height: 16px; background: var(--rose-200); flex-shrink: 0; }


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-sec {
  padding: 100px 0;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.blob-about {
  width: 500px; height: 500px;
  background: var(--rose-200);
  top: -100px; right: -150px;
  opacity: 0.3;
  animation: blobFloat 12s ease-in-out infinite;
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img-col { position: relative; }
.about-frame {
  background: linear-gradient(145deg, var(--rose-200), var(--rose-300));
  border-radius: var(--r-2xl);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--rose-200);
}
.about-img-placeholder {
  text-align: center;
  padding: 20px;
}
.about-emoji { font-size: 5rem; margin-bottom: 14px; }
.about-name { font-size: 1.2rem; font-weight: 800; color: var(--rose-900); }
.about-role { font-size: 0.82rem; color: var(--rose-700); font-weight: 500; margin-top: 4px; }

.about-award {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: var(--r-lg);
  padding: 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.award-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.award-label {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--gray-800);
  max-width: 80px;
  line-height: 1.3;
}

.about-quote {
  position: absolute;
  top: -16px; left: -20px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose-800);
  font-style: italic;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--rose-400);
  max-width: 200px;
  line-height: 1.5;
}

.about-p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px;
  border: 1px solid var(--rose-100);
  box-shadow: var(--shadow-xs);
}
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }
.pillar-body strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.pillar-body p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.55; }


/* ============================================================
   CATEGORIES
   ============================================================ */
.cats-sec {
  padding: 100px 0;
  background: var(--cream-bg);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card {
  background: var(--white);
  border: 2px solid var(--rose-100);
  border-radius: var(--r-xl);
  padding: 30px 22px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  display: block;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.cc-work::before    { background: linear-gradient(90deg, var(--rose-500), var(--rose-400)); }
.cc-sell::before    { background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); }
.cc-rent::before    { background: linear-gradient(90deg, #a78bfa, #c4b5fd); }
.cc-passive::before { background: linear-gradient(90deg, #34d399, #6ee7b7); }

.cat-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cat-icon-bg {
  width: 54px; height: 54px;
  background: var(--rose-50);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--ease);
}
.cat-card:hover .cat-icon-bg { background: var(--rose-100); transform: scale(1.08); }

.cat-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.cat-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cat-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.cat-count { color: var(--gray-500); }
.cat-arrow { color: var(--rose-500); transition: var(--ease); }
.cat-card:hover .cat-arrow { transform: translateX(5px); }

.cat-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--rose-100);
  color: var(--rose-700);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--r-full);
}


/* ============================================================
   POSTS
   ============================================================ */
.posts-sec {
  padding: 100px 0;
  background: var(--cream-2);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-featured {
  grid-column: span 1;
}
.post-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--rose-100);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.post-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  position: relative;
}
.post-featured .post-img-wrap { height: 220px; }
.pi-icon { font-size: 3rem; }
.pi-va      { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.pi-passive { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.pi-canva   { background: linear-gradient(135deg, #fff9c4, #fff176); }
.pi-ai      { background: linear-gradient(135deg, #ede7f6, #d1c4e9); }
.pi-women   { background: linear-gradient(135deg, #fce4ec, #e1bee7); }
.pi-nonphone{ background: linear-gradient(135deg, #e3f2fd, #bbdefb); }

.post-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--rose-600);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.post-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 10px;
}
.post-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 10px;
}
.post-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.read-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--rose-600) !important;
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-more:hover { color: var(--rose-700) !important; gap: 8px; }

.posts-cta-wrap { text-align: center; margin-top: 48px; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-sec {
  padding: 100px 0;
  background: var(--cream-bg);
  position: relative;
  overflow: hidden;
}
.blob-testi {
  width: 400px; height: 400px;
  background: var(--rose-200);
  bottom: -100px; right: -100px;
  opacity: 0.25;
  animation: blobFloat 10s ease-in-out infinite;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--rose-100);
  border-radius: var(--r-xl);
  padding: 30px;
  transition: var(--ease);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--rose-200); }
.testi-center {
  background: linear-gradient(145deg, var(--rose-50), var(--white));
  border: 2px solid var(--rose-200);
  box-shadow: var(--shadow-rose);
  transform: translateY(-10px);
}

.testi-stars {
  color: var(--gold-500);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card p {
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--rose-400), var(--rose-600));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--gray-900); }
.testi-author span   { font-size: 0.78rem; color: var(--gray-500); }


/* ============================================================
   STATS
   ============================================================ */
.stats-sec {
  background: linear-gradient(135deg, var(--rose-700), var(--rose-900));
  padding: 72px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-sep { width: 1px; height: 60px; background: rgba(255,255,255,.15); }


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-sec {
  padding: 100px 0;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.blob-cta1 {
  width: 400px; height: 400px;
  background: var(--rose-300);
  top: -100px; left: -100px;
  opacity: 0.2;
}
.blob-cta2 {
  width: 300px; height: 300px;
  background: var(--gold-300);
  bottom: -80px; right: -80px;
  opacity: 0.2;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.cta-tag {
  display: inline-block;
  background: var(--rose-100);
  color: var(--rose-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  line-height: 1.75;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 16px;
}
.cta-inp {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--rose-200);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  background: var(--white);
  transition: var(--ease);
}
.cta-inp:focus {
  border-color: var(--rose-400);
  box-shadow: 0 0 0 3px rgba(212,84,110,.12);
}
.cta-inp::placeholder { color: var(--gray-400); }
.cta-note { font-size: 0.82rem; color: var(--gray-500); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,.6) !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Isolate footer link colors */
.footer a {
  color: rgba(255,255,255,.45) !important;
  text-decoration: none !important;
}
.footer a:hover {
  color: var(--rose-400) !important;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.fl-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--white);
  font-family: Georgia, serif;
  flex-shrink: 0;
}
.fl-main { font-size: 1rem; font-weight: 800; color: var(--white) !important; }
.fl-tag  { font-size: 0.68rem; color: var(--rose-400); font-weight: 500; margin-top: 2px; }

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 8px; }
.soc-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55) !important;
  transition: var(--ease);
}
.soc-btn:hover {
  background: var(--rose-700);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.4) !important; text-decoration: underline !important; transition: var(--ease); }
.footer-bottom a:hover { color: rgba(255,255,255,.7) !important; }


/* ============================================================
   THANK YOU OVERLAY
   ============================================================ */
.ty-overlay {
  position: fixed;
  inset: 0;
  background: rgba(59,13,26,.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}
.ty-overlay.active { opacity: 1; visibility: visible; }
.ty-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--rose-100);
}
.ty-icon { font-size: 3.5rem; margin-bottom: 14px; }
.ty-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--rose-800);
  margin-bottom: 12px;
}
.ty-card p { color: var(--gray-700); font-size: 1rem; margin-bottom: 12px; line-height: 1.7; }
.ty-tip {
  font-size: 0.85rem !important;
  background: var(--rose-50);
  border-radius: var(--r-md);
  padding: 12px;
  margin-bottom: 24px !important;
  color: var(--gray-500) !important;
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }


/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .hero-content { align-items: center; text-align: center; display: flex; flex-direction: column; }
  .hero-desc    { text-align: center; }
  .optin-box    { max-width: 100%; }
  .hero-visual  { display: none; }

  .about-grid   { grid-template-columns: 1fr; }
  .about-img-col{ max-width: 340px; margin: 0 auto; }
  .cats-grid    { grid-template-columns: repeat(2, 1fr); }
  .testi-grid   { grid-template-columns: 1fr; }
  .testi-center { transform: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner {
    height: 70px;
    padding: 0 16px;
  }
  .logo-img {
    max-height: 34px !important;
  }

  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--rose-100);
    gap: 4px;
    z-index: 800;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav.open .hustle-nav-button { text-align: center; margin-top: 8px; display: block !important; }
  .drop-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--rose-50);
    display: none;
  }
  .nav-drop.open .drop-menu { display: block; }
  
  .hamburger { 
    display: flex;
    margin-left: auto;
  }

  .posts-grid { grid-template-columns: 1fr; }
  .cta-form   { flex-direction: column; }
  .cta-inp    { border-radius: var(--r-md); }
  .btn-cta    { border-radius: var(--r-md); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid  { flex-direction: column; }
  .stat-sep    { width: 60px; height: 1px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .ann-bar  { padding: 10px 40px 10px 16px; font-size: 0.8rem; }
  .trust-inner  { flex-direction: column; }
  .sec-title { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .cats-grid { grid-template-columns: 1fr; }
  .optin-box { padding: 22px 18px; }
  .about-frame { aspect-ratio: 3/2; }
  .testi-grid { gap: 16px; }
}

@media (max-width: 360px) {
  .logo-img {
    max-height: 28px !important;
  }
}
/* ============================================================
   ANTI-THEFT LAYOUT OVERRIDES (ISOLATED STRUCTURAL FIXES)
   ============================================================ */

/* Lock out global theme link modifiers inside header */
header.custom-standalone-header a,
header.custom-standalone-header a:hover,
header.custom-standalone-header a:visited,
header.custom-standalone-header a:active {
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Structural container isolating header heights */
header.custom-standalone-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  background: #fff9f7 !important;
  border-bottom: 1px solid #fde8ee !important;
  width: 100% !important;
  display: block !important;
}

.header-inner-fixed {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 85px !important; /* Forces layout headroom */
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

/* Hyper-Isolated Image Size Caps */
a.hustle-logo-anchor {
  display: flex !important;
  align-items: center !important;
  height: 50px !important; /* Clamps base layout space */
  max-width: 320px !important; /* Prevents overflow expanding */
  border: none !important;
  text-decoration: none !important;
}

img.hustle-logo-img-fixed {
  height: 40px !important; /* Exact sizing rule override */
  max-height: 40px !important;
  width: auto !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* Isolated Navigation Center-Alignment */
header.custom-standalone-header nav.nav {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Core Override on Navigation button text color visibility */
header.custom-standalone-header a.hustle-nav-button {
  background: linear-gradient(135deg, #e07088, #b5385c) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  padding: 10px 22px !important;
  border-radius: 9999px !important;
  display: inline-block !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
}

/* Mobile Breakpoint Structural Lockups */
@media (max-width: 768px) {
  .header-inner-fixed {
    height: 65px !important;
    padding: 0 16px !important;
  }
  
  img.hustle-logo-img-fixed {
    height: 32px !important;
    max-height: 32px !important;
  }
  
  header.custom-standalone-header nav.nav {
    display: none !important; /* Managed by mobile drawer script layout */
  }
  
  header.custom-standalone-header nav.nav.open {
    display: flex !important;
    top: 65px !important;
  }
}
