/* ========================================
   InnooForge Landing Page Styles (OPTIMIZED)
   Premium, clean SaaS look + consistent tokens
   ======================================== */

/* ---------- Design Tokens ---------- */
:root{
  /* Colors */
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-section: #f7f9fc;

  --text: #0b1220;
  --muted: #51607a;
  --muted-2: rgba(11,18,32,.62);

  --primary: #009FE3;
  --primary-2: #3b82f6;

  --border: rgba(11, 18, 32, .10);
  --border-2: rgba(11, 18, 32, .06);

  --success: #16a34a;
  --success-bg: rgba(22,163,74,.12);

  --danger: #ef4444;
  --danger-bg: rgba(239,68,68,.10);

  /* Layout */
  --container: 1120px;

  /* Radius */
  --radius: 16px;
  --radius-lg: 22px;

  /* Shadow */
  --shadow-xs: 0 2px 10px rgba(11,18,32,.06);
  --shadow-sm: 0 6px 16px rgba(11,18,32,.08);
  --shadow-md: 0 12px 34px rgba(11,18,32,.12);
  --shadow-lg: 0 18px 60px rgba(11,18,32,.14);

  /* Motion */
  --transition-fast: .15s ease;
  --transition-base: .22s ease;
  --transition-slow: .35s ease;

  /* Typography */
  --font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-family);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 650;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(44px, 4.2vw, 72px); line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 2.3vw, 44px); }
h3 { font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -0.015em; }
h4 { font-size: 18px; }

p { color: var(--muted); line-height: 1.7; }
.highlight { color: var(--text); }

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 650;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  text-align: center;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: rgba(255,255,255,.75);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn-large { padding: 14px 22px; font-size: 16px; }

.btn:focus-visible{
  outline: 3px solid rgba(59,130,246,.35);
  outline-offset: 2px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;

  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-2);
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.logo-icon { font-size: 22px; color: var(--primary); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 650;
  color: var(--muted-2);
  transition: color var(--transition-base);
  position: relative;
}
.nav-links a:hover { color: var(--text); }

.nav-links a.active { color: var(--text); }
.nav-links a.active::after{
  content:"";
  position:absolute;
  left: 0; right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

/* Navbar logo image */
.logo-image img{
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
  .logo-image img {
    height: 74px;
    width: auto;
  }
  
  /* Center logo on mobile */
  .navbar .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    order: 0;
  }
  
  /* Mobile language switch - ensure flags fit in viewport */
  .navbar .lang-switch {
    gap: 4px;
    flex-shrink: 0;
  }
  
  .navbar .lang-switch .lang-flag {
    padding: 0;
  }
  
  .navbar .lang-switch .lang-flag img {
    width: 24px;
    height: 16px;
  }
  
  /* Mobile footer logo - larger and centered */
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo-img {
    height: 60px;
    max-width: 80px;
    margin-bottom: 8px;
  }
  
  /* Mobile solution features - stack title and description vertically */
  .solution-feature {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .solution-feature .feature-number {
    flex-shrink: 0;
  }
  
  .solution-feature h3 {
    font-size: 16px;
  }
  
  .solution-feature p {
    font-size: 14px;
  }
}

/* ========================================
   Language flags (navbar)
   ======================================== */
.navbar .lang-switch{
  display:flex;
  gap:12px;
  align-items:center;
  margin: 0 16px;
}

.navbar .lang-switch .lang-flag{
  background: transparent;
  border: 2px solid transparent;
  padding: 2px;
  border-radius: 10px;
  cursor: pointer;
  opacity: .55;
  transition: .2s ease;
  line-height: 0;
}

.navbar .lang-switch .lang-flag img{
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.navbar .lang-switch .lang-flag.active{
  opacity: 1;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.18);
  transform: scale(1.03);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 450px at 70% 30%, rgba(59,130,246,.10), transparent 60%),
    radial-gradient(700px 380px at 20% 10%, rgba(11,44,255,.10), transparent 55%),
    linear-gradient(#fff, #fff);
}

.hero::after{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:520px;
  height:520px;
  background: radial-gradient(circle, rgba(11,44,255,.14), transparent 60%);
  filter: blur(18px);
  pointer-events:none;
}

.hero-content { max-width: 700px; }

/* Hero Trust Badges */
.hero-trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 20px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(11,18,32,.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow-xs);
}

.trust-badge:hover {
  background: rgba(255,255,255,1);
  border-color: var(--primary);
  color: var(--text);
}

.hero-title { margin-bottom: 16px; max-width: 16ch; }

