/* ============================================ */
/* LAMADEEP — REDESIGN 2026                     */
/* Innovative SaaS website                      */
/* ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-primary: #04060C;
  --bg-secondary: #080C18;
  --bg-tertiary: #0E1424;
  --bg-card: rgba(255, 255, 255, 0.03);
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --primary-dim: rgba(108, 92, 231, 0.15);
  --secondary: #00CEC9;
  --secondary-dim: rgba(0, 206, 201, 0.12);
  --accent: #FD79A8;
  --accent-dim: rgba(253, 121, 168, 0.12);
  --warm: #FDCB6E;
  --warm-dim: rgba(253, 203, 110, 0.12);
  --gradient-main: linear-gradient(135deg, #6C5CE7, #00CEC9);
  --gradient-warm: linear-gradient(135deg, #FD79A8, #FDCB6E);
  --gradient-hero: linear-gradient(135deg, #6C5CE7 0%, #0984E3 50%, #00CEC9 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(108,92,231,0.08), rgba(0,206,201,0.05));
  --text: #F5F6FA;
  --text-secondary: #B2B8CD;
  --text-dim: #636E8A;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --glass: rgba(8, 12, 24, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-glow: 0 0 80px rgba(108, 92, 231, 0.12);
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.25);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 140px 0;
  position: relative;
}

.section-sm {
  padding: 100px 0;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.text-dim { color: var(--text-dim); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 20px;
  padding: 6px 16px 6px 12px;
  background: var(--secondary-dim);
  border: 1px solid rgba(0, 206, 201, 0.2);
  border-radius: var(--radius-full);
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

.section-desc.centered {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: 0 4px 24px rgba(108, 92, 231, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(108, 92, 231, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border-hover);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: var(--transition-fast);
  padding: 8px 14px;
  border-radius: var(--radius-full);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}

.lang-switch:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

/* ============================================ */
/* HERO SECTION — Full viewport immersive       */
/* ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Animated gradient mesh orbs */
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-bg .orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.3) 0%, transparent 70%);
  top: -15%;
  left: 20%;
  animation-duration: 18s;
}

.hero-bg .orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 206, 201, 0.2) 0%, transparent 70%);
  bottom: -10%;
  right: 10%;
  animation-duration: 22s;
  animation-delay: -5s;
}

.hero-bg .orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253, 121, 168, 0.15) 0%, transparent 70%);
  top: 30%;
  right: 30%;
  animation-duration: 25s;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.02); }
}

/* Dot grid pattern */
.hero-bg .grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(0, 206, 201, 0.5);
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(0, 206, 201, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 16px rgba(0, 206, 201, 0.3); }
}

.hero h1 {
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  line-height: 1.08;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 72px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

/* ============================================ */
/* MARQUEE — Infinite scroll ticker             */
/* ============================================ */
.marquee-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-secondary);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item .marquee-icon {
  font-size: 1.3rem;
}

.marquee-separator {
  width: 4px;
  height: 4px;
  background: var(--text-dim);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

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

/* ============================================ */
/* PROBLEM / STATS SECTION                      */
/* ============================================ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.problem-card {
  background: var(--bg-card);
  padding: 48px 36px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.problem-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  background: var(--primary-dim);
}

.problem-stat {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================ */
/* KEY MESSAGE BANNER                           */
/* ============================================ */
.key-message {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.key-message-inner {
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.key-message-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--gradient-main);
}

.key-message-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0.4;
}

.key-message h2 {
  margin-bottom: 20px;
}

.key-message p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================ */
/* FLOW — Horizontal timeline steps             */
/* ============================================ */
.flow-section {
  position: relative;
}

.flow-visual {
  display: grid;
  gap: 2px;
  margin-top: 64px;
}

.flow-step {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.flow-step:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

/* Colored left accent bar */
.flow-step::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  transition: height 0.3s;
}

.flow-step:nth-child(1)::before { background: var(--primary); }
.flow-step:nth-child(2)::before { background: var(--secondary); }
.flow-step:nth-child(3)::before { background: var(--accent); }
.flow-step:nth-child(4)::before { background: var(--warm); }

.flow-step-number {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-dim);
  color: var(--primary-light);
}

.flow-step:nth-child(2) .flow-step-number { background: var(--secondary-dim); color: var(--secondary); }
.flow-step:nth-child(3) .flow-step-number { background: var(--accent-dim); color: var(--accent); }
.flow-step:nth-child(4) .flow-step-number { background: var(--warm-dim); color: var(--warm); }

.flow-step-content h3 {
  margin-bottom: 16px;
}

.flow-step-content p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.flow-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flow-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.flow-feature-tag:hover {
  background: var(--primary-dim);
  border-color: rgba(108, 92, 231, 0.25);
  color: var(--text);
}

