/* ============================================
   OMNIGY — Dark Liquid Editorial
   Fonts: Cormorant Garamond + Urbanist
   ============================================ */

:root {
  --dark-bg: #060609;
  --elevated-bg: #0D0D12;
  --card-bg: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.06);

  --text-primary: #EBEBDF;
  --text-muted: #6B6B78;

  --accent-gradient: linear-gradient(135deg, #F06449, #EDA24E);
  --accent-solid: #F08050;
  --accent-glow: rgba(240, 100, 73, 0.12);
  --green: #34D399;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Urbanist', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

@media (hover: hover) {
  body {
    cursor: none;
  }
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

::selection {
  background: var(--accent-glow);
  color: var(--text-primary);
}

/* ========== Custom Cursor ========== */
.cursor,
.cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  display: none;
}

@media (hover: hover) {
  .cursor,
  .cursor-dot {
    display: block;
  }
}

.cursor {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.15;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s var(--ease);
}

.cursor-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.8;
  transform: translate(-50%, -50%);
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor,
body:has(.btn:hover) .cursor {
  width: 80px;
  height: 80px;
  opacity: 0.25;
}

/* ========== Grain Texture ========== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ========== Container ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container-narrow {
  max-width: 880px;
}

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease);
}

.nav.glass {
  background: rgba(6, 6, 9, 0.8);
  backdrop-filter: blur(40px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.3s var(--ease);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

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

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.3rem;
}

.lang-active {
  background: var(--accent-gradient);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.lang-link {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  color: var(--text-muted);
  transition: color 0.3s, background 0.3s;
}

.lang-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-login {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
}

.nav-login:hover {
  color: var(--text-primary);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 100, 73, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent-solid);
  color: var(--accent-solid);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.5;
  will-change: transform;
}

.hero-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240, 100, 73, 0.2), transparent 70%);
  top: -10%;
  right: 10%;
  animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(237, 162, 78, 0.15), transparent 70%);
  bottom: 10%;
  left: 5%;
  animation: blobFloat 25s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 100, 73, 0.1), transparent 70%);
  top: 40%;
  left: 30%;
  animation: blobFloat 30s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.1); }
  66% { transform: translate(-40px, 40px) scale(0.95); }
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 15vw, 20rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-solid);
  background: rgba(240, 100, 73, 0.08);
  border: 1px solid rgba(240, 100, 73, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-solid);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.chat-glass {
  width: 400px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.6s var(--ease);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 120px rgba(240, 100, 73, 0.08);
}

.chat-glass:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(1deg);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240, 128, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--green);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.chat-messages {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 340px;
}

.chat-msg {
  max-width: 85%;
  opacity: 0;
  transform: translateY(10px);
  animation: msgSlide 0.5s var(--ease) forwards;
}

.chat-msg-customer {
  align-self: flex-end;
}

.chat-msg-ai {
  align-self: flex-start;
}

.chat-msg[data-delay="0"] { animation-delay: 0.6s; }
.chat-msg[data-delay="1"] { animation-delay: 1.4s; }
.chat-msg[data-delay="2"] { animation-delay: 2.4s; }
.chat-msg[data-delay="3"] { animation-delay: 3.2s; }

@keyframes msgSlide {
  to { opacity: 1; transform: translateY(0); }
}

.msg-bubble {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-msg-customer .msg-bubble {
  background: var(--accent-gradient);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-msg-ai .msg-bubble {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-left-radius: 4px;
}

.msg-time {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  padding: 0 0.3rem;
}

.chat-msg-customer .msg-time {
  text-align: right;
}

.msg-speed {
  color: var(--green);
  font-weight: 600;
}

.msg-card {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.msg-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.25rem 0;
}

.msg-card-total {
  font-weight: 700;
  color: var(--green);
}

.msg-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

.chat-footer {
  padding: 0.8rem 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.chat-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent-solid), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

/* ========== Marquee ========== */
.marquee {
  background: var(--elevated-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.marquee-content span {
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== Problem Section ========== */
.problem {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--dark-bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.problem-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(10rem, 18vw, 18rem);
  font-weight: 700;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.problem-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.problem-card-stat {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-solid);
  margin-bottom: 0.5rem;
}

.problem-card-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.problem-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
  padding-left: 2rem;
  border-left: 3px solid var(--accent-solid);
}

/* ========== Section Headers ========== */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.title-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== Benefits (Bento Grid) ========== */
.benefits {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--dark-bg);
}

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

.bento-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s var(--ease);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 100, 73, 0.2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bento-card:nth-child(1) { grid-column: span 8; }
.bento-card:nth-child(2) { grid-column: span 4; }
.bento-card:nth-child(3) { grid-column: span 4; }
.bento-card:nth-child(4) { grid-column: span 4; }
.bento-card:nth-child(5) { grid-column: span 4; }
.bento-card:nth-child(6) { grid-column: span 8; }

.bento-icon {
  width: 56px;
  height: 56px;
  background: rgba(240, 100, 73, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-solid);
}

.bento-title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.bento-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ========== How It Works ========== */
.how-it-works {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--elevated-bg);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 360px;
  text-align: center;
  padding: 0 2rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent-solid);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(240, 100, 73, 0.08);
  border: 1px solid rgba(240, 100, 73, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-solid);
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.step-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-solid), transparent);
  margin-top: 8rem;
  flex-shrink: 0;
}