.hero-subtitle {
  font-size: 20px;
  font-weight: 650;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 34px;
  max-width: 58ch;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tertiary {
  margin-top: 20px;
}

.hero-tertiary .text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.hero-tertiary .text-link:hover {
  color: var(--primary-2);
}

.hero-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Floating “badges” */
.floating-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,18,32,.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(11,18,32,.08);
  backdrop-filter: blur(10px);
  font-weight: 700;
  color: var(--text);
  animation: float 3s ease-in-out infinite;
  will-change: transform;
}

.floating-card .card-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: .4s; }
.card-3 { animation-delay: .8s; }

@keyframes float {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

/* ========================================
   Thanks page (hero centered horizontally)
   Add class "hero-thanks" on thanks.html hero section
   ======================================== */
.hero.hero-thanks{
  justify-content: center;
}

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

.hero-thanks .hero-content{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-thanks .hero-title,
.hero-thanks .hero-subtitle,
.hero-thanks .hero-description{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-thanks .hero-cta{
  justify-content: center;
}

/* ========================================
   Section Styling
   ======================================== */
section { padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-title { margin-bottom: 14px; }
.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 70ch;
  margin: 0 auto;
}

/* ========================================
   Card Base (unify look)
   ======================================== */
.problem-card,
.solution-feature,
.compliance-card,
.cio-feature,
.stakeholder-card,
.ecosystem-product,
.diff-item,
.compliance-conclusion,
.unifying-message,
.problem-impact,
.workflow-step{
  border: 1px solid rgba(11,18,32,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 26px rgba(11,18,32,.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.problem-card:hover,
.solution-feature:hover,
.compliance-card:hover,
.cio-feature:hover,
.stakeholder-card:hover,
.ecosystem-product:hover,
.diff-item:hover,
.workflow-step:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 46px rgba(11,18,32,.10);
  border-color: rgba(59,130,246,.25);
}

/* Text overflow prevention for all cards */
.problem-card h3,
.solution-feature h3,
.compliance-card h3,
.cio-feature h3,
.stakeholder-card h3,
.ecosystem-product h3 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.problem-card p,
.solution-feature p,
.compliance-card p,
.cio-feature p,
.stakeholder-card p,
.ecosystem-product p,
.diff-text p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ========================================
   Problem Section
   ======================================== */
.problem { background: var(--bg-section); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}

.problem-card { padding: 30px; }

.problem-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.problem-icon {
  font-size: 22px;
  color: var(--danger);
  flex-shrink: 0;
}

.problem-card h3 { margin-bottom: 10px; font-size: 18px; }
.problem-card p { font-size: 15px; }

.problem-impact {
  text-align: center;
  padding: 28px;
  border-left: 4px solid var(--danger);
}
.problem-impact p { font-size: 18px; color: var(--text); }
.problem-impact strong { color: var(--primary); }

/* ========================================
   Solution Section
   ======================================== */
.solution { background: var(--bg); }

.solution-header { margin-bottom: 26px; text-align: center; }
.solution-content { text-align: center; margin-bottom: 42px; }
.solution-content p { font-size: 18px; max-width: 70ch; margin: 0 auto; }

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
}

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: rgba(246,248,252,.9);
}
.solution-feature:hover { background: rgba(255,255,255,.95); }

.feature-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-size: 18px;
  font-weight: 800;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.solution-feature h3 { margin-bottom: 6px; font-size: 18px; }
.solution-feature p { font-size: 15px; margin: 0; }

.solution-guarantee {
  display: flex;
  justify-content: flex-start;
  gap: 34px;
  flex-wrap: wrap;
  text-align: left;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.guarantee-icon { color: var(--primary); font-size: 18px; }

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works { background: var(--bg); }

.workflow-steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.workflow-step {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
  background: rgba(246,248,252,.9);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-size: 20px;
  font-weight: 900;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
}

.step-content h3 { margin-bottom: 10px; font-size: 20px; }
.step-content p { font-size: 15px; }

.step-arrow {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: rgba(59,130,246,.85);
}
.workflow-step:last-child .step-arrow { display: none; }

.workflow-note {
  text-align: center;
  padding: 18px;
  background: rgba(22,163,74,.06);
  border: 1px solid rgba(22,163,74,.16);
  border-radius: 14px;
}
.workflow-note p { font-weight: 700; color: var(--success); }

/* ========================================
   Compliance Section
   ======================================== */
.compliance { background: var(--bg-section); }

.compliance-content { text-align: center; margin-bottom: 42px; }
.compliance-content p { font-size: 18px; max-width: 70ch; margin: 0 auto; }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 42px;
}

.compliance-card { padding: 24px; }
.compliance-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--text); }
.compliance-card p { font-size: 15px; }

.compliance-conclusion { text-align: center; padding: 34px; }
.compliance-conclusion p { font-size: 18px; margin-bottom: 14px; }
.compliance-conclusion strong { color: var(--primary); }
.compliance-conclusion .highlight {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-top: 10px;
}

/* ========================================
   CIO Section
   ======================================== */
.cio-section { background: var(--bg); }

.cio-content { text-align: center; margin-bottom: 42px; }
.cio-content p { font-size: 18px; max-width: 70ch; margin: 0 auto; }

.cio-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.cio-feature {
  padding: 28px;
  text-align: center;
  background: rgba(246,248,252,.9);
}

.cio-icon { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-dark); background: #eef1f8; padding: 4px 14px; border-radius: 20px; margin-bottom: 14px; }
.cio-feature h3 { font-size: 16px; margin-bottom: 10px; }
.cio-feature p { font-size: 15px; }

.cio-conclusion {
  text-align: center;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow-md);
}
.cio-conclusion p { font-size: 18px; font-weight: 750; color: white; margin: 0; }

