/* ==========================================================================
   M6 Application — Modern SaaS UI/UX Design System
   Theme: M6 Brand System — Blue (#2E2FA0), Red (#E31B23), Lavender (#ECEEFB), Green (#1FAE5C)
   ========================================================================== */

:root {
  /* Brand palette — M6 pitch-deck brand system (canonical tokens) */
  --brand-blue: #2E2FA0;       /* primary: headlines, buttons, nav, dark sections */
  --brand-blue-dark: #1C1D6E;  /* gradient depth, dark sections */
  --brand-red: #E31B23;        /* CTAs, alerts, accents */
  --bg-lavender: #ECEEFB;      /* light section backgrounds */
  --green-check: #1FAE5C;      /* checkmarks / positive indicators */

  /* Semantic tokens — existing names, remapped onto the brand palette */
  --primary-navy: var(--brand-blue);
  --primary-navy-dark: var(--brand-blue-dark);
  --primary-navy-light: #3F40C9;

  --accent-red: var(--brand-red);
  --accent-red-hover: #C01319;
  --accent-red-subtle: rgba(227, 27, 35, 0.08);

  --emerald: var(--green-check);
  --emerald-dark: #128A4B;
  --emerald-subtle: rgba(31, 174, 92, 0.1);

  --amber: #F59E0B;
  --amber-subtle: rgba(245, 158, 11, 0.1);

  --bg-page: #FBFBFE;
  --bg-surface: #FFFFFF;
  --bg-subtle: var(--bg-lavender);
  --bg-subtle-2: #DEE3F8;

  --text-main: #191B44;
  --text-muted: #474B6E;
  --text-light: #A5A9D4;
  --text-inverse: #FFFFFF;

  --border-light: #E4E7F6;
  --border-subtle: #C9CFEC;
  --border-focus: var(--brand-blue);

  --shadow-sm: 0 1px 3px rgba(46, 47, 160, 0.06);
  --shadow-md: 0 4px 12px rgba(46, 47, 160, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(46, 47, 160, 0.09), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 32px -6px rgba(46, 47, 160, 0.14), 0 8px 16px -4px rgba(0, 0, 0, 0.04);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1200px;
  --transition-smooth: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-red);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(227, 27, 35, 0.35);
  color: #FFFFFF;
}

.btn-navy {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(46, 47, 160, 0.2);
}

.btn-navy:hover {
  background-color: var(--primary-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 47, 160, 0.3);
  color: #FFFFFF;
}

.btn-outline {
  background-color: #FFFFFF;
  border-color: var(--border-light);
  color: var(--primary-navy);
}

.btn-outline:hover {
  background-color: var(--bg-subtle);
  border-color: var(--border-subtle);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 1.85rem;
  font-size: 1.05rem;
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--primary-navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: var(--bg-page);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  color: var(--primary-navy);
}

.section-navy {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: #FFFFFF;
}

.section-navy p {
  color: var(--text-light);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.badge-navy {
  background-color: rgba(46, 47, 160, 0.08);
  color: var(--primary-navy);
}

.badge-red {
  background-color: var(--accent-red-subtle);
  color: var(--accent-red);
}

.badge-green {
  background-color: var(--emerald-subtle);
  color: var(--emerald-dark);
}

.badge-amber {
  background-color: var(--amber-subtle);
  color: #B45309;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-logo .brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-navy);
  letter-spacing: -0.03em;
}

.brand-logo .brand-text span {
  color: var(--accent-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary-navy);
}

/* Navigation Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.94rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-dropdown-toggle:hover,
.nav-item-dropdown:hover .nav-dropdown-toggle {
  color: var(--primary-navy);
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 270px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.65rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1050;
  animation: fadeInDown 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.dropdown-link-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.dropdown-link-item:hover {
  background-color: var(--bg-subtle);
}

.dropdown-link-icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.dropdown-link-text h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.15rem;
}

.dropdown-link-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 0.25rem;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

.mobile-nav-drawer.active {
  display: flex;
}

.mobile-nav-drawer a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg-subtle);
}

.mobile-nav-drawer .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-subtle {
  background-color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Hero Section & Interactive Simulator
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-page) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--accent-red);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.stat-item h4 {
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin-bottom: 0.15rem;
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Simulator Widget */
.hero-visual {
  position: relative;
}

.simulator-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
}

