:root {
  /* Vibrant Brand Colors */
  --brand-blue: #0066FF;
  --brand-blue-hover: #0052CC;
  --brand-green: #00C853;
  --brand-purple: #8B5CF6;
  --brand-orange: #FF6D00;
  
  /* Layout Colors */
  --bg-main: #FAFCFF;
  --bg-card: #FFFFFF;
  --text-dark: #0A192F;
  --text-gray: #4A5568;
  --border-light: #E2E8F0;
  
  /* Utilities */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-soft: 0 10px 40px rgba(0, 102, 255, 0.08);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-float: 0 25px 50px -12px rgba(0, 102, 255, 0.25);
  
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.header-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 80px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.03em;
  min-width: 0;
}
.brand span {
  white-space: nowrap;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
}
.main-nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.main-nav a svg {
  width: 18px;
  height: 18px;
}
.main-nav a:hover {
  color: var(--brand-blue);
}
.main-nav .nav-cta {
  background: var(--brand-blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}
.main-nav .nav-cta:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  z-index: 1002;
  flex: 0 0 44px;
  border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  position: absolute;
  left: 10px;
  transition: all 0.3s ease;
  border-radius: 3px;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg); top: 21px; }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg); top: 21px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.btn-primary {
  background: var(--brand-blue);
  color: #fff;
}
.btn-glow {
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}
.btn-primary:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.5);
}
.btn-whatsapp {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 200, 83, 0.3);
}
.btn-whatsapp:hover {
  background: #00B248;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 200, 83, 0.4);
}
.btn-outline {
  background: #fff;
  color: var(--brand-blue);
  border: 2px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.btn-full {
  width: 100%;
}

/* Typography Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-center {
  text-align: center;
}

/* Pills & Badges */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 102, 255, 0.1);
  color: var(--brand-blue);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.pill-badge svg {
  width: 18px;
  height: 18px;
}
.badge-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--brand-purple);
}
.badge-green {
  background: rgba(0, 200, 83, 0.14);
  color: #008a3a;
}
.badge-orange {
  background: rgba(255, 109, 0, 0.14);
  color: #c65300;
}

