/* ==========================================================================
   Financial Editorial & Fintech Glassmorphism Design System
   ========================================================================== */

/* --- CSS VARIABLES --- */
:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Colors */
  --color-bg-dark: #030712;      /* Deep obsidian black */
  --color-bg-navy: #091024;      /* Professional deep navy */
  --color-bg-card: rgba(255, 255, 255, 0.02); /* Glass base */
  
  --color-text-white: #ffffff;
  --color-text-light: #f3f4f6;
  --color-text-muted: #9ca3af;   /* Soft slate gray */
  --color-text-desc: #a5b5c9;    /* Readable body text */
  
  --color-gold-dark: #b89028;
  --color-gold-base: #d4af37;    /* Luxury Gold */
  --color-gold-light: #f4d068;
  --color-gold-glow: rgba(212, 175, 55, 0.4);
  
  --color-wa-base: #25d366;
  --color-wa-dark: #128c7e;
  --color-wa-glow: rgba(37, 211, 102, 0.4);

  /* Borders & Shadows */
  --border-glass: 1px solid rgba(255, 255, 255, 0.06);
  --border-glass-gold: 1px solid rgba(212, 175, 55, 0.15);
  --shadow-premium: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-gold-glow: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
  
  /* Layout */
  --width-container: 1000px;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text-desc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* --- REUSABLE UTILITIES & LAYOUT --- */
.container {
  max-width: var(--width-container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

/* Text Gradient Effect */
.text-gradient {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-base) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Glassmorphism Card Utility */
.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: var(--border-glass);
  box-shadow: var(--shadow-premium);
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
}

/* Section Headings */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-gold-base);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 38px;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-lead-text {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--color-text-muted);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 10px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-base) 100%);
  color: var(--color-bg-dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn-glow:hover::before {
  left: 150%;
  transition: left 0.8s ease-in-out;
}

.btn-large {
  padding: 18px 48px;
  font-size: 17px;
  border-radius: 14px;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- AMBIENT GLOW ORBS --- */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -2;
}

.orb-1 {
  background: radial-gradient(circle, rgba(0, 119, 255, 0.4) 0%, transparent 70%);
  top: -100px;
  left: -200px;
}

.orb-2 {
  background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
  top: 600px;
  right: -200px;
  opacity: 0.08;
}

.orb-3 {
  background: radial-gradient(circle, rgba(0, 119, 255, 0.3) 0%, transparent 70%);
  bottom: 800px;
  left: 10%;
  opacity: 0.1;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 120px 0 60px;
  background: linear-gradient(180deg, rgba(9, 16, 36, 0.8) 0%, var(--color-bg-dark) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* NYSE Background blend */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center top/cover no-repeat;
  opacity: 0.08;
  mix-blend-mode: overlay;
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero-content {
  z-index: 1;
}

.badge-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold-base);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text-white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 18px;
  color: var(--color-text-desc);
  line-height: 1.6;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.hero-cta-group {
  margin-bottom: 40px;
}

.hero-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-light);
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-base);
  flex-shrink: 0;
}

.feature-icon-wrapper svg {
  width: 12px;
  height: 12px;
}

/* --- HERO PORTRAIT FRAME --- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.portrait-container {
  position: relative;
  width: 320px;
  height: 400px;
}

.portrait-glass-backdrop {
  position: absolute;
  inset: -15px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--border-glass);
  border-radius: 28px;
  z-index: -1;
  box-shadow: var(--shadow-premium);
}

.portrait-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(1.02);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  z-index: 10;
  max-width: 200px;
  animation: floatAnim 6s ease-in-out infinite;
}

.badge-top-right {
  top: 15px;
  right: -50px;
  animation-delay: 0s;
}

.badge-bottom-left {
  bottom: 25px;
  left: -50px;
  animation-delay: 3s;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-base);
  flex-shrink: 0;
}

.badge-icon svg {
  width: 18px;
  height: 18px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.2;
}

.badge-desc {
  font-size: 9px;
  color: var(--color-text-muted);
  margin-top: 2px;
  white-space: nowrap;
}

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

/* --- STATS STRIP --- */
.stats-strip-container {
  margin-top: 80px;
  z-index: 2;
  position: relative;
}

.stats-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  padding: 30px 40px;
  align-items: center;
  border: var(--border-glass-gold);
  background: rgba(9, 16, 36, 0.4);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.stat-item-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* ==========================================================================
   MEET SECTION (RE-STYLED BIO CARD, NO PHOTO)
   ========================================================================== */
.meet-section {
  padding: 100px 0;
  background-color: var(--color-bg-dark);
  position: relative;
}

.meet-card {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.meet-card-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.06) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.meet-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gold-base);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

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

.meet-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-light);
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--color-gold-base);
  margin-bottom: 30px;
}

.meet-right-col p {
  font-size: 15px;
  color: var(--color-text-desc);
  line-height: 1.7;
  margin-bottom: 20px;
}

.meet-right-col p:last-child {
  margin-bottom: 0;
}

.meet-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-light);
}

.cred-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold-base);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold-base);
  flex-shrink: 0;
}

/* ==========================================================================
   PHILOSOPHY SECTION (4-GRID)
   ========================================================================== */
.philosophy-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-navy) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.philosophy-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.6), var(--shadow-gold-glow);
}

.philosophy-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.philosophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-card:hover .philosophy-img {
  transform: scale(1.06);
}

