/* ==========================================================================
   VIBRA - Official Website Design System & Stylesheet
   Domain: https://vibra-app.online
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --brand-primary: #FF6B00;
  --brand-secondary: #FF8500;
  --brand-accent: #00F2FE;
  --brand-gold: #FFB300;
  --brand-fire: #FF4500;
  
  /* Gradients */
  --grad-vibra: linear-gradient(135deg, #FF6B00 0%, #FF9500 100%);
  --grad-warm: linear-gradient(135deg, #FF6B00 0%, #FFA834 100%);
  --grad-fire: linear-gradient(135deg, #FF4500 0%, #FF8A00 100%);
  --grad-cyan: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%);
  --grad-gold: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  --grad-surface: linear-gradient(180deg, rgba(22, 25, 38, 0.8) 0%, rgba(14, 16, 24, 0.95) 100%);
  --grad-hero: radial-gradient(circle at 50% 20%, rgba(255, 107, 0, 0.15) 0%, rgba(8, 9, 13, 0) 70%);

  /* Dark Theme Surfaces */
  --bg-app: #08090D;
  --bg-surface: #10121A;
  --bg-card: #171926;
  --bg-card-hover: #1E2132;
  --bg-elevated: #1F2233;
  --bg-overlay: rgba(8, 9, 13, 0.88);
  --bg-glass: rgba(22, 25, 38, 0.72);
  --bg-glass-heavy: rgba(16, 18, 26, 0.94);
  --bg-pill: rgba(255, 255, 255, 0.08);
  --bg-input: #151722;

  /* Text & Accents */
  --text-primary: #FFFFFF;
  --text-secondary: #BAC0D6;
  --text-muted: #767C98;
  --text-inverse: #08090D;
  
  /* Borders & Dividers */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-highlight: rgba(255, 107, 0, 0.35);
  --border-active: #FF6B00;

  /* Functional / Intention Palette */
  --intent-serious: #FF6B00;
  --intent-serious-bg: rgba(255, 107, 0, 0.14);
  --intent-meet: #A855F7;
  --intent-meet-bg: rgba(168, 85, 247, 0.14);
  --intent-drink: #FF8A00;
  --intent-drink-bg: rgba(255, 138, 0, 0.14);
  --intent-friendship: #10B981;
  --intent-friendship-bg: rgba(16, 185, 129, 0.14);
  --intent-plans: #06B6D4;
  --intent-plans-bg: rgba(6, 182, 212, 0.14);
  --intent-intense: #EF4444;
  --intent-intense-bg: rgba(239, 68, 68, 0.14);

  /* Status / Actions */
  --color-like: #00E676;
  --color-pass: #FF3D71;
  --color-supervibra: #00F2FE;
  --color-undo: #FFB300;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --header-height: 76px;
}

html[lang="ja"], html[lang="ja-JP"] {
  --font-family: 'Noto Sans JP', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  letter-spacing: 0.02em;
}

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows & Glow */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --glow-vibra: 0 0 30px rgba(255, 107, 0, 0.35);
  --glow-accent: 0 0 25px rgba(0, 242, 254, 0.3);
  --glow-gold: 0 0 25px rgba(255, 179, 0, 0.3);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-app);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-app);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Background Ambient Orbs */
.web-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  will-change: transform;
}

.ambient-orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #FF6B00 0%, transparent 70%);
  top: -150px;
  left: 20%;
}

.ambient-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #00F2FE 0%, transparent 70%);
  top: 40%;
  right: -100px;
  opacity: 0.15;
}

.ambient-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #A855F7 0%, transparent 70%);
  bottom: 10%;
  left: -150px;
  opacity: 0.18;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 860px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(16, 18, 26, 0.4) 0%, rgba(8, 9, 13, 0.8) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.text-gradient-vibra {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--brand-primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.section-badge-cyan {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.3);
  color: var(--brand-accent);
}