/* ========================================
   Why It Matters Section
   ======================================== */
.why-it-matters { background: var(--bg-section); }

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 42px;
}

.stakeholder-card { padding: 34px 28px; text-align: center; }

.stakeholder-icon {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 999px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.stakeholder-card h3 { margin-bottom: 10px; font-size: 16px; }
.stakeholder-card p { font-size: 15px; }

.unifying-message {
  text-align: center;
  padding: 34px;
  border-left: 4px solid rgba(59,130,246,.65);
}
.unifying-message p {
  font-size: 20px;
  font-weight: 750;
  color: var(--text);
  max-width: 70ch;
  margin: 0 auto;
}

/* ========================================
   Ecosystem Section
   ======================================== */
.ecosystem { background: var(--bg); }

.ecosystem-content { text-align: center; margin-bottom: 42px; }
.ecosystem-content p { font-size: 18px; max-width: 70ch; margin: 0 auto; }

.ecosystem-products {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  flex-wrap: wrap;
}

.ecosystem-product {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  padding: 34px 28px;
  text-align: center;
  background: rgba(246,248,252,.9);
}

.product-logo { font-size: 38px; color: var(--primary); margin-bottom: 16px; }
.ecosystem-product h3 { margin-bottom: 12px; font-size: 20px; }
.ecosystem-product p { font-size: 15px; }

.ecosystem-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: rgba(59,130,246,.9);
}

/* ========================================
   Differentiation Section
   ======================================== */
.differentiation { background: var(--bg-section); }

.diff-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 42px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.diff-item { display: flex; align-items: center; gap: 18px; padding: 22px; }
.diff-item:hover { transform: translateY(-2px); }

.diff-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--danger);
  color: white;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.diff-text h4 { margin-bottom: 4px; color: var(--text); }
.diff-text p { font-size: 15px; margin: 0; }

.diff-conclusion { text-align: center; padding: 34px; }
.diff-conclusion h3 { font-size: 22px; color: var(--text); }

/* ========================================
   CTA (FINAL) — Blue, richer
   ======================================== */
.cta{
  position: relative;
  overflow: hidden;
  text-align: center;

  background:
    radial-gradient(900px 520px at 18% 25%, rgba(255,255,255,.22), transparent 62%),
    radial-gradient(700px 460px at 82% 70%, rgba(0,0,0,.12), transparent 60%),
    radial-gradient(520px 380px at 70% 30%, rgba(59,130,246,.30), transparent 58%),
    linear-gradient(135deg, #06b6ff 0%, #1d6eff 55%, #1b45ff 100%);
}

.cta::before{
  content:"";
  position:absolute;
  inset:-220px auto auto -220px;
  width:520px;
  height:520px;
  background: radial-gradient(circle, rgba(255,255,255,.24), transparent 62%);
  filter: blur(14px);
  opacity: .9;
  pointer-events:none;
}

.cta::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .18;
  pointer-events:none;
  mix-blend-mode: overlay;
}

.cta .cta-content{ position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,.86); font-size: 18px; margin-bottom: 30px; }

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta .btn-primary{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 14px 40px rgba(11,18,32,.18);
}

.cta .btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 60px rgba(11,18,32,.22);
}

.cta .btn-secondary{
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.50);
  backdrop-filter: blur(10px);
}

.cta .btn-secondary:hover{
  background: rgba(255,255,255,.20);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: no-preference){
  .cta::before{ animation: ctaGlow 10s ease-in-out infinite; }
  @keyframes ctaGlow{
    0%,100%{ transform: translate(0,0) scale(1); opacity:.85; }
    50%{ transform: translate(40px, 18px) scale(1.05); opacity:.95; }
  }
}

/* ========================================
   Contact (FINAL)
   ======================================== */
.contact{ background: var(--bg-section); }

.contact-layout{
  display: grid;
  grid-template-columns: minmax(380px, 520px) minmax(260px, 320px);
  gap: 32px;
  justify-content: center;
  margin: 32px auto 0;
  align-items: stretch;
}