/* Sections */
.section {
  padding: 120px 0;
}
.section-header {
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-header p {
  font-size: 1.15rem;
  color: var(--text-gray);
}
.bg-light {
  background-color: #F1F5F9;
}

/* CSS iPhone Mockup */
.iphone-mockup {
  position: relative;
  width: 280px;
  height: 570px;
  background: #000;
  border-radius: 40px;
  border: 10px solid #111;
  box-shadow: var(--shadow-float);
  overflow: hidden;
  margin: 0 auto;
  transform-style: preserve-3d;
}
.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #111;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-app-screen {
  padding: 32px 14px 14px;
  background: #F1F5F9;
  overflow: hidden;
}
.hero-app-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-app-top span,
.hero-app-top strong {
  display: block;
  text-align: left;
}
.hero-app-top span {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
}
.hero-app-top strong {
  margin-top: 4px;
  color: #64748B;
  font-size: 0.72rem;
  font-weight: 700;
}
.hero-app-top button {
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: var(--text-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}
.hero-app-top button svg {
  width: 18px;
  height: 18px;
}
.hero-app-top button span {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EF4444;
}
.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hero-metrics-grid article {
  min-width: 0;
  min-height: 88px;
  padding: 12px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-metrics-grid span,
.hero-metrics-grid strong,
.hero-metrics-grid small {
  display: block;
  text-align: left;
}
.hero-metrics-grid span {
  color: #64748B;
  font-size: 0.68rem;
  font-weight: 800;
}
.hero-metrics-grid strong {
  color: var(--text-dark);
  font-size: 1.06rem;
  font-weight: 950;
  line-height: 1;
}
.hero-metrics-grid small {
  color: #16A34A;
  font-size: 0.62rem;
  font-weight: 850;
}
.hero-app-card {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-app-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-app-icon svg {
  width: 20px;
  height: 20px;
}
.hero-app-icon.orange {
  background: #FFF7ED;
  color: #F97316;
}
.hero-alert-card strong,
.hero-alert-card span {
  display: block;
  text-align: left;
}
.hero-alert-card strong {
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 900;
}
.hero-alert-card span {
  margin-top: 2px;
  color: #64748B;
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 700;
}
.hero-app-section-title {
  margin: 15px 2px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-app-section-title span,
.hero-app-section-title strong {
  font-size: 0.76rem;
  font-weight: 900;
}
.hero-app-section-title span {
  color: var(--text-dark);
}
.hero-app-section-title strong {
  color: var(--brand-blue);
}
.hero-task-list {
  display: grid;
  gap: 8px;
}
.hero-task-list div {
  min-width: 0;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.92);
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}
.hero-task-list svg {
  width: 18px;
  height: 18px;
  color: var(--brand-blue);
}
.hero-task-list span {
  min-width: 0;
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 850;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-task-list strong {
  color: var(--brand-blue);
  font-size: 0.66rem;
  font-weight: 950;
}
.hero-chart-card {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--brand-blue);
  color: #fff;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 10px;
  align-items: end;
  box-shadow: 0 16px 28px rgba(0, 102, 255, 0.18);
}
.hero-chart-card span,
.hero-chart-card strong {
  display: block;
  text-align: left;
}
.hero-chart-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
}
.hero-chart-card strong {
  margin-top: 4px;
  font-size: 0.98rem;
  font-weight: 950;
}
.hero-bars {
  height: 56px;
  display: flex;
  align-items: end;
  gap: 5px;
}
.hero-bars span {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 2px 2px;
  background: rgba(255, 255, 255, 0.82);
  transform-origin: bottom;
  animation: heroBarRise 1.2s ease both;
}
.hero-bars span:nth-child(2) { animation-delay: 0.08s; }
.hero-bars span:nth-child(3) { animation-delay: 0.16s; }
.hero-bars span:nth-child(4) { animation-delay: 0.24s; }
.hero-bars span:nth-child(5) { animation-delay: 0.32s; }
.hero-bars span:nth-child(6) { animation-delay: 0.40s; }
.hero-bars span:nth-child(7) { animation-delay: 0.48s; }
@keyframes heroBarRise {
  from {
    transform: scaleY(0.12);
    opacity: 0.45;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
/* Glass reflection on screen */
.iphone-mockup::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(30deg);
  pointer-events: none;
  z-index: 20;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
}
.shape-blue {
  background: var(--brand-blue);
  width: 600px;
  height: 600px;
  top: -100px;
  right: -200px;
}
.shape-green {
  background: var(--brand-green);
  width: 400px;
  height: 400px;
  bottom: 0;
  left: -100px;
}

.hero-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-text {
  flex: 1.1;
  max-width: 650px;
}
.hero-text h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-weight: 600;
  color: var(--text-gray);
  font-size: 0.95rem;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.icon-green-text {
  color: var(--brand-green);
  width: 18px;
  height: 18px;
}

.hero-visual {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}
.floating-stat {
  position: absolute;
  bottom: 60px;
  left: -40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 30;
  border: 1px solid rgba(255,255,255,0.5);
}
.stat-icon {
  font-size: 2rem;
  background: #E8F5E9;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.floating-stat p {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 600;
}
.floating-stat strong {
  font-size: 1.25rem;
  color: var(--brand-green);
  font-weight: 800;
}

/* Animations */
@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.bounce-anim {
  animation: bounceSlow 4s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-anim {
  animation: floatUp 5s ease-in-out infinite;
}

/* Lore Super Section */
.lore-super-section {
  background: #F8FAFC;
  position: relative;
}
.lore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lore-title-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.lore-title-row .pill-badge {
  margin-bottom: 0;
}
.lore-avatar {
  width: 74px;
  height: 74px;
  padding: 4px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.22), 0 8px 18px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}
.lore-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
}
.lore-text-box h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}
.lead-text {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 40px;
}
.lore-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.lore-feature {
  display: flex;
  gap: 20px;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg {
  width: 28px;
  height: 28px;
}
.icon-orange { background: #FFF3E0; color: var(--brand-orange); }
.icon-green { background: #E8F5E9; color: var(--brand-green); }
.lore-feature h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.lore-feature p {
  color: var(--text-gray);
}
.lore-visual-box {
  position: relative;
}
.lore-visual-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  z-index: 0;
}
.lore-visual-box .iphone-mockup,
.lore-chat-demo {
  z-index: 1;
}
.lore-chat-demo {
  position: relative;
  width: min(360px, 100%);
  margin: 0 auto;
  border-radius: 34px;
  background: #F1F5F9;
  border: 1px solid rgba(226, 232, 240, 0.96);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.lore-chat-header {
  min-height: 76px;
  padding: 16px 18px;
  background: rgba(248, 250, 252, 0.94);
  display: grid;
  grid-template-columns: 22px 44px 1fr 22px;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
}
.lore-chat-header svg {
  width: 20px;
  height: 20px;
}
.lore-chat-avatar {
  width: 44px;
  height: 44px;
  padding: 3px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.16);
  overflow: hidden;
}
.lore-chat-avatar img,
.message-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}
.lore-chat-header strong,
.lore-chat-header span {
  display: block;
  text-align: left;
}
.lore-chat-header strong {
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1;
}
.lore-chat-header span {
  margin-top: 4px;
  color: #64748B;
  font-size: 0.84rem;
  font-weight: 650;
}
.lore-help-icon {
  color: var(--text-dark);
}
.lore-chat-body {
  min-height: 360px;
  max-height: 360px;
  padding: 17px 15px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  scrollbar-width: none;
}
.lore-chat-body::-webkit-scrollbar {
  display: none;
}
.lore-message {
  opacity: 0;
  transform: translateY(12px);
}
.lore-visual-box.is-visible .lore-message {
  animation: chatMessageIn 0.55s ease forwards;
}
.lore-message.is-dynamic {
  animation: chatMessageIn 0.42s ease forwards;
}
.user-message {
  max-width: 82%;
  align-self: flex-end;
  padding: 14px 16px;
  border-radius: 18px 18px 6px 18px;
  background: var(--brand-blue);
  color: #fff;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.38;
  box-shadow: 0 16px 28px rgba(0, 102, 255, 0.18);
}
.user-message span,
.assistant-message span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
}
.lore-typing {
  width: 74px;
  max-height: 48px;
  margin-left: 42px;
  padding: 13px 15px;
  border-radius: 16px 16px 16px 6px;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  display: flex;
  gap: 5px;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
}
.lore-visual-box.is-visible .lore-typing {
  animation: typingBubble 2.2s ease 0.7s forwards;
}
.lore-typing.is-live {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
.lore-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94A3B8;
  animation: typingDot 0.9s ease-in-out infinite;
}
.lore-typing span:nth-child(2) {
  animation-delay: 0.14s;
}
.lore-typing span:nth-child(3) {
  animation-delay: 0.28s;
}
.assistant-message {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 9px;
  align-items: end;
}
.lore-visual-box.is-visible .assistant-message:nth-of-type(3) {
  animation-delay: 1.75s;
}
.lore-visual-box.is-visible .assistant-message:nth-of-type(4) {
  animation-delay: 2.65s;
}
.lore-visual-box.is-visible .assistant-message:nth-of-type(5) {
  animation-delay: 3.45s;
}
.message-avatar {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 102, 255, 0.14);
}
.assistant-message p {
  margin: 0;
  padding: 13px 14px;
  border-radius: 16px 16px 16px 6px;
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  text-align: left;
  font-size: 0.86rem;
  line-height: 1.42;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.assistant-message span {
  color: #94A3B8;
}
.compact-message p {
  font-weight: 700;
}
.lore-live-chat {
  display: contents;
}
.lore-chat-suggestions {
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.lore-chat-suggestions::-webkit-scrollbar {
  display: none;
}
.lore-chat-suggestions.is-dragging {
  cursor: grabbing;
}
.lore-chat-suggestions.is-dragging button {
  cursor: grabbing;
}
.lore-chat-suggestions button {
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 850;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lore-chat-suggestions button:hover,
.lore-chat-suggestions button.active {
  background: rgba(0, 102, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.35);
  color: var(--brand-blue);
}
.lore-chat-suggestions button:active {
  transform: scale(0.98);
}
.lore-chat-suggestions svg {
  width: 16px;
  height: 16px;
  color: var(--brand-blue);
}
.lore-chat-input {
  padding: 13px 12px 15px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: center;
}
.lore-chat-input span {
  min-height: 46px;
  padding: 0 15px;
  border-radius: 14px;
  font-size: 0.86rem;
  border: 1px solid var(--border-light);
  color: #94A3B8;
  background: #fff;
  display: flex;
  align-items: center;
  font-weight: 700;
  text-align: left;
}
.lore-chat-input button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--brand-blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(0, 102, 255, 0.22);
}
.lore-chat-input svg {
  width: 22px;
  height: 22px;
}
.lore-chat-tabs {
  min-height: 60px;
  padding: 8px 8px 10px;
  background: #fff;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.lore-chat-tabs span {
  min-width: 0;
  color: #64748B;
  display: grid;
  place-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}
.lore-chat-tabs svg {
  width: 18px;
  height: 18px;
}
.lore-chat-tabs .active {
  color: var(--brand-blue);
}
@keyframes chatMessageIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes typingBubble {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  18%, 78% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    max-height: 0;
    margin-bottom: -14px;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
    transform: translateY(-4px);
  }
}
@keyframes typingDot {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* Dynamic Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 24px;
}
.bento-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.bento-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  z-index: 2;
  position: relative;
}
.bento-card p {
  font-size: 1.05rem;
  opacity: 0.9;
  z-index: 2;
  position: relative;
}
.blue-card {
  background: var(--brand-blue);
  color: #fff;
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.green-card {
  background: var(--brand-green);
  color: #fff;
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.white-card {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}
.bento-text {
  flex: 1;
}
.bento-img-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.bento-img-crop {
  width: 200px;
  border-radius: 20px 20px 0 0;
  border: 4px solid #111;
  border-bottom: none;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
  transform: rotate(-5deg) translateY(20px);
}
.center-img .bento-img-crop {
  transform: none;
  border-bottom: 4px solid #111;
  border-radius: 20px;
  margin-top: 20px;
}
.bento-icon {
  margin-top: auto;
  align-self: flex-end;
  display: flex;
}
.bento-icon svg {
  width: 64px;
  height: 64px;
  color: var(--text-gray);
  opacity: 0.3;
}

/* Online Store */
.online-store-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.online-store-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}
.online-store-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}
.online-store-points {
  display: grid;
  gap: 24px;
}
.online-store-point {
  display: flex;
  gap: 18px;
}
.online-store-point h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.online-store-point p {
  color: var(--text-gray);
  line-height: 1.6;
}
.icon-blue {
  background: rgba(0, 102, 255, 0.1);
  color: var(--brand-blue);
}
.store-browser-mockup {
  position: relative;
  background: #F5F7FB;
  border: 10px solid #0F172A;
  border-radius: 32px;
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.store-topbar {
  min-height: 62px;
  padding: 12px 14px;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.store-chip-preview,
.store-whatsapp-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.store-chip-preview {
  min-width: 0;
}
.store-chip-preview strong {
  font-size: 0.98rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.store-logo-preview {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.store-logo-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.store-whatsapp-preview {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-green);
  font-size: 0.82rem;
  font-weight: 900;
  flex-shrink: 0;
}
.store-whatsapp-preview svg,
.store-search-preview svg,
.store-hero-preview svg {
  width: 16px;
  height: 16px;
}
.store-search-preview {
  margin: 12px 14px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border-light);
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  font-size: 0.86rem;
  font-weight: 700;
}
.store-search-preview input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
}
.store-search-preview input::placeholder {
  color: #94A3B8;
}
.store-hero-preview {
  min-height: 145px;
  margin: 0 14px;
  padding: 20px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(85, 42, 54, 0.88), rgba(85, 42, 54, 0.3)),
    url("assets/cosmetico-kit-skincare.webp") center right 20% / cover;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.store-hero-preview h3 {
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.store-hero-preview p {
  opacity: 0.9;
}
.store-hero-preview span {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}
.store-categories-preview {
  padding: 12px 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.store-categories-preview::-webkit-scrollbar {
  display: none;
}
.store-categories-preview button {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 900;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.store-categories-preview button:hover,
.store-categories-preview .active {
  background: #B65A73;
  border-color: #B65A73;
  color: #fff;
}
.store-categories-preview button:active {
  transform: scale(0.98);
}
.store-products-preview {
  padding: 0 14px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  height: 360px;
  align-content: start;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.7) transparent;
}
.store-products-preview::-webkit-scrollbar {
  width: 6px;
}
.store-products-preview::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}
.store-products-preview::-webkit-scrollbar-track {
  background: transparent;
}
.store-products-preview article {
  min-width: 0;
  min-height: 112px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 12px;
}
.store-product-media {
  width: 92px;
  height: 92px;
  background: #EFF6FF;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
}
.store-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.store-product-info {
  min-width: 0;
  text-align: left;
}
.store-products-preview h4 {
  margin: 0 0 4px;
  color: var(--text-dark);
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 900;
}
.store-products-preview p {
  display: -webkit-box;
  margin: 0 0 8px;
  color: #64748B;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.28;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.store-products-preview strong {
  display: block;
  margin: 0;
  color: var(--brand-blue);
  font-size: 0.96rem;
  font-weight: 950;
}
.store-add-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border-radius: 999px;
  border: 0;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 950;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.store-add-preview:hover,
.store-add-preview.added {
  background: #004FCC;
}
.store-add-preview:active {
  transform: scale(0.98);
}
.store-empty-preview {
  grid-column: 1 / -1;
  min-height: 160px;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  color: #64748B;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
}
.store-cart-preview {
  margin: 0 14px 14px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.store-cart-preview span,
.store-cart-preview small,
.store-cart-preview strong {
  display: block;
}
.store-cart-preview span {
  color: var(--text-gray);
  font-size: 0.78rem;
  font-weight: 800;
}
.store-cart-preview strong {
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 950;
}
.store-cart-preview small {
  max-width: 245px;
  margin-top: 4px;
  color: #64748B;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.3;
}
.store-checkout-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  border: 0;
  background: var(--brand-green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
}
.store-checkout-preview:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}
.online-store-visual {
  position: relative;
}
.online-order-note {
  position: absolute;
  right: -12px;
  bottom: 42px;
  width: min(270px, 82%);
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.86);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.online-order-note svg {
  width: 30px;
  height: 30px;
  color: var(--brand-green);
  flex-shrink: 0;
}
.online-order-note strong,
.online-order-note span {
  display: block;
}
.online-order-note strong {
  font-size: 0.95rem;
  font-weight: 900;
}
.online-order-note span {
  color: var(--text-gray);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Video Demo */
.video-demo-section {
  background: #F8FAFC;
}
.video-demo-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}
.video-demo-copy h2 {
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.video-demo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.video-demo-points span {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}
.video-demo-points svg {
  width: 18px;
  height: 18px;
  color: var(--brand-purple);
}
.video-card {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: #0F172A;
  color: #fff;
  box-shadow: var(--shadow-float);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 420px;
  display: grid;
  align-items: stretch;
}
.video-card:hover .video-play-control {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--brand-blue);
}
.video-card-screen {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 28px;
  opacity: 0.72;
}
.video-card-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.84)),
    linear-gradient(90deg, rgba(0, 102, 255, 0.32), rgba(139, 92, 246, 0.22));
}
.video-card-screen img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  border-radius: 18px;
  border: 5px solid #111;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}