.flow-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Decorative glow per step */
.flow-step:nth-child(1) .flow-step-visual { box-shadow: inset 0 0 60px rgba(108, 92, 231, 0.06); }
.flow-step:nth-child(2) .flow-step-visual { box-shadow: inset 0 0 60px rgba(0, 206, 201, 0.06); }
.flow-step:nth-child(3) .flow-step-visual { box-shadow: inset 0 0 60px rgba(253, 121, 168, 0.06); }
.flow-step:nth-child(4) .flow-step-visual { box-shadow: inset 0 0 60px rgba(253, 203, 110, 0.06); }

.flow-step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.flow-icon-large {
  font-size: 4.5rem;
  opacity: 0.85;
}

/* ============================================ */
/* BENTO GRID — Chat AI features                */
/* ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 2px;
  margin-top: 64px;
}

.bento-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
}

/* Large bento cards span 2 columns */
.bento-card.bento-wide {
  grid-column: span 2;
}

.bento-card.bento-tall {
  grid-row: span 2;
}

.bento-card .bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: var(--primary-dim);
}

.bento-card:nth-child(2) .bento-icon { background: var(--secondary-dim); }
.bento-card:nth-child(3) .bento-icon { background: var(--accent-dim); }
.bento-card:nth-child(4) .bento-icon { background: var(--warm-dim); }
.bento-card:nth-child(5) .bento-icon { background: var(--primary-dim); }
.bento-card:nth-child(6) .bento-icon { background: var(--secondary-dim); }

.bento-card h4 {
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.bento-card .bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.bento-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: var(--primary-dim);
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-weight: 500;
}

/* ============================================ */
/* PRODUCTIONS — Masonry-style grid             */
/* ============================================ */
.outputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.output-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.output-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* Gradient top line on hover */
.output-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
}

.output-card:hover::after {
  opacity: 1;
}

.output-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  margin-bottom: 16px;
  background: var(--primary-dim);
}

.output-card:nth-child(2) .output-icon { background: var(--secondary-dim); }
.output-card:nth-child(3) .output-icon { background: var(--accent-dim); }
.output-card:nth-child(4) .output-icon { background: var(--warm-dim); }
.output-card:nth-child(5) .output-icon { background: var(--primary-dim); }
.output-card:nth-child(6) .output-icon { background: var(--secondary-dim); }
.output-card:nth-child(7) .output-icon { background: var(--accent-dim); }
.output-card:nth-child(8) .output-icon { background: var(--warm-dim); }
.output-card:nth-child(9) .output-icon { background: var(--primary-dim); }

.output-card h4 {
  margin-bottom: 8px;
}

.output-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================ */
/* ROI SECTION — Big numbers with glow          */
/* ============================================ */
.roi-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.roi-card {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.roi-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
}

.roi-number {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.roi-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.roi-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ============================================ */
/* USE CASES — 2-column cards                   */
/* ============================================ */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.usecase-card {
  padding: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.usecase-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
}

.usecase-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.usecase-card h4 {
  margin-bottom: 12px;
}

.usecase-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.usecase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.usecase-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: var(--primary-dim);
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-weight: 500;
}