.contact-form-wrapper{
  border: 1px solid rgba(11,18,32,.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(59,130,246,.10), transparent 60%),
    rgba(255,255,255,.94);
  box-shadow: 0 14px 44px rgba(11,18,32,.10);
  padding: 26px;
  position: relative;
  overflow: hidden;

  display:flex;
  flex-direction: column;
  height: 100%;
}

.contact-form-wrapper::after{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:420px;
  height:420px;
  background: radial-gradient(circle, rgba(0,159,227,.16), transparent 62%);
  filter: blur(16px);
  pointer-events:none;
}

.contact-form{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Form header */
.form-head{
  margin-bottom: 22px;
  text-align: center;
}

.form-head h3{
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.form-head p{
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* Form grid: 1 column */
.form-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label{
  font-size: 13px;
  font-weight: 750;
  color: rgba(11,18,32,.78);
  letter-spacing: -0.01em;
}

.form-field input,
.form-field textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  color: var(--text);
  font-size: 14.5px;
  outline: none;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast),
              background var(--transition-fast);
  box-shadow: 0 6px 18px rgba(11,18,32,.06);
}

.form-field textarea{
  resize: vertical;
  min-height: 110px;
}

.form-field input::placeholder,
.form-field textarea::placeholder{
  color: rgba(11,18,32,.45);
}

.form-field input:focus,
.form-field textarea:focus{
  border-color: rgba(59,130,246,.55);
  box-shadow:
    0 10px 28px rgba(11,18,32,.10),
    0 0 0 4px rgba(59,130,246,.18);
  background: rgba(255,255,255,.98);
  transform: translateY(-1px);
}

.contact-form .btn{ width: 100%; margin-top: 6px; }

.form-note{
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(11,18,32,.56);
  text-align: center;
}

/* Right cards column */
.contact-grid{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  height: 100%;
  justify-content: space-between;
}

.contact-card{
  width: 100%;
  max-width: 320px;
  padding: 32px 26px;
  text-align: center;

  border: 1px solid rgba(11,18,32,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 32px rgba(11,18,32,.08);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);

  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(11,18,32,.12);
}

.contact-icon{ font-size: 34px; margin-bottom: 16px; }
.contact-card h3{ font-size: 16px; margin-bottom: 10px; }

.contact-main{
  font-size: 18px;
  font-weight: 750;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-main a{ color: var(--primary); }

.contact-sub{ font-size: 14.5px; color: var(--muted); }

/* ========================================
   Floating Back to Top Button (Left Side)
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.back-to-top:active {
  transform: translateY(0);
}

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

/* Three-column info section */
.footer-info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column:first-child {
  align-items: flex-start;
}

.footer-column:nth-child(2) {
  align-items: center;
  text-align: center;
}

.footer-column:last-child {
  align-items: flex-end;
}

.footer-column .copyright-line {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.footer-column .footer-address {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  margin: 0;
  line-height: 1.5;
}

.footer-column.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.footer-column.footer-contact-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-column.footer-contact-links a:hover {
  color: var(--primary);
}

/* Bottom bar: centered logo */
.footer-bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-2);
}

.footer-brand { 
  display: flex; 
  flex-direction: column; 
  gap: 6px; 
  align-items: center;
  justify-content: center;
}

.footer-logo { font-size: 30px; color: var(--primary); }
.footer-name { font-size: 20px; font-weight: 850; color: var(--text); }

.footer-logo-img{
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer responsive - mobile */
@media (max-width: 768px) {
  .footer {
    padding-bottom: 140px; /* Space for floating CTA */
  }
  
  .footer-info-columns {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  
  .footer-column,
  .footer-column:first-child,
  .footer-column:nth-child(2),
  .footer-column:last-child {
    align-items: center;
    text-align: center;
  }
  
  .footer-column.footer-contact-links {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    position: relative;
  }
  
  .footer-demo-btn {
    order: 3;
    width: 100%;
    max-width: 280px;
  }
  
  .footer-brand {
    order: 1;
    max-width: none;
  }
  
  .footer-logo-img {
    height: 50px;
  }
  
  /* On mobile, adjust fixed back-to-top to be visible in footer area */
  .back-to-top {
    bottom: 200px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
  }
}

/* Hide demo button on tablet (between 769px and 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar .btn-primary {
    display: none;
  }
}

/* ========================================
   Animation Classes
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }

  .workflow-steps { flex-direction: column; align-items: center; }
  .workflow-step { max-width: 100%; }
  .step-arrow { display: none; }

  .ecosystem-products { flex-direction: column; align-items: center; }
  .ecosystem-connector { transform: rotate(90deg); }

  .contact-layout{ grid-template-columns: 1fr; justify-content: stretch; }
  .contact-form{ max-width: 100%; }
  .contact-card{ max-width: 100%; flex: none; }
  .contact-grid{ height: auto; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }

  /* Mobile Navigation */
  .navbar {
    padding: 10px 0;
  }
  
  .navbar .container { 
    flex-wrap: nowrap;
    gap: 8px;
    position: relative;
    align-items: center;
  }
  
  /* Hamburger menu button */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-shrink: 0;
    margin-left: 8px;
    margin-right: -4px;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }
  
  .mobile-menu-toggle span:nth-child(1) { margin-bottom: 6px; }
  .mobile-menu-toggle span:nth-child(3) { margin-top: 6px; }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Mobile menu overlay */
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 18, 32, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Mobile nav links - slide in from right */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    padding: 80px 24px 24px;
    gap: 0;
    list-style: none;
    box-shadow: -4px 0 20px rgba(11, 18, 32, 0.15);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    border-bottom: 1px solid var(--border-2);
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
  }
  
  /* Mobile navbar layout */
  .navbar .logo {
    order: 1;
  }
  
  .navbar .lang-switch {
    order: 2;
    margin: 0;
    gap: 8px;
  }
  
  /* Hide the navbar CTA button on mobile - use floating CTA instead */
  .navbar .btn-primary {
    display: none;
  }

  .hero { padding: 100px 0 60px; min-height: auto; }
  
  /* Mobile hero optimizations */
  .hero-title {
    font-size: clamp(32px, 6vw, 44px);
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-trust-badges {
    gap: 8px;
  }
  
  .trust-badge {
    font-size: 12px;
    padding: 5px 10px;
  }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .solution-guarantee { flex-direction: column; gap: 18px; align-items: center; }
  
  /* Mobile grid optimizations */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile comparison table */
  .comparison-table-wrapper {
    margin: 0 -16px;
    padding: 0 16px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  /* Mobile card optimizations */
  .problem-card,
  .solution-feature,
  .compliance-card,
  .cio-feature,
  .stakeholder-card {
    padding: 20px;
  }

  .footer-content { flex-direction: column; text-align: center; }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-menu-overlay {
    display: none;
  }
}

@media (max-width: 480px) {
  .container{ width: min(var(--container), calc(100% - 32px)); }

  h1 { font-size: 32px; line-height: 1.1; }
  h2 { font-size: 24px; }
  h3 { font-size: 17px; }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .trust-badge {
    font-size: 11px;
    padding: 4px 8px;
  }

  .problem-grid,
  .compliance-grid,
  .cio-features,
  .stakeholder-grid { grid-template-columns: 1fr; }

  .btn { padding: 12px 16px; font-size: 14px; }
  
  .btn-large { padding: 12px 18px; font-size: 15px; }

  .logo-image img{ height: 50px; }
  .footer-logo-img{ height: 38px; }
  
  /* Mobile contact form */
  .contact-form-wrapper {
    padding: 20px;
  }
  
  /* Mobile floating CTA adjustments */
  .floating-cta .btn {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  /* Mobile back to top */
  .back-to-top {
    width: 40px;
    height: 40px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
  
  /* Mobile compat section */
  .compat-card {
    padding: 16px;
  }
  
  .compat-logo {
    height: 32px;
  }
  
  /* Mobile urgency banner */
  .urgency-banner {
    padding: 16px;
    margin: 16px;
  }
  
  .urgency-banner p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container{ width: min(var(--container), calc(100% - 32px)); }

  h1 { font-size: 40px; }
  h2 { font-size: 26px; }
  h3 { font-size: 18px; }

  .problem-grid,
  .compliance-grid,
  .cio-features,
  .stakeholder-grid { grid-template-columns: 1fr; }

  .btn { padding: 12px 16px; }

  .logo-image img{ height: 32px; }
  .footer-logo-img{ height: 38px; }
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}
.problem-impact-list{
  margin: 10px auto 0;
  padding-left: 18px;
  max-width: 70ch;
  color: var(--text);
}
.problem-impact-list li{
  margin: 6px 0;
  color: var(--text);
}
/* ===============================
   Problem impact list (no <br>)
   =============================== */
.problem-impact{
  text-align: center;
  padding: 28px;
  border-left: 4px solid var(--danger);
}

.problem-impact .impact-title{
  font-size: 18px;
  font-weight: 750;
  color: var(--text);
  margin-bottom: 10px;
}

.problem-impact .impact-list{
  list-style: none;
  padding: 0;
  margin: 0 auto 12px;
  max-width: 680px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.problem-impact .impact-list li{
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}

.problem-impact .impact-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.problem-impact .impact-final{
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}
/* Remove top padding for How It Works */
section#how-it-works{
  padding-top: 0;
}
/* ========================================
   Compat strip — borderless premium
   ======================================== */
.compat-strip{
  padding: 84px 0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(59,130,246,.10), transparent 60%),
    radial-gradient(700px 420px at 85% 40%, rgba(0,159,227,.10), transparent 55%),
    linear-gradient(#fff, #fff);
}

.compat-grid{
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

/* Floating, borderless cards */
.compat-card{
  position: relative;
  border: none !important;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 60px rgba(11,18,32,.08),
    0 2px 10px rgba(11,18,32,.04);
  padding: 26px 28px;
  overflow: hidden;
}

/* Light “shine” */
.compat-card::before{
  content:"";
  position:absolute;
  inset:-140px auto auto -140px;
  width:360px;
  height:360px;
  background: radial-gradient(circle, rgba(59,130,246,.18), transparent 62%);
  filter: blur(18px);
  opacity: .55;
  pointer-events:none;
}
.compat-card::after{
  content:"";
  position:absolute;
  inset:auto -120px -120px auto;
  width:320px;
  height:320px;
  background: radial-gradient(circle, rgba(0,159,227,.16), transparent 62%);
  filter: blur(18px);
  opacity: .45;
  pointer-events:none;
}

.compat-head{
  position: relative;
  z-index: 1;
  display:flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.compat-title{
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.015em;
  color: var(--text);
}

.compat-sub{
  font-size: 14.5px;
  color: rgba(11,18,32,.62);
  margin: 0;
  max-width: 90ch;
}

/* Logos — no borders, just spacing */
.compat-logos{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 6px;
  gap: 26px;   
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 768px){
  .compat-strip{ padding: 64px 0; }
  .compat-card{ padding: 20px; border-radius: 20px; }
  .compat-logos{ gap: 14px; }
  .compat-logo{ height: 24px; }
}


.compat-h2{
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}

.compat-h2 strong{
  color: var(--primary);
}

.compat-lead{
  font-size: 17px;
  line-height: 1.6;
  color: rgba(11,18,32,.65);
  max-width: 70ch;
}

/* mobile */
@media (max-width: 768px){
  .compat-intro{
    text-align: center;
    margin-bottom: 34px;
  }
}
/* Bigger & clearer logos */
.compat-logo{
  height: 45px;              
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: .95;
  filter: saturate(1.05);
  transition: transform .18s ease, opacity .18s ease;
}

.compat-logo:hover{
  transform: translateY(-2px);
  opacity: 1;
}

/* ========================================
   REMOVE blue gradient from compat cards
 
/* kill decorative gradients */
.compat-card::before,
.compat-card::after{
  display: none !important;
}

/* keep soft premium shadow */
.compat-card{
   background: #ffffff !important;
  backdrop-filter: none !important;
  box-shadow:
    0 18px 50px rgba(11,18,32,.08),
    0 4px 12px rgba(11,18,32,.04);
}
/* ========================================
   Enlarge ONLY Integration logos
   ======================================== */

.compat-card-integration .compat-logo{
  height: 50px;
  max-width: 260px;
  opacity: 1;
}

/* mobile */
@media (max-width: 768px){
  .compat-card-integration .compat-logo{
    height: 42px;
  }
}
/* Center align title + subtitle in compat section */
.compat-intro{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto 56px; 
}

.compat-intro .compat-h2,
.compat-intro .compat-lead{
  margin-left: auto;
  margin-right: auto;
}
.contact{
  padding-top: 200px; 
}

/* ========================================
   AI Governance Checklist Page
   ======================================== */
.checklist-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.checklist-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .checklist-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.checklist-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  line-height: 1.15;
}

.checklist-content .subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.checklist-benefits {
  list-style: none;
  margin-bottom: 32px;
}

.checklist-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text);
}

.checklist-benefits li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.checklist-preview {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.checklist-preview h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.checklist-preview-items {
  list-style: none;
}

.checklist-preview-items li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 15px;
}

.checklist-preview-items li:last-child {
  border-bottom: none;
}

.checklist-preview-items .number {
  width: 28px;
  height: 28px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
}

.form-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-card .form-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
}

.form-card .form-field {
  margin-bottom: 16px;
}

.form-card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-card input[type="email"],
.form-card input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-card input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.15);
}

