/* ════════════════════════════════════════════════════
   CraveStudio — Global Premium Light Styles
   ════════════════════════════════════════════════════ */

:root {
  /* Premium Light Theme Colors */
  --bg-main: #f8fafc; /* Very soft slate-tinted white */
  --bg-card: #ffffff; /* Pure white for cards to pop */
  
  --primary: 250 85% 60%; /* Vibrant Indigo */
  --secondary: 190 90% 45%; /* Deep Cyan */
  --accent: 320 85% 55%; /* Magenta */
  
  --text-main: #0f172a; /* Deep Slate for high contrast text */
  --text-muted: #64748b; /* Slate 500 for secondary text */
  
  --border-light: rgba(15, 23, 42, 0.08); /* Subtle dark border for light theme */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-blur: 20px;
  
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 30px hsla(var(--primary), 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* ── Dynamic Background Glows (Light Mode) ── */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.15; /* Much lower opacity for light theme so it doesn't overwhelm */
  animation: float-glow 25s ease-in-out infinite alternate;
  pointer-events: none;
}
.bg-glow.primary {
  background: radial-gradient(circle, hsla(var(--primary), 1) 0%, transparent 70%);
  width: 60vw; height: 60vw;
  top: -10vw; left: -10vw;
}
.bg-glow.secondary {
  background: radial-gradient(circle, hsla(var(--secondary), 1) 0%, transparent 70%);
  width: 50vw; height: 50vw;
  top: 40vw; right: -10vw;
  animation-delay: -5s;
}
.bg-glow.accent {
  background: radial-gradient(circle, hsla(var(--accent), 1) 0%, transparent 70%);
  width: 70vw; height: 70vw;
  bottom: -20vw; left: 10vw;
  animation-delay: -10s;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 3%) scale(1.05); }
  100% { transform: translate(-3%, -3%) scale(0.95); }
}

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

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ── Announcement Bar ── */
.announcement-bar {
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)), hsl(var(--accent)));
  text-align: center;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 101;
  letter-spacing: 0.02em;
}
.announcement-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }
.announcement-bar a:hover { color: rgba(255,255,255,0.8); }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--border-light);
  padding: 0;
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 76px;
}
.logo { font-size: 1.4rem; font-weight: 900; color: var(--text-main); letter-spacing: -0.04em; display: flex; align-items: center; gap: 4px; }
.logo span { 
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 600; color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Nav Dropdowns */
.nav-dropdown {
  position: relative;
  display: flex; align-items: center;
}
.nav-dropdown > a {
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-dropdown > a::after {
  content: '▾'; font-size: 0.7rem; opacity: 0.6; transition: transform 0.2s; margin-top: 2px;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 240px; padding: 16px 0; margin-top: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px; 
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
}
/* Invisible bridge to prevent dropdown from closing when moving cursor */
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 24px; font-size: 0.9rem; color: var(--text-muted);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.nav-dropdown-menu a:hover {
  background: var(--bg-main); color: var(--text-main); padding-left: 28px;
  font-weight: 700;
}
.nav-dropdown-menu .dropdown-divider {
  height: 1px; background: var(--border-light); margin: 12px 24px;
}

.nav-ctas { display: flex; align-items: center; gap: 16px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: #fff; padding: 16px 36px;
  border-radius: 14px; font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none; cursor: pointer;
  box-shadow: 0 8px 25px hsla(var(--primary), 0.3);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.5s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px hsla(var(--primary), 0.4);
  color: #fff;
}
.btn-primary:hover::before { left: 200%; }
.btn-primary.sm { padding: 12px 28px; font-size: 0.95rem; border-radius: 12px; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  color: var(--text-main); padding: 16px 36px;
  border-radius: 14px; font-weight: 700; font-size: 1.05rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--bg-main);
  border-color: hsla(var(--primary), 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.btn-secondary.sm { padding: 12px 28px; font-size: 0.95rem; border-radius: 12px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: hsl(var(--primary)); padding: 14px 32px;
  border-radius: 12px; font-weight: 700; font-size: 1rem;
  border: 1px solid hsla(var(--primary), 0.3); transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: hsla(var(--primary), 0.05); border-color: hsl(var(--primary));
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}

/* ── Mobile Nav ── */
.nav-toggle { display: none; background: none; border: none; color: var(--text-main); font-size: 1.8rem; cursor: pointer; padding: 4px; transition: color 0.2s; }
.nav-toggle:hover { color: hsl(var(--primary)); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-ctas .btn-secondary { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--bg-card); padding: 32px 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 24px; box-shadow: var(--shadow-lg);
  }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto; min-width: unset; margin-top: 8px;
    background: var(--bg-main); border: 1px solid var(--border-light);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02); padding: 12px 0;
  }
}