.sim-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.sim-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sim-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--emerald-dark);
}

.dot-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--emerald);
  border-radius: 50%;
}

.sim-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.sim-tab-btn {
  padding: 0.6rem 0.4rem;
  background: var(--bg-subtle);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
}

.sim-tab-btn.active {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
}

.sim-display-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}

.sim-result-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.sim-result-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  font-family: var(--font-display);
}

.sim-result-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.sim-action-btn {
  width: 100%;
  margin-top: 1.25rem;
}

/* ==========================================================================
   Core Differentiator (USP) Section
   ========================================================================== */
.section-usp {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  color: #FFFFFF;
  position: relative;
}

.usp-header-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: #FF6B75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.usp-headline {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.usp-headline span {
  color: #FFD166;
}

.usp-subtitle {
  font-size: 1.1rem;
  color: var(--border-subtle);
  max-width: 780px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.usp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.usp-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(227, 27, 35, 0.5);
  transform: translateY(-3px);
}

.usp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(227, 27, 35, 0.15);
  color: #FF6B75;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.usp-card h3 {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.usp-card p {
  font-size: 0.9rem;
  color: var(--border-subtle);
  line-height: 1.55;
}

/* ==========================================================================
   Interactive Role-Based Solutions (Tabs)
   ========================================================================== */
.role-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.role-tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.role-tab-btn.active {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.role-content-panel {
  display: none;
}

.role-content-panel.active {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.role-info-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.role-info-card p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.role-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.role-checklist li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.role-checklist li span.check {
  color: var(--emerald-dark);
  font-weight: 800;
  font-size: 1rem;
}

.role-preview-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.role-preview-card h4 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

/* ==========================================================================
   9-Module Feature Grid with Filter
   ========================================================================== */
.feature-filter-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.feature-filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.feature-filter-btn.active {
  background: var(--accent-red);
  color: #FFFFFF;
  border-color: var(--accent-red);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.module-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-subtle);
}

.module-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.module-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.module-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.feature-pill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--bg-subtle-2);
}

.feature-pill-list li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.feature-pill-list li::before {
  content: "✓";
  color: var(--accent-red);
  font-weight: 800;
}

/* ==========================================================================
   Downloads & Access Center (3 Paths)
   ========================================================================== */
.downloads-3path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.path-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.path-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-navy);
}

.path-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.path-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.badge-live {
  background-color: var(--emerald-subtle);
  color: var(--emerald-dark);
  border: 1px solid rgba(31, 174, 92, 0.3);
}

.badge-coming-soon {
  background-color: var(--amber-subtle);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.path-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.path-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.path-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.store-badge-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-subtle);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-navy);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.store-badge-btn.store-badge-active {
  background: var(--primary-navy);
  border-color: var(--primary-navy);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(46, 47, 160, 0.12);
  cursor: pointer;
}

.store-badge-btn.store-badge-active:hover {
  background: #0D47C7;
  border-color: #0D47C7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 71, 199, 0.25);
  color: #FFFFFF;
}

.store-badge-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
}

.store-badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-badge-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge-sub {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  font-weight: 600;
}

.store-badge-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.store-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--emerald-dark);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.store-badge-btn.coming-soon-btn {
  opacity: 0.9;
}

.store-badge-btn span.sub {
  font-size: 0.72rem;
  color: #B45309;
  font-weight: 700;
}

.hero-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(18, 138, 75, 0.1);
  border: 1px solid rgba(18, 138, 75, 0.3);
  color: #065F46;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.hero-app-badge:hover {
  background: rgba(18, 138, 75, 0.2);
  color: #047857;
  transform: translateY(-1px);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--primary-navy);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--accent-red);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-red);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   Onboarding Lead Form
   ========================================================================== */
.form-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  max-width: 720px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background: #FFFFFF;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(46, 47, 160, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 95px;
}

.form-alert {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  display: none;
}