.form-card .btn {
  width: 100%;
  margin-top: 8px;
}

.form-card .form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}

.trust-logos {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-2);
}

.trust-logos img {
  height: 32px;
  opacity: 0.6;
}

.checklist-section {
  padding: 80px 0;
  background: white;
}

.checklist-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.checklist-section h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 12px;
}

.checklist-section .compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.checklist-section .compliance-item {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border-2);
}

.checklist-section .compliance-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checklist-section .compliance-item h4 .icon {
  color: var(--primary);
}

.checklist-section .compliance-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ========================================
   Trust Badge with Flag Image
   ======================================== */
.trust-badge-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-badge-flag .flag-icon {
  height: 20px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Urgency Banner
   ======================================== */
.urgency-banner {
  margin-top: 24px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.04));
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.urgency-banner p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.urgency-banner strong {
  color: var(--danger);
}

/* ========================================
   Comparison Table Section
   ======================================== */
.comparison-section {
  padding: 100px 0;
  background: var(--bg-soft);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 900px;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-2);
}

.comparison-table th {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.comparison-table th:first-child {
  border-radius: 16px 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 16px 0 0;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(0, 159, 227, 0.03);
}

.comparison-table td {
  font-size: 15px;
  color: var(--text);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.compare-good {
  color: var(--success) !important;
  font-weight: 600;
}

.compare-bad {
  color: var(--danger) !important;
}

.comparison-cta {
  text-align: center;
  margin-top: 40px;
}

.comparison-cta p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text);
}