/* ========== Channels ========== */
.channels {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--dark-bg);
}

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

.channel-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s var(--ease);
}

.channel-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.channel-card-coming {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
}

.channel-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.channel-icon-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.channel-icon-instagram {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1));
  color: #C13584;
}

.channel-icon-more {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.channel-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.channel-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ========== Pricing ========== */
.pricing {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--elevated-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s var(--ease);
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.price-card-popular {
  position: relative;
}

.price-card-popular::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: var(--accent-gradient);
  z-index: -1;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
}

.price-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.price-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-custom {
  font-size: 3rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-features svg {
  flex-shrink: 0;
}

/* ========== FAQ ========== */
.faq {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--dark-bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--accent-solid);
}

.faq-item p {
  padding-bottom: 1.8rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
}

/* ========== CTA ========== */
.cta {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--dark-bg);
  text-align: center;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.cta-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 100, 73, 0.2), transparent 70%);
  top: -20%;
  left: 20%;
  animation: blobFloat 15s ease-in-out infinite;
}

.cta-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(237, 162, 78, 0.15), transparent 70%);
  bottom: -20%;
  right: 20%;
  animation: blobFloat 20s ease-in-out infinite reverse;
}

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

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* ========== Footer ========== */
.footer {
  background: var(--elevated-bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent-solid);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ========== Animations ========== */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.bento .anim:nth-child(1) { transition-delay: 0s; }
.bento .anim:nth-child(2) { transition-delay: 0.1s; }
.bento .anim:nth-child(3) { transition-delay: 0.2s; }
.bento .anim:nth-child(4) { transition-delay: 0.3s; }
.bento .anim:nth-child(5) { transition-delay: 0.4s; }
.bento .anim:nth-child(6) { transition-delay: 0.5s; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .bento-card:nth-child(1) { grid-column: span 12; }
  .bento-card:nth-child(2) { grid-column: span 6; }
  .bento-card:nth-child(3) { grid-column: span 6; }
  .bento-card:nth-child(4) { grid-column: span 6; }
  .bento-card:nth-child(5) { grid-column: span 6; }
  .bento-card:nth-child(6) { grid-column: span 12; }

  .problem-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .problem-quote {
    border-left: none;
    border-top: 3px solid var(--accent-solid);
    padding-left: 0;
    padding-top: 2rem;
  }

  .channels-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .step-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-solid), transparent);
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 9, 0.98);
    backdrop-filter: blur(40px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
  }

  .nav-links.active a {
    font-size: 1.5rem;
    color: var(--text-primary);
  }

  .chat-glass {
    width: 100%;
    max-width: 360px;
    transform: none;
  }

  .chat-glass:hover {
    transform: none;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card {
    grid-column: span 1 !important;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