/* ── Hero ── */
.hero {
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 24px;
  background: var(--bg-card);
  border: 1px solid hsla(var(--primary), 0.2);
  border-radius: 100px; font-size: 0.85rem; color: hsl(var(--primary)); font-weight: 800;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px hsla(var(--primary), 0.1);
  animation: fade-in-up 0.8s ease-out;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5rem); font-weight: 900;
  line-height: 1.1; color: var(--text-main); max-width: 1000px; margin: 0 auto 32px;
  letter-spacing: -0.04em;
  animation: fade-in-up 1s ease-out 0.1s both;
}
.hero h1 em { 
  font-style: normal; 
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--secondary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 8px;
}
.hero .subtitle {
  font-size: 1.3rem; color: var(--text-muted); max-width: 750px; margin: 0 auto 48px;
  line-height: 1.8;
  animation: fade-in-up 1s ease-out 0.2s both;
}
.hero-ctas { 
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; 
  animation: fade-in-up 1s ease-out 0.3s both;
}

@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Section ── */
section { padding: 120px 0; position: relative; }
.section-label {
  font-size: 0.9rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.2em; color: hsl(var(--primary)); margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: ''; display: inline-block; width: 32px; height: 3px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  border-radius: 2px;
}
.text-center .section-label { justify-content: center; }
.text-center .section-label::before, .text-center .section-label::after {
  content: ''; display: inline-block; width: 32px; height: 3px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  border-radius: 2px;
}

section h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 900;
  color: var(--text-main); margin-bottom: 24px; letter-spacing: -0.03em; line-height: 1.15;
}
section .section-subtitle {
  font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin-bottom: 56px; line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Stats Bar ── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; 
  background: var(--border-light);
  border-radius: 24px; overflow: hidden;
  margin: 64px 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.stats-bar .stat-item {
  padding: 48px 24px; text-align: center;
  background: var(--bg-card);
  transition: background 0.3s ease;
}
.stats-bar .stat-item:hover { background: var(--bg-main); }
.stat-number { 
  font-size: 3.5rem; font-weight: 900; 
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 12px; 
  letter-spacing: -0.04em;
}
.stat-label { font-size: 0.95rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

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

/* ── Cards Grid (Light Mode Shadows) ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px; padding: 48px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.card:hover { 
  transform: translateY(-8px); 
  border-color: transparent; 
  box-shadow: var(--shadow-lg), 0 0 0 1px hsla(var(--primary), 0.1);
}
.card:hover::before { transform: scaleX(1); }
.card-icon { 
  font-size: 2.8rem; margin-bottom: 28px; display: inline-flex;
  align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: var(--bg-main); border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: inset 0 2px 4px rgba(255,255,255,1), var(--shadow-sm);
}
.card h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-main); margin-bottom: 16px; letter-spacing: -0.02em; }
.card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; position: relative; z-index: 1; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-size: 1rem;
  color: hsl(var(--primary)); font-weight: 700; position: relative; z-index: 1;
}
.card .card-link:hover { color: hsl(var(--secondary)); }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; counter-reset: step; }
.step {
  position: relative; padding: 48px; padding-top: 64px;
  background: var(--bg-card); 
  border-radius: 24px; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: hsla(var(--primary), 0.2);
}
.step::before {
  content: counter(step); counter-increment: step;
  position: absolute; top: -24px; left: 40px;
  width: 56px; height: 56px; 
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent))); 
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.4rem; color: #fff;
  box-shadow: 0 10px 25px hsla(var(--primary), 0.3), inset 0 2px 4px hsla(0,0%,100%,0.3);
}
.step h3 { font-size: 1.35rem; font-weight: 800; color: var(--text-main); margin-bottom: 16px; letter-spacing: -0.02em; }
.step p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ── Tabs ── */
.tab-nav {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  background: var(--bg-card); border-radius: 20px;
  padding: 8px; margin-bottom: 56px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.tab-btn {
  padding: 16px 32px; border-radius: 14px; border: none;
  background: transparent; color: var(--text-muted); font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: all 0.3s ease;
  font-family: inherit;
}
.tab-btn:hover { color: var(--text-main); background: var(--bg-main); }
.tab-btn.active { 
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary))); 
  color: #fff; box-shadow: 0 6px 20px hsla(var(--primary), 0.25); 
}
.tab-panel { display: none; animation: fade-in 0.4s ease; }
.tab-panel.active { display: block; }

@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Integrations ── */
.integration-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.integration-tag {
  padding: 14px 28px; background: var(--bg-card);
  border: 1px solid var(--border-light); border-radius: 100px;
  font-size: 1rem; color: var(--text-main); font-weight: 700;
  transition: all 0.3s ease; box-shadow: var(--shadow-sm);
}
.integration-tag:hover { 
  border-color: hsl(var(--primary)); 
  background: hsla(var(--primary), 0.05); 
  transform: translateY(-3px); box-shadow: 0 8px 20px hsla(var(--primary), 0.15); 
  color: hsl(var(--primary));
}