.comparison-cta .btn {
  padding: 14px 32px;
}

/* Mobile comparison table */
@media (max-width: 768px) {
  .comparison-section {
    padding: 60px 0;
  }

  .comparison-table-wrapper {
    margin: 0 -24px;
    padding: 0 16px;
    border-radius: 12px;
  }

  .comparison-table {
    min-width: 500px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .comparison-table th {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .comparison-table {
    min-width: 450px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* ========================================
   Floating Sticky CTA
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta .btn {
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

/* Pulse animation for CTA */
.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 159, 227, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 159, 227, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 159, 227, 0);
  }
}

/* Mobile floating CTA */
@media (max-width: 768px) {
  /* Floating CTA - centered at bottom with more spacing */
  .floating-cta {
    bottom: 80px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: auto;
    max-width: calc(100% - 32px);
  }

  .floating-cta.visible {
    transform: translateX(-50%) translateY(0);
  }

  .floating-cta .btn {
    padding: 10px 20px;
    font-size: 13px;
    white-space: nowrap;
    min-width: 140px;
  }

  /* Back to top - positioned above floating CTA */
  .back-to-top {
    bottom: 140px;
    left: 16px;
    transform: none;
    width: 40px;
    height: 40px;
  }

  .back-to-top.visible {
    transform: none;
  }

  .back-to-top:hover {
    transform: translateY(-3px);
  }
  
  /* Mobile comparison table - fix third column being cut */
  .comparison-table-wrapper {
    margin: 0 -24px;
    padding: 0 12px;
  }
  
  .comparison-table {
    min-width: 100%;
    font-size: 12px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  /* Mobile solution guarantee - left align */
  .solution-guarantee {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
  }
  
  .guarantee-item {
    align-items: flex-start;
    text-align: left;
  }
  
  /* Mobile problem card - icon and title on same line */
  .problem-card {
    padding: 20px;
  }
  
  .problem-icon {
    margin-bottom: 8px;
  }
  
  .problem-card h3 {
    display: inline;
    margin-left: 8px;
  }
  
  /* Mobile language switch - right align flags */
  .navbar .lang-switch {
    order: 2;
    margin-left: auto;
    margin-right: 0;
    flex-shrink: 0;
  }
}

/* Extra small screens */
@media (max-width: 400px) {
  .floating-cta .btn {
    padding: 10px 16px;
    font-size: 13px;
    min-width: 140px;
  }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border-2);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 64px;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 20px 0;
  font-style: italic;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.testimonial-card cite::before {
  content: "— ";
}

/* Mobile testimonials */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.6;
  }

  .testimonial-card::before {
    font-size: 48px;
    top: 16px;
    left: 16px;
  }
}

@media (max-width: 480px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-card blockquote {
    font-size: 14px;
  }

  .testimonial-card cite {
    font-size: 13px;
  }
}

/* ========================================
   Use Cases Section
   ======================================== */
.use-cases-section {
  padding: 100px 0;
  background: var(--bg-soft);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.use-case-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border-2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.use-case-card .industry {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.use-case-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.use-case-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.use-case-card .benefit {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-2);
  font-size: 14px;
  color: var(--success);
  font-weight: 600;
}

/* ========================================
   Partner Logo Wall
   ======================================== */
.partners-section {
  padding: 80px 0;
  background: white;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 32px;
}

.partners-grid img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.partners-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ========================================
   Exit Intent Popup
   ======================================== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: 24px;
  padding: 48px;
  max-width: 480px;
  width: 90%;
  z-index: 10000;
  box-shadow: 0 25px 80px rgba(11, 18, 32, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.exit-popup.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-soft);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.exit-popup-close:hover {
  background: var(--danger-bg);
  color: var(--danger);
}

.exit-popup h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.exit-popup p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}

.exit-popup .form-field {
  margin-bottom: 16px;
}

.exit-popup .btn {
  width: 100%;
  padding: 14px;
}

/* ========================================
   Persona Sections
   ======================================== */
.persona-section {
  padding: 80px 0;
}

.persona-section:nth-child(even) {
  background: var(--bg-soft);
}

.persona-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .persona-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.persona-content h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 16px;
  color: var(--text);
}