.section-badge-gold {
  background: rgba(255, 179, 0, 0.12);
  border-color: rgba(255, 179, 0, 0.3);
  color: var(--brand-gold);
}

.section-badge-green {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--intent-friendship);
}

.section-header h2 {
  margin-bottom: 16px;
}

/* Header & Navbar */
.web-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.web-header.scrolled {
  background: rgba(8, 9, 13, 0.95);
  border-bottom-color: rgba(255, 107, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.brand-logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.brand-logo-text span {
  color: var(--brand-primary);
}

.brand-age-badge {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-weight: 700;
  margin-left: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Market Selector */
.market-selector-wrapper {
  position: relative;
}

.market-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.market-btn:hover {
  border-color: var(--brand-primary);
  background: var(--bg-elevated);
}

.market-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  max-height: 380px;
  overflow-y: auto;
  z-index: 1100;
  display: none;
  backdrop-filter: blur(16px);
}

.market-dropdown.show {
  display: block;
  animation: fadeIn 0.2s ease;
}

.market-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.market-option:hover, .market-option.active {
  background: rgba(255, 107, 0, 0.12);
  color: var(--brand-primary);
  font-weight: 700;
}

/* Language Selector (Independent from Market / Location) */
.lang-selector-wrapper {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  border-color: var(--brand-accent, #00F2FE);
  background: var(--bg-elevated);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 190px;
  max-height: 360px;
  overflow-y: auto;
  z-index: 1100;
  display: none;
  backdrop-filter: blur(16px);
}

.lang-dropdown.show {
  display: block;
  animation: fadeIn 0.2s ease;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.lang-option:hover, .lang-option.active {
  background: rgba(0, 242, 254, 0.12);
  color: #00F2FE;
  font-weight: 700;
}

/* 5 Pillars of Control Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: transform var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 71, 126, 0.4);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pillar-icon {
  font-size: 1.8rem;
}

.pillar-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.pillar-tag-auto {
  background: rgba(0, 242, 254, 0.12);
  color: #00F2FE;
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.pillar-tag-user {
  background: rgba(255, 71, 126, 0.12);
  color: var(--brand-primary);
  border: 1px solid rgba(255, 71, 126, 0.3);
}

/* International & Andorra Cards */
.international-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 242, 254, 0.04) 100%);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-top: 32px;
}

.border-rule-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 20px;
}


.market-option-flag {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-vibra {
  background: var(--grad-vibra);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.35);
}

.btn-vibra:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline-vibra {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}

.btn-outline-vibra:hover {
  background: rgba(255, 107, 0, 0.12);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  z-index: 999;
}

.mobile-drawer.open {
  display: flex;
  animation: slideDown 0.25s ease;
}

.mobile-nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px 0;
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--brand-primary);
  font-size: 0.9rem;
  font-weight: 700;
  width: fit-content;
}