/* ============================================ */
/* TRUST / SOVEREIGNTY                          */
/* ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.trust-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
}

.trust-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.trust-card h4 {
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================ */
/* PRICING — Clean cards                        */
/* ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  align-items: start;
}

.pricing-card {
  padding: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--border-hover);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(108, 92, 231, 0.08) 0%, rgba(0, 206, 201, 0.04) 100%);
  border-color: rgba(108, 92, 231, 0.25);
  position: relative;
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pricing-popular {
  display: inline-flex;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gradient-main);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  width: fit-content;
  color: white;
}

.pricing-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-price {
  margin-bottom: 36px;
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
}

/* ============================================ */
/* CTA / CONTACT SECTION                        */
/* ============================================ */
.cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.75;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: rgba(108, 92, 231, 0.06);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select option {
  background: var(--bg-secondary);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.site-footer {
  padding: 72px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ============================================ */
/* REVEAL ANIMATIONS                            */
/* ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================ */
/* CARD GLOW EFFECT ON HOVER                    */
/* ============================================ */
.glow-card {
  position: relative;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.glow-card:hover::before {
  opacity: 0.08;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1024px) {
  .flow-step {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .flow-step-visual {
    min-height: 180px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

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

@media (max-width: 768px) {
  .section { padding: 100px 0; }
  .section-sm { padding: 72px 0; }

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

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

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

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

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links { display: none; }
  .nav-right .btn { display: none; }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .flow-step { padding: 28px 20px; }
  .output-card { padding: 28px 20px; }
  .usecase-card { padding: 28px 20px; }
  .bento-card { padding: 28px 20px; }
  .pricing-card { padding: 32px 24px; }
  .hero-screenshot-wrapper { margin-top: 32px; }
  .hero-screenshot-wrapper img { max-width: 280px; }
  .hero-mockup-frame { padding: 6px; }

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

/* ============================================ */
/* HERO SCREENSHOT — Floating mockup            */
/* ============================================ */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-screenshot-wrapper {
  margin-top: 48px;
  position: relative;
  width: 100%;
  max-width: 720px;
  perspective: 1200px;
}

.hero-mockup-frame {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 10px;
  box-shadow: 0 25px 80px rgba(108, 92, 231, 0.2), 0 0 120px rgba(0, 206, 201, 0.08);
  transform: rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-mockup-frame:hover {
  transform: rotateX(0deg) scale(1.02);
}

.hero-mockup-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(108, 92, 231, 0.08), transparent, rgba(0, 206, 201, 0.06), transparent);
  animation: hero-frame-rotate 8s linear infinite;
  z-index: 0;
}

@keyframes hero-frame-rotate {
  to { transform: rotate(360deg); }
}

.hero-mockup-frame img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 6px);
  display: block;
  position: relative;
  z-index: 1;
}

.hero-screenshot-label {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================ */
/* BENTO SCREENSHOT — Inside bento cards        */
/* ============================================ */
.bento-screenshot {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.bento-screenshot:hover {
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 12px 48px rgba(108, 92, 231, 0.15);
  transform: scale(1.01);
}

.bento-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================ */
/* FORMAT BADGES — File type icons              */
/* ============================================ */
.format-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.format-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid;
  transition: var(--transition-fast);
}

.format-badge:hover {
  transform: translateY(-1px);
  filter: brightness(1.2);
}

/* Format-specific colors */
.format-badge.format-mp3 {
  background: rgba(29, 185, 84, 0.12);
  border-color: rgba(29, 185, 84, 0.25);
  color: #1DB954;
}

.format-badge.format-wav {
  background: rgba(29, 185, 84, 0.08);
  border-color: rgba(29, 185, 84, 0.2);
  color: #57D680;
}

.format-badge.format-pptx {
  background: rgba(227, 108, 9, 0.12);
  border-color: rgba(227, 108, 9, 0.25);
  color: #E36C09;
}

.format-badge.format-word {
  background: rgba(43, 87, 154, 0.15);
  border-color: rgba(43, 87, 154, 0.3);
  color: #5B9BD5;
}

.format-badge.format-excel {
  background: rgba(33, 115, 70, 0.15);
  border-color: rgba(33, 115, 70, 0.3);
  color: #33C481;
}

.format-badge.format-pdf {
  background: rgba(219, 36, 36, 0.12);
  border-color: rgba(219, 36, 36, 0.25);
  color: #DB2424;
}

.format-badge.format-mp4 {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
  color: #8B5CF6;
}

.format-badge.format-zip {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.25);
  color: #F5A623;
}

.format-badge.format-youtube {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.2);
  color: #FF4444;
}

.format-badge.format-linkedin {
  background: rgba(0, 119, 181, 0.12);
  border-color: rgba(0, 119, 181, 0.25);
  color: #0A66C2;
}

.format-badge.format-facebook {
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.25);
  color: #1877F2;
}

.format-badge.format-instagram {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.25);
  color: #E1306C;
}

.format-badge.format-x {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #E7E9EA;
}

.format-badge.format-jpg,
.format-badge.format-png {
  background: rgba(0, 206, 201, 0.1);
  border-color: rgba(0, 206, 201, 0.2);
  color: #00CEC9;
}

.format-badge.format-a4,
.format-badge.format-a3,
.format-badge.format-a5 {
  background: rgba(253, 203, 110, 0.1);
  border-color: rgba(253, 203, 110, 0.2);
  color: #FDCB6E;
}

.format-badge.format-email {
  background: rgba(108, 92, 231, 0.1);
  border-color: rgba(108, 92, 231, 0.2);
  color: #A29BFE;
}

/* Format badge SVG icons */
.format-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ============================================ */
/* SHOWCASE SCREENSHOTS — Productions section   */
/* ============================================ */
.output-screenshot {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.output-screenshot:hover {
  border-color: rgba(108, 92, 231, 0.25);
  transform: scale(1.02);
}

.output-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================ */
/* AUTOMATION & INTEGRATION SECTION             */
/* ============================================ */

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

.automation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.automation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
}

.automation-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.automation-card:hover::before {
  opacity: 1;
}

.automation-card-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(0, 206, 201, 0.05));
  border-color: rgba(108, 92, 231, 0.15);
}

.automation-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.automation-icon svg {
  color: var(--secondary);
}

.automation-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.automation-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.automation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.automation-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: var(--secondary-dim);
  color: var(--secondary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Automation examples */
.automation-examples {
  margin-top: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.automation-examples h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.automation-examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.automation-example {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.automation-example:hover {
  border-color: var(--secondary);
  background: var(--secondary-dim);
}

.automation-example-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.automation-example span:last-child {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .automation-grid {
    grid-template-columns: 1fr;
  }
  .automation-card-main {
    grid-column: 1;
  }
  .automation-examples-grid {
    grid-template-columns: 1fr;
  }
}