.persona-content .persona-role {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.persona-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.persona-visual {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-2);
}

.persona-visual h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text);
}

.persona-visual ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.persona-visual li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.persona-visual li:last-child {
  border-bottom: none;
}

.persona-visual li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

/* ========================================
   Thank You Page Enhancements
   ======================================== */
.thanks-next-steps {
  margin: 40px 0;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: 20px;
  border: 1px solid var(--border-2);
}

.thanks-next-steps h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--text);
}

.thanks-timeline {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}

.thanks-step .step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.thanks-step .step-text {
  text-align: left;
}

.thanks-step .step-text strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.thanks-step .step-text span {
  font-size: 14px;
  color: var(--muted);
}

.thanks-booking {
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 159, 227, 0.08), rgba(59, 130, 246, 0.08));
  border-radius: 16px;
  border: 1px solid rgba(0, 159, 227, 0.2);
}

.thanks-booking p {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text);
}

/* Resources Section */
.thanks-resources {
  padding: 60px 0;
  background: white;
}

.thanks-resources h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--text);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  background: var(--bg-soft);
  border-radius: 16px;
  border: 1px solid var(--border-2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.resource-card .resource-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.resource-card .resource-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.resource-card .resource-desc {
  font-size: 14px;
  color: var(--muted);
}

/* Button outline variant */
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

@media (max-width: 768px) {
  .thanks-timeline {
    flex-direction: column;
    align-items: center;
  }

  .thanks-step {
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================
   Nav Dropdown
   ======================================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  list-style: none;
  min-width: 180px;
  padding: 8px 0;
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-dropdown-menu a:hover {
  color: var(--primary);
  background: var(--bg-soft);
}

/* ========================================
   Hero Secondary CTA (POC)
   ======================================== */
.hero-cta-secondary {
  margin-top: 12px;
}

.hero-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 650;
  border-radius: 14px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.hero-cta .btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ========================================
   GDPR & Privacy Section
   ======================================== */
.gdpr-privacy {
  background: var(--bg-section);
}

.gdpr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 42px;
}

.gdpr-card {
  padding: 24px;
  border: 1px solid rgba(11,18,32,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 26px rgba(11,18,32,.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  text-align: center;
}

.gdpr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 46px rgba(11,18,32,.10);
  border-color: rgba(59,130,246,.25);
}

.gdpr-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.gdpr-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text);
}

.gdpr-card p {
  font-size: 15px;
}

.gdpr-cta {
  text-align: center;
}

/* ========================================
   Self-Improvement (DSPy) Section
   ======================================== */
.self-improvement {
  background: linear-gradient(135deg, rgba(59,130,246,.04), rgba(0,159,227,.06));
}

.dspy-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 42px;
}