.hero-title {
  margin-bottom: 8px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.store-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.store-badge-btn:hover {
  border-color: var(--brand-primary);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

.store-badge-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.store-badge-text small {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.store-badge-text strong {
  font-size: 0.85rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  margin-top: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.trust-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* Hero Concept Card (Modern Landing Feature Visual) */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-concept-card {
  width: 100%;
  max-width: 440px;
  background: rgba(18, 21, 33, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 107, 0, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 5;
}

.concept-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.concept-brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.concept-brand-badge img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.concept-brand-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.concept-live-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.concept-live-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.concept-flow-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.concept-flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.concept-flow-step:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateX(4px);
}

.concept-step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-num-1 { background: rgba(255, 107, 0, 0.15); color: #FF6B00; border: 1px solid rgba(255, 107, 0, 0.3); }
.step-num-2 { background: rgba(0, 242, 254, 0.15); color: #00F2FE; border: 1px solid rgba(0, 242, 254, 0.3); }
.step-num-3 { background: rgba(16, 185, 129, 0.15); color: #10B981; border: 1px solid rgba(16, 185, 129, 0.3); }

.concept-step-text strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 2px;
}

.concept-step-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.35;
}

.concept-footer-guarantee {
  margin-top: 4px;
  padding: 12px 14px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #BAC0D6;
}

.concept-footer-guarantee strong {
  color: #fff;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
  animation: float 4s ease-in-out infinite;
}

.badge-match {
  top: 60px;
  left: -40px;
  border-color: rgba(0, 242, 254, 0.4);
}

.badge-verified {
  bottom: 80px;
  right: -30px;
  border-color: rgba(16, 185, 129, 0.4);
  animation-delay: 2s;
}

/* Cards & Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition-normal);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-title {
  margin-bottom: 12px;
}

/* Intentions Section */
.intentions-interactive-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.intentions-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.intention-pill-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.intention-pill-btn:hover {
  border-color: var(--border-medium);
  background: var(--bg-elevated);
}

.intention-pill-btn.active {
  border-color: currentColor;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

.intention-pill-btn .intent-title {
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.intention-pill-btn .intent-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.intention-preview-box {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.intention-preview-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--active-intent-color, var(--brand-primary));
  transition: background var(--transition-normal);
}

/* Steps Section (How it works) */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.15);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.match-rule-banner {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(0, 242, 254, 0.08) 100%);
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.match-rule-content h3 {
  color: var(--brand-primary);
  margin-bottom: 8px;
}

/* Security Trust Matrix */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.security-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-normal);
}

.security-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-3px);
}

.security-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
}

/* Plans & Pricing */
.pricing-market-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #1C1A2E 0%, #10121D 100%);
  border: 2px solid var(--brand-primary);
  box-shadow: var(--glow-vibra);
  transform: scale(1.03);
}

.pricing-card.vip-card {
  border-color: var(--brand-gold);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-vibra);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.plan-badge-gold {
  background: var(--grad-gold);
  color: #08090D;
  box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
}

.plan-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-price-block {
  margin: 16px 0;
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
}