.form-alert.success {
  background-color: var(--emerald-subtle);
  color: #065F46;
  border: 1px solid rgba(31, 174, 92, 0.3);
  display: block;
}

.form-alert.error {
  background-color: var(--accent-red-subtle);
  color: #991B1B;
  border: 1px solid rgba(227, 27, 35, 0.3);
  display: block;
}

/* ==========================================================================
   Portal Access Modal Router
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(46, 47, 160, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.portal-modal {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.modal-backdrop.active .portal-modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-subtle);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.estate-select-box {
  margin: 1.25rem 0;
  padding: 1.25rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.estate-select-box label {
  display: block;
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 0.4rem;
  color: var(--primary-navy);
}

.select-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background-color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.portal-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.portal-card {
  padding: 1.1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: var(--transition-smooth);
}

.portal-card:hover {
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.portal-card h4 {
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.portal-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-support-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.floating-support-btn:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.floating-support-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: var(--text-light);
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .role-content-panel.active {
    grid-template-columns: 1fr;
  }
  .downloads-3path-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .usp-headline {
    font-size: 1.95rem;
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .portal-options-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }
  .floating-support-btn span {
    display: none;
  }
  .floating-support-btn {
    padding: 0.75rem;
    bottom: 1.25rem;
    right: 1.25rem;
    border-radius: 50%;
  }
  .scroll-to-top-btn {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 44px;
    height: 44px;
  }
  .deletion-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Left-Side Scroll-to-Top Floating Button
   ========================================================================== */
.scroll-to-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46, 47, 160, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s,
              background-color 0.2s ease,
              box-shadow 0.2s ease;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-to-top-btn:hover {
  background-color: var(--accent-red);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(227, 27, 35, 0.28);
  color: #FFFFFF;
}

.scroll-to-top-btn:active {
  transform: translateY(0) scale(0.96);
}

.scroll-to-top-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   Anti-Spam & Dynamic Math Captcha Styles
   ========================================================================== */
.hp-field {
  display: none !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.captcha-group {
  background: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md, 10px);
  padding: 0.85rem 1rem;
  margin-top: 0.5rem;
}

.captcha-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.captcha-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.captcha-box-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.captcha-challenge-badge {
  background: var(--primary-navy);
  color: #FFFFFF;
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  min-width: 100px;
  text-align: center;
}

.captcha-input {
  max-width: 130px;
  font-weight: 600;
  text-align: center;
}

.captcha-refresh-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-smooth);
}

.captcha-refresh-btn:hover {
  background: var(--bg-subtle-2);
  color: var(--primary-navy);
}

/* ==========================================================================
   Policy & Account Deletion Layouts
   ========================================================================== */
.policy-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--bg-subtle);
}

.policy-section h3 {
  font-size: 1.1rem;
  color: #1E293B;
  margin: 1rem 0 0.5rem;
}

.policy-section p, .policy-section li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #334155;
}

.policy-section ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.policy-callout {
  background: var(--bg-page);
  border-left: 4px solid var(--primary-navy);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.94rem;
}

.policy-callout-warning {
  border-left-color: var(--accent-red);
  background: #FEF2F2;
  color: #991B1B;
}

.policy-callout-warning p {
  color: #991B1B;
}

.deletion-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.25rem;
  align-items: start;
}


/* ==========================================================================
   Brand Refresh 2026 — blobs, frames, icon badges, problem, urgency, reveal
   ========================================================================== */

/* Pill-shaped buttons across the site */
.btn,
.btn-sm,
.btn-lg {
  border-radius: var(--radius-full);
}

/* Circular icon badges (red or blue fill, white icon) */
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(46, 47, 160, 0.22);
}

.icon-badge.badge-blue {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
}

.icon-badge.badge-red {
  background: linear-gradient(135deg, var(--brand-red) 0%, #B30F17 100%);
}

.badge-icon {
  width: 24px;
  height: 24px;
}

/* USP cards sit on the dark navy band — light ring for separation */
.usp-card .icon-badge {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.18);
  margin-bottom: 1rem;
}

/* Organic gradient blobs */
.has-blobs {
  position: relative;
  overflow: hidden;
}

.has-blobs > .container {
  position: relative;
  z-index: 1;
}