.dspy-feature {
  text-align: center;
  padding: 34px 24px;
  border: 1px solid rgba(11,18,32,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 26px rgba(11,18,32,.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.dspy-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 46px rgba(11,18,32,.10);
}

.dspy-stat {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.dspy-feature h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.dspy-feature p {
  font-size: 15px;
}

.dspy-note {
  text-align: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(59,130,246,.18);
  box-shadow: var(--shadow-xs);
}

.dspy-note p {
  font-size: 17px;
  color: var(--text);
  max-width: 70ch;
  margin: 0 auto;
}

.dspy-note strong {
  color: var(--primary);
}

/* ========================================
   Productivity Section
   ======================================== */
.productivity-section {
  background: var(--bg-section);
}

.prod-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 42px;
}

.prod-stat {
  text-align: center;
  padding: 34px 24px;
  border: 1px solid rgba(11,18,32,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 26px rgba(11,18,32,.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.prod-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 46px rgba(11,18,32,.10);
}

.prod-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.prod-label {
  font-size: 16px;
  font-weight: 750;
  color: var(--text);
  margin-bottom: 10px;
}

.prod-stat p {
  font-size: 14px;
}

.prod-domains {
  text-align: center;
  margin-bottom: 42px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.domains-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.domains-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.domains-list span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.prod-cta {
  text-align: center;
}

/* ========================================
   Footer Links
   ======================================== */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 8px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Mobile nav dropdown */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    min-width: auto;
  }
  
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }
  
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  
  .nav-dropdown-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-2);
  }
  
  .hero-cta .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .gdpr-grid,
  .dspy-features,
  .prod-stats {
    grid-template-columns: 1fr;
  }
  
  .domains-list {
    gap: 6px;
  }
  
  .domains-list span {
    font-size: 12px;
    padding: 4px 10px;
  }
}