.plan-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-features-list {
  list-style: none;
  margin: 24px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.plan-feature-item svg {
  color: #10B981;
  flex-shrink: 0;
  margin-top: 4px;
}

.plan-feature-item.highlight {
  color: var(--text-primary);
  font-weight: 600;
}

/* Launch Promo Section */
.promo-banner-card {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 179, 0, 0.1) 50%, rgba(0, 242, 254, 0.1) 100%);
  border: 1.5px solid rgba(255, 107, 0, 0.4);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.promo-tier-box {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.promo-tier-box.active {
  border-color: var(--brand-primary);
  background: linear-gradient(180deg, #1F2233 0%, #151722 100%);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.25);
}

.promo-badge-tag {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.promo-badge-tag.tag-gold {
  background: rgba(255, 179, 0, 0.15);
  color: var(--brand-gold);
  border: 1px solid rgba(255, 179, 0, 0.3);
}

.promo-badge-tag.tag-orange {
  background: rgba(255, 107, 0, 0.15);
  color: var(--brand-primary);
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.promo-badge-tag.tag-cyan {
  background: rgba(0, 242, 254, 0.15);
  color: var(--brand-accent);
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.promo-clarification-note {
  margin-top: 28px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(8, 9, 13, 0.6);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.open {
  border-color: var(--border-medium);
  background: var(--bg-card);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-icon-arrow {
  transition: transform var(--transition-fast);
  color: var(--brand-primary);
  flex-shrink: 0;
}

.faq-item.open .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer-panel {
  padding: 0 24px 20px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer-panel {
  display: block;
  animation: fadeIn 0.2s ease;
}

/* Download CTA Banner */
.download-banner {
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.2) 0%, rgba(16, 18, 26, 0.95) 75%);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.download-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.download-banner p {
  max-width: 600px;
  margin: 0 auto 32px auto;
  font-size: 1.15rem;
}

/* Contact Form Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox-label input {
  margin-top: 3px;
  accent-color: var(--brand-primary);
}

.form-feedback {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
}

.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #EF4444;
}

/* Legal Documents Template */
.legal-page-header {
  padding: 60px 0 40px 0;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 40px;
}

.legal-disclaimer-box {
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid rgba(255, 179, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--brand-gold);
  font-size: 0.9rem;
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.legal-article {
  margin-bottom: 36px;
}

.legal-article h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.legal-article p {
  margin-bottom: 12px;
  font-size: 1rem;
}

.legal-article ul {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.legal-article li {
  margin-bottom: 8px;
}

/* Footer */
.web-footer {
  background: #06070A;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 32px 0;
  margin-top: 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
  gap: 16px;
}

/* Cookie Banner Modal */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: none;
  animation: slideUp 0.3s ease;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner h4 {
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }

  .hero-ctas, .hero-trust-row, .store-badges {
    justify-content: center;
  }

  .grid-4, .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .intentions-interactive-container {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .grid-2, .grid-3, .grid-4, .steps-timeline, .security-grid, .promo-grid {
    grid-template-columns: 1fr;
  }

  .intentions-selector-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .match-rule-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* ══ OPTIMIZACIÓN UX & CONVERSIÓN: MATCHING CONCEPT & FLOW ══ */
.matching-concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.matching-concept-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.matching-concept-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.15);
}

.matching-concept-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-vibra);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.matching-concept-card h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 8px;
}

.matching-concept-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Flow Simple Row */
.flow-simple-container {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 48px;
}

.flow-simple-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.flow-simple-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.flow-simple-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--brand-accent);
}

.flow-simple-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* Free Plan Banner */
.free-tier-banner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.free-tier-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.free-tier-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .matching-concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .matching-concept-grid {
    grid-template-columns: 1fr;
  }
  .flow-simple-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .flow-simple-arrow {
    display: none;
  }
}

/* Plans Comparison Table */
.plans-comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.plans-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.95rem;
}

.plans-comparison-table th,
.plans-comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.plans-comparison-table th {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.plans-comparison-table th:first-child,
.plans-comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: #fff;
}

.plans-comparison-table tr:last-child td {
  border-bottom: none;
}

.badge-check {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
}

.badge-no {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
}

/* Free Experience Cards & Women Message */
.free-experience-section {
  margin-bottom: 40px;
}

.free-experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.free-exp-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.free-exp-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.free-exp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.free-exp-card li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.free-exp-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #10B981;
}

.women-empowerment-banner {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
  border: 1px solid rgba(236, 72, 153, 0.35);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.women-empowerment-banner .banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.women-empowerment-banner h4 {
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 4px 0;
}

.women-empowerment-banner p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   DISCOVERY ACTIONS ARCHITECTURE & MATCH SHOWCASE
   ========================================================================== */
.discovery-actions-architecture {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 36px 0;
}

.action-group-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.action-group-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}

.action-group-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.badge-decision { background: rgba(255, 69, 0, 0.15); color: #FF4500; border: 1px solid rgba(255, 69, 0, 0.3); }
.badge-rewind { background: rgba(168, 85, 247, 0.15); color: #C084FC; border: 1px solid rgba(168, 85, 247, 0.3); }
.badge-boss { background: rgba(255, 179, 0, 0.15); color: var(--brand-gold); border: 1px solid rgba(255, 179, 0, 0.3); }

.action-group-header h3 {
  font-size: 1.15rem;
  color: #fff;
  margin: 0;
}

.action-item-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.action-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.action-item-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.action-item-info strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.action-item-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.match-auto-banner {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
  border: 1px solid rgba(255, 0, 127, 0.3);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  margin: 36px 0;
}

.match-formula-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.match-formula-node {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

.match-formula-plus, .match-formula-equal {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-primary);
}

.match-formula-result {
  background: var(--grad-vibra);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
}

/* ==========================================================================
   VIBRAMATCH — UNIVERSAL RESPONSIVE DESIGN SYSTEM
   Mobile First & Desktop Optimized: 320px → 1920px+
   Zero Horizontal Overflow & Perfect Device Adaptation
   ========================================================================== */

/* Universal Layout & Anti-Overflow Guard */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

/* ──────────────────────────────────────────────────────────────────────────
   LARGE DESKTOP & WIDESCREEN (≥ 1440px)
   ────────────────────────────────────────────────────────────────────────── */
@media (min-width: 1440px) {
  :root {
    --container-max: 1320px;
  }
  .container {
    max-width: 1320px;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   STANDARD DESKTOP (1025px – 1439px)
   ────────────────────────────────────────────────────────────────────────── */
@media (min-width: 1025px) {
  .mobile-menu-btn {
    display: none !important;
  }
  .mobile-drawer {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   TABLETS & LAPTOPS (≤ 1024px)
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px 10px;
    transition: all var(--transition-fast);
  }

  .mobile-menu-btn:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
  }

  .nav-actions {
    gap: 10px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 720px;
  }

  .hero-tag {
    margin: 0 auto;
  }

  .hero-ctas {
    justify-content: center;
    width: 100%;
  }

  .store-badges {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-trust-row {
    justify-content: center;
    width: 100%;
  }

  .hero-mockup-wrapper {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-concept-card {
    width: 100%;
    max-width: 520px;
  }

  .intentions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .discovery-actions-architecture {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   TABLET PORTRAIT & LARGE PHONES (≤ 768px)
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --header-height: 66px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .hero-section {
    padding: 40px 0 60px 0;
  }

  .brand-logo-text {
    font-size: 1.35rem;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .intentions-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .intentions-simulator-box {
    padding: 20px 16px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .discovery-actions-architecture {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .free-experience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .market-btn span:not(.market-option-flag):not(#active-market-flag),
  .lang-btn span:not(.lang-option-flag):not(#active-lang-flag) {
    display: none;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   SMARTPHONES (≤ 480px) — 320px, 360px, 375px, 390px, 412px, 430px
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section {
    padding: 38px 0;
  }

  .brand-logo-text {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .brand-logo-img {
    width: 32px;
    height: 32px;
  }

  .brand-age-badge {
    font-size: 0.55rem;
    padding: 1px 4px;
    margin-left: 4px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .btn-sm[data-track-download="nav"] {
    display: none;
  }

  .market-btn, .lang-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  h2 {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
    line-height: 1.25;
  }

  p, .lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .store-badges {
    flex-direction: column;
    gap: 8px;
  }

  .store-badge-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }

  .hero-concept-card {
    padding: 18px 14px;
    border-radius: var(--radius-lg);
  }

  .concept-step-item {
    gap: 10px;
  }

  .concept-step-num {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  .concept-step-text strong {
    font-size: 0.95rem;
  }

  .concept-step-text p {
    font-size: 0.85rem;
  }

  .intention-card {
    padding: 16px 14px;
  }

  .intention-card-header {
    gap: 10px;
  }

  .intention-icon {
    font-size: 1.8rem;
  }

  .plan-card {
    padding: 20px 16px;
  }

  .plan-price-num {
    font-size: 2.2rem;
  }

  .women-empowerment-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 10px;
  }

  .match-auto-banner {
    padding: 20px 16px;
  }

  .match-formula-diagram {
    gap: 8px;
  }

  .match-formula-node {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .match-formula-result {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   VERY SMALL SCREENS (≤ 360px) — iPhone SE, Galaxy Fold outer, etc.
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 360px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-logo-text {
    font-size: 1.05rem;
  }

  .brand-logo-img {
    width: 28px;
    height: 28px;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   MOBILE LANDSCAPE ORIENTATION (max-height: 500px)
   ────────────────────────────────────────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .web-header {
    position: relative;
  }
  .mobile-drawer {
    height: auto;
    position: static;
  }
  .hero-section {
    padding: 30px 0;
  }
}