/* ── Code Block (Kept Dark for contrast) ── */
.code-block {
  background: #0f172a; 
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 40px; overflow-x: auto;
  font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.95rem;
  line-height: 1.8; color: #e2e8f0;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.code-block::before {
  content: 'yaml'; position: absolute; top: 16px; right: 24px;
  font-size: 0.8rem; color: #64748b; font-weight: 800; text-transform: uppercase;
}
.code-block .comment { color: #64748b; font-style: italic; }
.code-block .key { color: hsl(var(--secondary)); font-weight: 600; }
.code-block .value { color: #fff; }
.code-block .string { color: hsl(var(--accent)); }

/* ── Feature & Security Grid ── */
.feature-grid, .security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.feature-item, .security-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 40px; background: var(--bg-card); border-radius: 24px;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.feature-item:hover, .security-item:hover { 
  transform: translateY(-4px); 
  border-color: transparent;
  box-shadow: var(--shadow-md), 0 0 0 1px hsla(var(--primary), 0.1);
}
.feature-item .icon, .security-item .icon { 
  font-size: 2rem; flex-shrink: 0; 
  background: var(--bg-main); padding: 16px; border-radius: 16px; 
  border: 1px solid var(--border-light);
  box-shadow: inset 0 2px 4px white;
}
.feature-item h4, .security-item h4 { font-size: 1.2rem; font-weight: 800; color: var(--text-main); margin-bottom: 12px; letter-spacing: -0.01em; }
.feature-item p, .security-item p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ── CTA Section ── */
.cta-section {
  text-align: center; padding: 140px 0;
  background: radial-gradient(ellipse at 50% 100%, hsla(var(--primary), 0.08) 0%, transparent 70%);
  position: relative; overflow: hidden;
}
.cta-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, hsla(var(--primary), 0.3), transparent);
}
.cta-section h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }
.cta-section p { max-width: 650px; margin: 0 auto 48px; color: var(--text-muted); font-size: 1.25rem; line-height: 1.8; }
.cta-section .guarantee { margin-top: 32px; font-size: 0.95rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Pricing Cards ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 24px; padding: 48px; position: relative;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: hsla(var(--primary), 0.4);
  box-shadow: var(--shadow-lg), 0 0 0 2px hsla(var(--primary), 0.1);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-5px); }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent))); 
  color: #fff; padding: 6px 20px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  box-shadow: 0 4px 10px hsla(var(--primary), 0.3);
}
.pricing-card h3 { font-size: 1.5rem; font-weight: 900; color: var(--text-main); margin-bottom: 12px; }
.pricing-card .price { font-size: 3rem; font-weight: 900; color: var(--text-main); margin-bottom: 8px; letter-spacing: -0.05em; }
.pricing-card .price-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px; font-weight: 600; }
.pricing-card ul { list-style: none; margin-bottom: 40px; }
.pricing-card ul li {
  padding: 12px 0; font-size: 1rem; color: var(--text-main); font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}
.pricing-card ul li::before { content: '✓ '; color: hsl(var(--primary)); font-weight: 800; margin-right: 8px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 32px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.faq-item:hover { border-color: hsla(var(--primary), 0.3); }
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text-main);
  font-size: 1.1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "+ "; color: hsl(var(--primary)); font-weight: 900; margin-right: 8px; }
.faq-item[open] summary::before { content: "− "; }
.faq-item p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Demo Form Inline ── */
.demo-form-inline {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 24px; padding: 56px; max-width: 600px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.demo-form-inline h3 { font-size: 1.5rem; font-weight: 900; color: var(--text-main); margin-bottom: 12px; }
.demo-form-inline .form-subtitle { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.form-group { margin-bottom: 24px; text-align: left; }
.form-group label { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 20px; background: var(--bg-main);
  border: 1px solid var(--border-light); border-radius: 12px;
  color: var(--text-main); font-size: 1rem; font-family: inherit;
  transition: all 0.2s;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsla(var(--primary), 0.1), inset 0 2px 4px rgba(0,0,0,0.02);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── Footer ── */
footer {
  padding: 100px 0 40px; border-top: 1px solid var(--border-light);
  background: var(--bg-card);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px; margin-bottom: 64px;
}
.footer-brand .logo { font-size: 1.6rem; display: inline-block; margin-bottom: 20px; }
.footer-brand p { font-size: 1.05rem; color: var(--text-muted); max-width: 320px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.9rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--text-main); margin-bottom: 24px;
}
.footer-col a {
  display: block; font-size: 1rem; color: var(--text-muted); font-weight: 500;
  padding: 8px 0; transition: all 0.2s;
}
.footer-col a:hover { color: hsl(var(--primary)); padding-left: 6px; font-weight: 700; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 40px; border-top: 1px solid var(--border-light);
  font-size: 0.95rem; color: var(--text-muted); font-weight: 500;
}
.footer-social { display: flex; gap: 24px; }
.footer-social a { color: var(--text-muted); font-weight: 700; transition: color 0.2s; }
.footer-social a:hover { color: var(--text-main); }

.compliance-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.compliance-badge {
  padding: 8px 16px; background: var(--bg-main);
  border: 1px solid var(--border-light); border-radius: 10px;
  font-size: 0.8rem; color: var(--text-muted); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .hero { padding: 120px 0 80px; }
  section { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; }
}