.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.blob-blue {
  background: radial-gradient(circle at 35% 35%, rgba(46, 47, 160, 0.16), rgba(46, 47, 160, 0) 70%);
}

.blob-red {
  background: radial-gradient(circle at 35% 35%, rgba(227, 27, 35, 0.14), rgba(227, 27, 35, 0) 70%);
}

.blob-lavender {
  background: radial-gradient(circle at 35% 35%, rgba(46, 47, 160, 0.12), rgba(46, 47, 160, 0) 70%);
}

.blob-glow {
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 70%);
}

.blob-top-right { width: 460px; height: 460px; top: -200px; right: -140px; border-radius: 58% 42% 55% 45% / 55% 48% 52% 45%; transform: rotate(18deg); }
.blob-bottom-left { width: 380px; height: 380px; bottom: -180px; left: -120px; border-radius: 45% 55% 48% 52% / 55% 45% 60% 40%; transform: rotate(-14deg); }
.blob-top-left { width: 420px; height: 420px; top: -190px; left: -140px; border-radius: 52% 48% 58% 42% / 48% 55% 45% 52%; transform: rotate(12deg); }
.blob-bottom-right { width: 460px; height: 460px; bottom: -220px; right: -160px; border-radius: 46% 54% 42% 58% / 58% 45% 55% 42%; transform: rotate(-10deg); }
.blob-left { width: 400px; height: 400px; top: 20%; left: -160px; border-radius: 55% 45% 52% 48% / 48% 52% 55% 45%; transform: rotate(24deg); }
.blob-right { width: 420px; height: 420px; top: -140px; right: -140px; border-radius: 50% 50% 46% 54% / 55% 48% 52% 45%; transform: rotate(-18deg); }

/* Browser-chrome frame */
.browser-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #EFF0F9;
  border-bottom: 1px solid var(--border-light);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }

.browser-url {
  margin-left: 8px;
  flex: 1;
  min-width: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 11.5px;
  color: var(--text-muted);
  padding: 3px 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-frame .simulator-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Phone-bezel frame */
.phone-frame {
  width: 140px;
  margin: 0 auto 0.75rem;
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: 22px;
  padding: 10px 8px 12px;
  box-shadow: var(--shadow-md);
}

.phone-notch {
  width: 46px;
  height: 5px;
  background: var(--border-subtle);
  border-radius: 9999px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: var(--bg-lavender);
  border-radius: 12px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.phone-token {
  background: var(--brand-blue);
  color: #FFFFFF;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 6px;
  padding: 5px 6px;
  text-align: center;
  line-height: 1.3;
}

.phone-line {
  height: 6px;
  border-radius: 9999px;
  background: var(--border-subtle);
}

.phone-line.short { width: 55%; }
.phone-line.green { background: var(--green-check); }

/* Problem section */
.section-problem {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-lavender) 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.problem-headline {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

.problem-headline span {
  color: var(--accent-red);
}

.problem-point {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.problem-point h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.problem-point p {
  font-size: 0.94rem;
}

.problem-marker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: var(--radius-full);
  color: #FFFFFF;
}

.marker-red { background: var(--brand-red); }
.marker-green { background: var(--green-check); }

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

.problem-illustration {
  width: 100%;
  max-width: 430px;
  height: auto;
}

/* Urgency callout */
.section-urgency {
  background: linear-gradient(120deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
}

.urgency-band {
  text-align: center;
  padding: 0.5rem 0;
}

.urgency-text {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.6;
  max-width: 840px;
  margin: 0 auto 1.5rem;
}

.urgency-text strong {
  color: #FFFFFF;
}

.urgency-band .btn-primary {
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.urgency-band .btn-primary:hover {
  background: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
}

/* Hero copy refresh */
.hero-content h1.hero-headline {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-leadline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin: -0.5rem 0 1rem;
  line-height: 1.35;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive for new components */
@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .problem-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .blob {
    opacity: 0.5;
  }
  .problem-headline {
    font-size: 1.6rem;
  }
  .urgency-text {
    font-size: 1.02rem;
  }
  .hero-leadline {
    font-size: 1.1rem;
  }
}
