/* ==========================================================================
   THE MARKETING HUB — AI VISIBILITY AUDIT (ENGLISH)
   Design System: Apple Light-Titanium & Obsidian Executive Contrast
   ========================================================================== */

:root {
  /* Apple Light Titanium Theme */
  --bg-titanium: #f4f5f7;
  --bg-white: #ffffff;
  --bg-slate: #eef2f6;
  --bg-card-light: #ffffff;
  
  /* Obsidian Dark Contrast Theme */
  --bg-obsidian: #0b0f19;
  --bg-obsidian-alt: #111726;
  --bg-card-dark: rgba(17, 23, 38, 0.85);

  /* Brand Corporate Colors */
  --color-navy: #2E4978;
  --color-pink: #FD2C84;
  --color-purple: #7119b6;
  --color-blue: #3265ed;
  --color-cyan: #30c9f0;

  /* Text Colors */
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  --text-light: #f8fafc;
  --text-light-muted: rgba(255, 255, 255, 0.75);

  /* Gradients */
  --gradient-tmh: linear-gradient(135deg, #fd2c84 0%, #7119b6 50%, #30c9f0 100%);
  --gradient-text: linear-gradient(135deg, #2E4978 0%, #fd2c84 50%, #7119b6 100%);
  --gradient-text-light: linear-gradient(135deg, #ffffff 0%, #30c9f0 100%);
  --gradient-glow: linear-gradient(135deg, rgba(253,44,132,0.15), rgba(48,201,240,0.15));

  /* Shadows & Radius */
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 45px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 40px rgba(48, 201, 240, 0.2);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-titanium);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-padding {
  padding: 90px 0;
  position: relative;
}

/* SECTION BACKGROUND VARIATIONS */
.section-titanium {
  background-color: var(--bg-titanium);
  color: var(--text-dark);
}

.section-white {
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.section-slate {
  background-color: var(--bg-slate);
  color: var(--text-dark);
}

.section-obsidian {
  background-color: var(--bg-obsidian);
  color: var(--text-light);
}

/* HEADER & NAVBAR */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-img {
  height: 64px;
  width: auto;
  transition: transform var(--transition);
}
.logo-img:hover {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-link:hover {
  color: #30c9f0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* APPLE CIRCULAR LANG SWITCHER */
.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-switch a {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.lang-switch a.active, .lang-switch a:hover {
  background: #ffffff;
  color: var(--color-navy);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-tmh);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 25px rgba(253, 44, 132, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(253, 44, 132, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--color-navy) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(46, 73, 120, 0.2);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--color-navy);
  box-shadow: var(--shadow-hover);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--color-navy) !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.badge-apple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-apple.light {
  background: rgba(46, 73, 120, 0.08);
  border: 1px solid rgba(46, 73, 120, 0.15);
  color: var(--color-navy);
}

.badge-apple.dark {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.dot-pink {
  width: 8px;
  height: 8px;
  background: var(--color-pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-pink);
}

/* HERO SECTION — APPLE LIGHT TITANIUM STYLING */
.hero-apple-section {
  padding-top: 140px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 50% 0%, rgba(48, 201, 240, 0.12) 0%, rgba(244, 245, 247, 0) 70%), var(--bg-titanium);
  position: relative;
  overflow: hidden;
}

.hero-content-wrapper {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-title-giant {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title-giant .gradient-span {
  background: var(--gradient-tmh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-apple {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-dark-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* LIVE AI PROMPT SIMULATOR WIDGET (THE WOW COMPONENT) */
.ai-prompt-simulator {
  background: var(--bg-obsidian);
  border: 1px solid rgba(48, 201, 240, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(11, 15, 25, 0.25), 0 0 40px rgba(48, 201, 240, 0.15);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.sim-header {
  background: #111726;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-dots {
  display: flex;
  gap: 8px;
}

.sim-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.sim-dot.red { background: #ff5f56; }
.sim-dot.yellow { background: #ffbd2e; }
.sim-dot.green { background: #27c93f; }

.sim-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-body {
  padding: 28px;
}

.sim-prompt-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.sim-prompt-box i {
  color: #30c9f0;
  font-size: 1.4rem;
}

.sim-prompt-text {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
}

.sim-response-box {
  background: rgba(48, 201, 240, 0.05);
  border-left: 4px solid #30c9f0;
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 24px;
}

.sim-response-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(48, 201, 240, 0.15);
  color: #30c9f0;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sim-response-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.sim-response-text strong {
  color: #30c9f0;
}

.sim-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .sim-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sim-metric-item {
  text-align: center;
}

.sim-metric-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
}

.sim-metric-value.highlight {
  color: var(--color-pink);
}

.sim-metric-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-top: 2px;
}

/* BAIN & COMPANY STATS BANNER */
.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .stats-banner-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card-apple {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.stat-card-apple:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(48, 201, 240, 0.4);
}

.stat-number-giant {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient-tmh);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  display: block;
}

.stat-card-apple p {
  color: var(--text-dark-muted);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
}

/* CARDS & GRIDS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

@media (max-width: 992px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

.light-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.light-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.obsidian-card {
  background: var(--bg-obsidian-alt);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.obsidian-card:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 201, 240, 0.4);
}

/* 6-STAGE METHODOLOGY PIPELINE */
.methodology-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .methodology-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .methodology-flow {
    grid-template-columns: 1fr;
  }
}

.stage-pill {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stage-pill:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-pink);
}

.stage-num {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--color-pink);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.stage-icon {
  width: 48px;
  height: 48px;
  background: rgba(48, 201, 240, 0.1);
  color: #30c9f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.stage-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.stage-desc {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.45;
}

/* TEAM MEMBERS */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.expert-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.expert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.expert-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.2) 60%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.expert-role-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.expert-name {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.15;
}

/* TEAM MODALS */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.team-modal-overlay.active {
  display: flex;
}

.team-modal-content {
  background: #ffffff;
  color: var(--text-dark);
  max-width: 680px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.modal-role {
  color: var(--color-pink);
  font-weight: 700;
}

.modal-body p {
  color: var(--text-dark-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

/* FAQS ACCORDION */
.faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}





/* CONTACT FORM */


.landing-contact-form {
  max-width: 800px;
  margin: 36px auto 0 auto;
}

.landing-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .landing-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
}

.form-input-group {
  margin-bottom: 0;
}





.form-input-control:focus {
  outline: none;
  border-color: #30c9f0;
  background: rgba(255, 255, 255, 0.1);
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin-top: 16px;
}

/* FOOTER */
.footer {
  background: #080c14;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

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

/* ==========================================================================
   APPLE-STYLE SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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


.form-input-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: border-color var(--transition), background var(--transition);
}

.form-input-control::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.cta-banner {
  background: linear-gradient(to left, #fd2c84 0%, #b9299d 25%, #7119b6 50%, #3265ed 75%, #30c9f0 100%);
  border-radius: 32px;
  padding: 70px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(113, 25, 182, 0.45);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 20, 0.35);
  backdrop-filter: blur(6px);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* ==========================================================================
   APPLE-STYLE BENTO GRID
   ========================================================================== */
.bento-grid-apple {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.bento-item {
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 45px rgba(0,0,0,0.03);
}

.bento-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.bento-geo { 
  grid-column: span 7; 
  grid-row: span 2; 
  background: linear-gradient(135deg, #111726 0%, #0b0f19 100%); 
  color: white; 
  justify-content: space-between;
}

.bento-geo .stat-number-giant {
  background: linear-gradient(to right, #30c9f0, #fd2c84);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5rem;
}

.bento-80 { 
  grid-column: span 5; 
  background: #ffffff; 
  justify-content: center;
}

.bento-15 { 
  grid-column: span 5; 
  background: #ffffff; 
  justify-content: center;
}

@media (max-width: 992px) {
  .bento-grid-apple {
    grid-template-columns: 1fr;
  }
  .bento-geo, .bento-80, .bento-15 { 
    grid-column: span 1; 
    grid-row: auto; 
  }
}

/* ==========================================================================
   SMOOTH FAQ ACCORDION WITH FOCUS BLUR
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* When any item is active, blur the ones that are NOT active */
  transition: all 0.5s ease;
}

.faq-list:has(.faq-item.active) .faq-item:not(.active) {
  opacity: 0.5;
  filter: blur(3px);
  transform: scale(0.98);
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.faq-item.active {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(48, 201, 240, 0.3);
  transform: scale(1.01);
  z-index: 2;
  position: relative;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  outline: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-cyan);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), padding 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding-bottom: 24px;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: var(--text-dark-muted);
  line-height: 1.65;
}

.faq-item.active .faq-answer-inner {
  min-height: 0;
  opacity: 1;
  transition-delay: 0.15s;
}

/* ==========================================================================
   3D HOLOGRAPHIC SIMULATOR (APPLE STYLE)
   ========================================================================== */
.ai-prompt-simulator {
  /* Set perspective on the parent if needed, but we will apply transform directly */
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s ease, box-shadow 0.1s ease; /* fast transition for mouse tracking */
}

/* Base state when not hovering */
.ai-prompt-simulator.animating-reset {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Holographic search bar halo */
.sim-prompt-box {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.sim-prompt-box::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(90deg, #fd2c84, #7119b6, #3265ed, #30c9f0, #fd2c84);
  background-size: 200% 200%;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.5s ease;
  animation: holoGradient 4s linear infinite;
}

.sim-prompt-box:hover::before {
  opacity: 1;
}

.sim-prompt-box:hover {
  background: rgba(30, 41, 59, 0.95);
  box-shadow: 0 0 20px rgba(48, 201, 240, 0.2);
}

@keyframes holoGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ==========================================================================
   MOBILE NAVIGATION & RESPONSIVE FIXES
   ========================================================================== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .header-actions .btn-primary { display: none; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  
  /* Form back to 1 column on mobile */
  .landing-form-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  /* Restore font sizes for mobile like Demand Gen */
  .hero-title-apple { font-size: 2.6rem !important; }
  h2 { font-size: 2rem !important; }
  h3 { font-size: 1.5rem !important; }
  p { font-size: 1rem !important; }
  
  .bento-geo .stat-number-giant { font-size: 4rem !important; }
  .count-up { font-size: 3.5rem !important; }
  .bento-item { padding: 24px !important; }
  
  .sim-title { font-size: 0.9rem !important; }
}

.span-2 { grid-column: span 2; }
@media (max-width: 992px) {
  .span-2 { grid-column: span 1; }
}

@media (max-width: 768px) {
  .footer-bottom { 
    flex-direction: column; 
    gap: 16px; 
    text-align: center; 
  }
}

/* ==========================================================================
   HERO TRUST CAPSULE
   ========================================================================== */
.hero-trust-capsule {
  margin: 40px auto 40px auto;
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 100px;
  padding: 16px 36px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-trust-capsule:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hero-trust-capsule p {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-trust-capsule strong {
  color: var(--color-navy);
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-trust-capsule {
    border-radius: 24px;
    padding: 16px 20px;
    display: block;
  }
}