.philosophy-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 16, 36, 0.85) 100%);
}

.philosophy-card-content {
  padding: 24px 30px 30px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.phi-number {
  position: absolute;
  top: -24px;
  right: 30px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.philosophy-card:hover .phi-number {
  color: rgba(212, 175, 55, 0.08);
}

.philosophy-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.philosophy-card-description {
  font-size: 14px;
  color: var(--color-text-desc);
  line-height: 1.6;
}

/* ==========================================================================
   WHAT YOU'LL LEARN SECTION (6-GRID)
   ========================================================================== */
.learn-section {
  padding: 100px 0;
  background-color: var(--color-bg-dark);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.learn-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.learn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.learn-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(9, 16, 36, 0.8) 0%, rgba(212, 175, 55, 0.15) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--color-gold-base);
  transition: transform 0.4s ease;
}

.learn-card:hover .learn-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--color-gold-base) 0%, var(--color-gold-light) 100%);
  color: var(--color-bg-dark);
}

.learn-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.learn-card-text {
  display: flex;
  flex-direction: column;
}

.learn-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 8px;
}

.learn-card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.learn-footer-text {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 48px auto 0;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px dashed rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 80px 0 100px;
  background-color: var(--color-bg-dark);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 70px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(9, 16, 36, 0.9) 0%, rgba(3, 7, 18, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Internal glowing light source */
.cta-glow-bg {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold-base);
  margin-bottom: 16px;
}

.cta-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-desc-main {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 620px;
  margin: 0 auto 12px;
  font-weight: 500;
}

.cta-desc-sub {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-button-container {
  margin-bottom: 40px;
}

/* Pulsing highlight animation for CTA action button */
.btn-pulsing {
  animation: ctaPulseButton 2s infinite;
}

@keyframes ctaPulseButton {
  0% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25); }
  50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.6); }
  100% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25); }
}

.cta-trust-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.trust-icon {
  width: 14px;
  height: 14px;
  color: var(--color-gold-base);
}

.trust-divider {
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer-section {
  padding: 60px 0 40px;
  background-color: #02050b;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-disclosure-block {
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 30px;
  border-radius: 12px;
}

.disclosure-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.disclosure-paragraphs p {
  font-size: 11.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.disclosure-paragraphs p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.footer-link:hover {
  color: var(--color-gold-base);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT BUTTON (Mobile-Optimized Widget)
   ========================================================================== */
.whatsapp-float-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: none; /* Controlled dynamically in JS or visible only on mobile query */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}

.whatsapp-inner {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-wa-base) 0%, var(--color-wa-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waFloatingBounce 2s ease-in-out infinite;
}

.whatsapp-svg-icon {
  width: 30px;
  height: 30px;
}

.whatsapp-halo {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  z-index: 1;
  animation: waPulseHalo 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

.whatsapp-float-widget:hover .whatsapp-inner {
  transform: scale(1.08);
}

/* Pulse Glow Rings */
@keyframes waPulseHalo {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Subtle Floating bounce */
@keyframes waFloatingBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}


/* ==========================================================================
   RESPONSIVE DESIGN (PC Core 1000px, responsive scaling)
   ========================================================================== */

/* --- TABLET VIEWPORT (Under 992px) --- */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding-top: 40px;
  }
  
  .badge-eyebrow {
    margin-bottom: 20px;
  }
  
  .hero-title {
    font-size: 40px;
    letter-spacing: -1px;
  }
  
  .hero-features-list {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-visual {
    order: -1; /* Move image to the top on tablet/mobile */
  }
  
  /* Prevent long buttons from stretching viewport horizontally */
  .btn {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    font-size: 14px;
    box-sizing: border-box;
  }
  
  .stats-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }
  
  .stat-item-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  }
  
  .meet-card {
    padding: 40px 24px;
  }
  
  .meet-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .meet-quote {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .meet-credentials {
    align-items: flex-start;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .learn-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  /* Show WhatsApp widget only on mobile/tablet viewports */
  .whatsapp-float-widget {
    display: flex;
  }
}

/* --- MOBILE VIEWPORT (Under 576px) --- */
@media (max-width: 576px) {
  .hero-section {
    padding-top: 80px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-lead {
    font-size: 16px;
  }
  
  /* Reduce portrait size and badge offset to fit small phone viewports */
  .portrait-container {
    width: 240px;
    height: 300px;
  }
  
  .portrait-glass-backdrop {
    inset: -10px;
    border-radius: 24px;
  }
  
  .floating-badge {
    padding: 8px 12px;
  }
  
  .badge-top-right {
    right: -8px;
  }
  
  .badge-bottom-left {
    left: -8px;
  }
  
  .badge-icon {
    width: 28px;
    height: 28px;
  }
  
  .badge-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .badge-title {
    font-size: 10px;
  }
  
  .badge-desc {
    font-size: 8px;
  }
  
  /* Stack features vertically to fit screen width */
  .hero-features-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .learn-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-card {
    padding: 50px 24px;
  }
  
  .cta-title {
    font-size: 26px;
  }
  
  .cta-desc-main {
    font-size: 15px;
  }
  
  .cta-trust-list {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-divider {
    display: none;
  }
  
  .footer-disclosure-block {
    padding: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-nav {
    justify-content: center;
    gap: 16px 20px;
  }
  
  .whatsapp-float-widget {
    bottom: 24px;
    right: 20px;
  }
}