.video-card-screen img:nth-child(1) {
  transform: translateY(22px) rotate(-5deg);
}
.video-card-screen img:nth-child(2) {
  transform: translateY(-8px);
}
.video-card-screen img:nth-child(3) {
  transform: translateY(22px) rotate(5deg);
}
.video-play-control {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-blue);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  z-index: 2;
}
.video-play-control svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
  stroke-width: 0;
  margin-left: 4px;
}
.video-card:hover .video-play-control {
  color: #fff;
}
.video-card-caption {
  align-self: end;
  position: relative;
  z-index: 2;
  padding: 34px;
  display: block;
  text-align: left;
}
.video-card-caption strong,
.video-card-caption span {
  display: block;
}
.video-card-caption strong {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 900;
  line-height: 1.08;
}
.video-card-caption span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  font-weight: 650;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
}
.video-modal.open {
  display: grid;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.72);
  backdrop-filter: blur(8px);
}
.video-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  z-index: 1;
}
.video-modal-close {
  position: absolute;
  right: 0;
  top: -54px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.video-modal-close svg {
  width: 22px;
  height: 22px;
}
.video-frame-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}
.video-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Founders */
.founders-section {
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.founders-header {
  max-width: 640px;
  margin-bottom: 48px;
}
.founders-header span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.founders-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.founders-header p {
  color: var(--text-gray);
  font-size: 1.12rem;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.founder-profile {
  min-width: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: center;
}
.founder-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.founder-role {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.founder-info h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.founder-info p {
  color: var(--text-gray);
  line-height: 1.65;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-main) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.featured-testimonial {
  border-color: rgba(0, 102, 255, 0.35);
  box-shadow: 0 18px 45px rgba(0, 102, 255, 0.12);
}
.testimonial-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #E2E8F0;
  overflow: hidden;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.testimonial-rating {
  display: flex;
  gap: 4px;
  color: var(--brand-orange);
  margin-bottom: 18px;
}
.testimonial-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke-width: 0;
}
.testimonial-card blockquote {
  color: var(--text-dark);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 28px;
  flex: 1;
}
.testimonial-author {
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}
.testimonial-author strong,
.testimonial-author span {
  display: block;
}
.testimonial-author strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
}
.testimonial-author span {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-top: 3px;
}

/* Pricing */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.cancel-note {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 32px;
}
.pricing-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pro-box {
  border: 3px solid var(--brand-blue);
  box-shadow: var(--shadow-soft);
}
.tag-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-blue);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.9rem;
}
.plan-head {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.plan-head h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.price span {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 600;
}
.plan-items {
  list-style: none;
  flex: 1;
  margin-bottom: 40px;
}
.plan-items li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
}
.plan-items li svg {
  color: var(--brand-blue);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.plan-items li strong {
  color: var(--text-dark);
}

/* Reports Section */
.reports-section {
  background: var(--bg-main);
}
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 32px;
  margin-top: 48px;
}
.report-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}
.report-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.report-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.report-icon svg {
  width: 40px;
  height: 40px;
  color: var(--brand-blue);
}
.hidden-report {
  display: none;
}
.hidden-report.show {
  display: block;
  animation: fadeInReport 0.5s ease;
}
@keyframes fadeInReport {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ Section */
.faq-section {
  background: #fff;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: var(--brand-blue);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--brand-blue);
  flex-shrink: 0;
}
.faq-answer {
  color: var(--text-gray);
  line-height: 1.6;
}

/* CTA Section */
.download-section {
  padding-bottom: 120px;
}
.cta-banner {
  background: var(--brand-blue);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.cta-text {
  flex: 1;
  max-width: 500px;
  z-index: 2;
}
.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
}
.store-buttons {
  display: flex;
  gap: 16px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.store-btn:hover {
  background: #222;
  transform: translateY(-2px);
}
.store-info {
  display: flex;
  flex-direction: column;
}
.store-info .small { font-size: 0.7rem; color: #aaa; text-transform: uppercase; }
.store-info .big { font-size: 1.2rem; font-weight: 700; }
.cta-image {
  z-index: 2;
}
.app-icon-large {
  width: 200px;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--brand-blue);
}

/* Scroll Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1280px) {
  .menu-toggle {
    display: inline-flex !important;
  }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
    border-top: 1px solid var(--border-light);
  }
  .main-nav a {
    justify-content: center;
    min-height: 44px;
    font-size: 1rem;
  }
  .main-nav .nav-cta {
    padding: 12px 18px;
  }
  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-open .site-header {
    background: #fff;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .main-nav a {
    font-size: 0.95rem;
  }
  .main-nav .nav-cta {
    padding: 10px 18px;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .lore-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .hero-visual {
    width: 100%;
  }
  .hero-visual .iphone-mockup {
    width: 300px;
    height: 610px;
  }
  .floating-stat {
    left: calc(50% - 250px);
  }
  .hero-text { max-width: 100%; }
  .hero-actions, .trust-row, .lore-features { justify-content: center; }
  .lore-feature { text-align: left; }
  .online-store-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .online-store-copy {
    text-align: center;
  }
  .online-store-points {
    max-width: 720px;
    margin: 0 auto;
  }
  .online-store-point {
    text-align: left;
  }
  .online-store-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }
  .video-demo-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .video-demo-copy {
    text-align: center;
  }
  .video-demo-points {
    justify-content: center;
  }
  .founders-header {
    margin-inline: auto;
    text-align: center;
  }
  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card {
    display: grid;
    grid-template-columns: 260px 1fr;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .blue-card, .green-card {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }
  .bento-img-wrap { justify-content: center; margin-top: 40px; }
  .bento-img-crop { transform: none; margin-bottom: -40px; }
  
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .store-buttons { justify-content: center; }
  .cta-image { margin-top: 40px; }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 84px;
  }
  .container,
  .header-container,
  .hero-container {
    width: calc(100% - 32px);
    max-width: 1200px;
  }
  .header-container {
    height: 72px;
  }
  .brand {
    font-size: 1.1rem;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .main-nav {
    top: 72px;
    max-height: calc(100vh - 72px);
  }
  .section {
    padding: 84px 0;
  }
  .section-header {
    margin-bottom: 42px;
  }
  .section-header h2,
  .online-store-copy h2,
  .video-demo-copy h2,
  .founders-header h2,
  .lore-text-box h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }
  .lead-text,
  .section-header p,
  .founders-header p {
    font-size: 1.04rem;
  }
  .hero {
    padding: 128px 0 72px;
  }
  .hero-container {
    gap: 48px;
  }
  .hero-text h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    letter-spacing: 0;
  }
  .hero-subtitle {
    font-size: 1.06rem;
    margin-bottom: 28px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 28px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-row {
    justify-content: center;
    gap: 10px 16px;
  }
  .iphone-mockup {
    width: min(250px, 78vw);
    height: auto;
    aspect-ratio: 280 / 570;
    border-width: 8px;
    border-radius: 34px;
  }
  .hero-visual .iphone-mockup {
    width: min(280px, 84vw);
    height: auto;
    aspect-ratio: 300 / 610;
  }
  .iphone-notch {
    width: 102px;
    height: 22px;
  }
  .iphone-screen {
    border-radius: 26px;
  }
  .hero-app-screen {
    padding: 30px 12px 12px;
  }
  .hero-metrics-grid {
    gap: 8px;
  }
  .hero-metrics-grid article {
    min-height: 82px;
    padding: 10px;
  }
  .hero-metrics-grid strong {
    font-size: 0.98rem;
  }
  .hero-alert-card {
    padding: 10px;
  }
  .hero-task-list div {
    padding: 9px;
  }
  .hero-chart-card {
    padding: 10px;
  }
  .floating-stat {
    left: 50%;
    bottom: 28px;
    padding: 12px 16px;
    transform: translateX(-50%);
    animation: none;
  }
  .floating-stat p {
    font-size: 0.78rem;
  }
  .floating-stat strong {
    font-size: 1.05rem;
  }
  .lore-grid {
    gap: 42px;
  }
  .lore-chat-demo {
    border-radius: 28px;
  }
  .lore-chat-body {
    min-height: auto;
  }
  .lore-title-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .lore-avatar {
    width: 68px;
    height: 68px;
  }
  .lore-feature,
  .online-store-point {
    gap: 14px;
  }
  .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .icon-circle svg {
    width: 24px;
    height: 24px;
  }
  .bento-card {
    padding: 28px;
    border-radius: 24px;
  }
  .bento-card h3 {
    font-size: 1.28rem;
  }
  .bento-card p {
    font-size: 1rem;
  }
  .bento-img-wrap {
    margin-top: 28px;
  }
  .bento-img-crop {
    width: min(190px, 70vw);
  }
  .online-store-section {
    padding: 84px 0;
  }
  .online-store-grid {
    gap: 42px;
  }
  .online-store-points {
    gap: 18px;
  }
  .video-card {
    min-height: 360px;
  }
  .video-card-screen {
    gap: 8px;
    padding: 20px;
  }
  .video-card-screen img {
    border-width: 4px;
    border-radius: 14px;
  }
  .video-card-screen img:nth-child(1),
  .video-card-screen img:nth-child(3) {
    display: none;
  }
  .video-card-screen {
    grid-template-columns: 1fr;
    padding-inline: 74px;
  }
  .video-play-control {
    width: 74px;
    height: 74px;
  }
  .video-card-caption {
    padding: 26px;
  }
  .store-browser-mockup {
    border-width: 7px;
    border-radius: 24px;
  }
  .store-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .store-whatsapp-preview {
    min-height: 32px;
  }
  .store-hero-preview {
    min-height: 132px;
    align-items: flex-start;
    flex-direction: column;
  }
  .store-products-preview {
    gap: 10px;
  }
  .store-products-preview h4 {
    font-size: 0.84rem;
  }
  .store-products-preview strong {
    font-size: 0.9rem;
  }
  .store-add-preview {
    font-size: 1.05rem;
  }
  .store-cart-preview {
    align-items: stretch;
    flex-direction: column;
  }
  .online-order-note {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
  .founder-profile {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .founder-photo {
    width: 104px;
    height: 104px;
  }
  .testimonial-card {
    display: flex;
  }
  .testimonial-content { padding: 24px; }
  .pricing-container {
    grid-template-columns: 1fr;
  }
  .pricing-box {
    padding: 34px 24px;
  }
  .price {
    font-size: 2.9rem;
  }
  .reports-grid {
    gap: 18px;
  }
  .report-card,
  .faq-item {
    padding: 24px;
  }
  .faq-question {
    align-items: flex-start;
    font-size: 1.04rem;
  }
  .cta-banner {
    padding: 42px 24px;
    border-radius: 24px;
  }
  .cta-text h2 {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }
  .store-buttons { flex-direction: column; }
  .store-btn {
    justify-content: center;
    width: 100%;
  }
  .app-icon-large {
    width: 150px;
    border-radius: 32px;
  }
  .footer-flex { flex-direction: column; text-align: center; }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .container,
  .header-container,
  .hero-container {
    width: calc(100% - 24px);
    max-width: 1200px;
  }
  .btn {
    padding: 14px 18px;
    font-size: 1rem;
  }
  .pill-badge {
    font-size: 0.84rem;
    padding: 7px 12px;
  }
  .shape-blue {
    width: 360px;
    height: 360px;
    right: -180px;
  }
  .shape-green {
    width: 280px;
    height: 280px;
    left: -160px;
  }
  .lore-feature,
  .online-store-point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .lore-chat-header {
    grid-template-columns: 20px 42px 1fr 20px;
    padding: 16px;
    gap: 10px;
  }
  .lore-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .lore-chat-header strong {
    font-size: 1.24rem;
  }
  .lore-chat-header span {
    font-size: 0.82rem;
  }
  .lore-chat-body {
    padding: 16px 12px 18px;
    gap: 12px;
  }
  .user-message {
    max-width: 88%;
    font-size: 0.92rem;
  }
  .assistant-message {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
  }
  .message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
  .assistant-message p {
    padding: 13px 14px;
    font-size: 0.9rem;
  }
  .lore-typing {
    margin-left: 38px;
  }
  .lore-chat-suggestions {
    overflow-x: auto;
  }
  .lore-chat-input {
    grid-template-columns: minmax(0, 1fr) 48px;
  }
  .lore-chat-input span,
  .lore-chat-input button {
    min-height: 48px;
    height: 48px;
  }
  .lore-chat-tabs {
    min-height: 62px;
    padding-inline: 6px;
  }
  .lore-chat-tabs span {
    font-size: 0.64rem;
  }
  .lore-chat-tabs svg {
    width: 19px;
    height: 19px;
  }
  .store-browser-mockup {
    border-width: 6px;
    border-radius: 20px;
  }
  .store-products-preview {
    padding-inline: 10px;
  }
  .store-products-preview h4 {
    min-height: 0;
  }
  .video-card {
    min-height: 320px;
  }
  .video-card-screen {
    padding-inline: 46px;
  }
  .video-card-caption {
    padding: 22px;
  }
  .testimonial-photo {
    aspect-ratio: 4 / 3;
  }
  .footer-links {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .site-header {
    overflow: visible;
  }
  .menu-toggle {
    display: inline-flex !important;
    visibility: visible;
    opacity: 1;
  }
  .main-nav {
    display: flex;
    visibility: hidden;
  }
  .menu-open .main-nav {
    visibility: visible;
  }
}

/* Lore responsive refinements */
.lore-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.lore-visual-box {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.lore-visual-box::before {
  inset: 50% auto auto 50%;
  width: min(520px, 100%);
  height: min(520px, 100%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lore-chat-demo {
  max-width: 100%;
}

.lore-chat-header > div:not(.lore-chat-avatar),
.assistant-message > div:last-child,
.lore-chat-input span {
  min-width: 0;
}

.lore-chat-header strong,
.lore-chat-header span,
.lore-chat-input span,
.lore-chat-tabs span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.lore-chat-header strong,
.lore-chat-header span,
.lore-chat-input span {
  white-space: nowrap;
}

.lore-chat-suggestions button {
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .lore-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .lore-text-box {
    order: 1;
  }

  .lore-visual-box {
    order: 2;
  }

  .lore-features {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .lore-super-section {
    padding-block: 78px;
  }

  .lore-grid {
    gap: 34px;
  }

  .lore-chat-demo {
    width: min(340px, 100%);
    border-radius: 24px;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
  }

  .lore-chat-header {
    min-height: 68px;
    grid-template-columns: 18px 40px minmax(0, 1fr) 18px;
    gap: 9px;
    padding: 14px;
  }

  .lore-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .lore-chat-header strong {
    font-size: 1.1rem;
  }

  .lore-chat-header span {
    font-size: 0.76rem;
  }

  .lore-chat-body {
    min-height: 0;
    max-height: 300px;
    padding: 14px 12px;
    gap: 10px;
  }

  .user-message {
    max-width: 90%;
    padding: 12px 13px;
    font-size: 0.84rem;
  }

  .assistant-message {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
  }

  .message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .assistant-message p {
    padding: 12px;
    font-size: 0.82rem;
    line-height: 1.36;
  }

  .lore-typing {
    margin-left: 36px;
    padding: 11px 13px;
  }

  .lore-chat-suggestions {
    padding: 10px;
    gap: 8px;
  }

  .lore-chat-suggestions button {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .lore-chat-input {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 11px 10px 12px;
  }

  .lore-chat-input span,
  .lore-chat-input button {
    min-height: 42px;
    height: 42px;
  }

  .lore-chat-input button {
    width: 42px;
    border-radius: 12px;
  }

  .lore-chat-tabs {
    min-height: 54px;
    padding: 7px 6px 9px;
  }

  .lore-chat-tabs span {
    font-size: 0.56rem;
  }

  .store-search-preview {
    margin: 10px 12px;
  }

  .store-categories-preview {
    padding: 10px 12px;
  }

  .store-categories-preview button {
    font-size: 0.76rem;
  }

  .store-products-preview {
    height: 300px;
  }

  .store-products-preview article {
    grid-template-columns: 84px minmax(0, 1fr) 36px;
    min-height: 104px;
    gap: 10px;
  }

  .store-product-media {
    width: 84px;
    height: 84px;
  }

  .store-cart-preview small {
    max-width: none;
  }
}

@media (max-width: 420px) {
  .lore-chat-demo {
    width: min(100%, 320px);
    border-radius: 20px;
  }

  .lore-chat-header {
    grid-template-columns: 18px 38px minmax(0, 1fr) 18px;
    gap: 8px;
    padding: 12px;
  }

  .lore-chat-avatar {
    width: 38px;
    height: 38px;
  }

  .lore-chat-header strong {
    font-size: 1.02rem;
  }

  .lore-chat-header span {
    font-size: 0.72rem;
  }

  .lore-chat-body {
    max-height: 280px;
    padding: 12px 10px;
  }

  .user-message {
    max-width: 92%;
    font-size: 0.82rem;
  }

  .assistant-message p {
    font-size: 0.8rem;
  }

  .lore-chat-suggestions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .lore-chat-suggestions button {
    min-width: 0;
    justify-content: center;
    white-space: normal;
    line-height: 1.1;
  }

  .lore-chat-input span,
  .lore-chat-input button {
    min-height: 40px;
    height: 40px;
  }

  .lore-chat-input button {
    width: 40px;
  }

  .lore-chat-tabs {
    min-height: 50px;
  }

  .lore-chat-tabs span {
    font-size: 0;
    gap: 0;
  }

  .lore-chat-tabs svg {
    width: 20px;
    height: 20px;
  }

  .store-search-preview {
    height: 38px;
    margin: 10px;
    font-size: 0.78rem;
  }

  .store-categories-preview {
    padding: 10px;
  }

  .store-products-preview {
    height: 260px;
    gap: 8px;
  }

  .store-products-preview article {
    grid-template-columns: 72px minmax(0, 1fr) 34px;
    min-height: 92px;
    padding: 8px;
    gap: 8px;
  }

  .store-product-media {
    width: 72px;
    height: 72px;
  }

  .store-products-preview h4 {
    font-size: 0.78rem;
  }

  .store-products-preview p {
    font-size: 0.68rem;
    -webkit-line-clamp: 1;
  }

  .store-add-preview {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .store-empty-preview {
    min-height: 120px;
    padding: 18px;
    font-size: 0.82rem;
  }

  .store-checkout-preview {
    width: 100%;
  }
}
/* Quick audience diagnosis */
.diagnosis-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #f7f9ff;
}

.diagnosis-shell {
  padding: 48px;
  border: 1px solid rgba(36, 84, 255, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(22, 42, 86, 0.08);
}

.diagnosis-copy { max-width: 720px; margin-bottom: 28px; }
.diagnosis-copy h2 { margin: 8px 0 10px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; }
.diagnosis-copy p { margin: 0; color: var(--text-gray); font-size: 1.08rem; }
.diagnosis-kicker { color: var(--brand-blue); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }

.diagnosis-options { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.diagnosis-options button {
  display: flex; align-items: flex-start; gap: 12px; min-height: 126px; padding: 20px;
  border: 1px solid #e3e8f4; border-radius: 18px; background: #fff; color: var(--text-dark);
  font: inherit; text-align: left; cursor: pointer; transition: .2s ease;
}
.diagnosis-options button:hover, .diagnosis-options button:focus-visible, .diagnosis-options button.is-selected {
  border-color: var(--brand-blue); background: rgba(36, 84, 255, .045); transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(36, 84, 255, .10); outline: none;
}
.diagnosis-options button > svg { flex: 0 0 auto; width: 25px; height: 25px; color: var(--brand-blue); }
.diagnosis-options span { display: grid; gap: 7px; }
.diagnosis-options strong { line-height: 1.15; }
.diagnosis-options small { color: var(--text-gray); line-height: 1.35; font-size: .82rem; }
.diagnosis-result { grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; margin-top: 20px; padding: 22px; border-radius: 18px; background: #102451; color: #fff; }
.diagnosis-result:not([hidden]) { display: grid; }
.diagnosis-result-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,.12); }
.diagnosis-result span { color: #9fb8ff; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.diagnosis-result h3 { margin: 3px 0 4px; font-size: 1.2rem; }
.diagnosis-result p { margin: 0; color: #dbe4fa; font-size: .9rem; }

@media (max-width: 900px) {
  .diagnosis-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .diagnosis-result { grid-template-columns: auto 1fr; }
  .diagnosis-result .btn { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 520px) {
  .diagnosis-shell { padding: 28px 18px; border-radius: 22px; }
  .diagnosis-options { grid-template-columns: 1fr; }
  .diagnosis-options button { min-height: 0; }
}
