:root {
  --bg:        #110e20;
  --bg2:       #1A142F;
  --surface:   #1A142F;
  --surface2:  #2a1f3f;
  --border:    rgba(255,255,255,0.1);
  --border2:   rgba(255,255,255,0.2);
  --cyan:      #00E5FF;
  --cyan-lo:   rgba(0,229,255,0.10);
  --cyan-mid:  rgba(0,229,255,0.20);
  --cyan-glow: rgba(0,229,255,0.35);
  --yellow:    #FFF176;
  --yellow-lo: rgba(255,241,118,0.10);
  --muted:     rgba(255,255,255,0.6);
  --text:      #FFFFFF;
  --text2:     rgba(255,255,255,0.8);
  --gradient-primary: linear-gradient(135deg, var(--cyan), var(--yellow));
  --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.2);
  --shadow-glow-strong: 0 0 50px rgba(0, 229, 255, 0.3);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Noise grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, .logo-text { font-family: 'Montserrat', sans-serif; }
code, .mono { font-family: 'Courier New', monospace; }

/* ════════════════════════════
   NAV
════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(17,14,32,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,229,255,0.3);
  padding: 1rem 0;
}
.nav-wrap {
  max-width: 1240px; margin: 0 auto;
  padding: 0 28px; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.5rem;
}
.logo .logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-mark {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.logo-mark img.logo-circle {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--text); }

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

.btn-ghost {
  padding: 0.75rem 1.5rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: var(--text2);
  font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text); }

.btn-cyan {
  padding: 0.75rem 1.5rem; border-radius: 8px; border: none;
  background: var(--gradient-primary); color: var(--bg);
  font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease;
}
.btn-cyan:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  padding: 6rem 28px 4rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; overflow: hidden;
}
/* Background image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/section images/Google Ads 8.png');
  background-size: 130% auto;
  background-position: center 25%;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
}
/* Overlay gradient for readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 60%, var(--bg) 100%),
    radial-gradient(ellipse at center, transparent 20%, var(--bg) 75%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 800px; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-lo); border: 1px solid var(--cyan-mid);
  border-radius: 100px; padding: 5px 14px 5px 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--cyan);
  margin-bottom: 28px;
}
.pill-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--cyan); display: flex; align-items: center;
  justify-content: center; font-size: 10px; color: #000; font-weight: 900;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.grad-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.35rem; line-height: 1.6;
  color: var(--text2); max-width: 600px; margin: 0 auto 2.5rem;
}

/* Social proof */
.proof-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 16px; margin-bottom: 56px;
  font-size: 0.82rem; color: var(--muted);
}
.proof-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.proof-row strong { color: var(--text2); font-weight: 600; }
.avatar-stack { display: flex; }
.av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, #00e5ff, #4400ff);
  margin-left: -8px; font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; color: #fff;
  flex-shrink: 0;
  animation: avatarFadeIn 0.4s ease forwards;
  opacity: 0;
}
.av:first-child { margin-left: 0; }

@keyframes avatarFadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* ════════════════════════════
   SCROLL TICKER
════════════════════════════ */
.ticker-wrap {
  width: 100%; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 12px 0; background: var(--bg2); margin-bottom: 0;
}
.ticker {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.02em; flex-shrink: 0;
}
.ticker-item [data-lucide] {
  width: 16px; height: 16px;
  stroke: var(--cyan);
  opacity: 0.8;
}
.ticker-item span { color: var(--cyan); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════
   SECTION WRAPPER
════════════════════════════ */
.section { max-width: 1240px; margin: 0 auto; padding: 96px 28px; }
.section-sm { max-width: 1240px; margin: 0 auto; padding: 60px 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--cyan); }

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700; letter-spacing: 0.01em; line-height: 1.2;
  margin-bottom: 1rem;
}
.sec-sub {
  font-size: 1.1rem; color: var(--text2); line-height: 1.7;
  max-width: 700px;
}

/* ════════════════════════════
   WORKFLOW SECTION
════════════════════════════ */
.workflows-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.workflows-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/section images/Flux2-Klein_00017_.png');
  background-size: 80% auto;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.workflows-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, var(--bg2) 70%);
  pointer-events: none;
}
.workflows-section > .section {
  position: relative;
  z-index: 1;
}

.wf-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 48px;
}

/* Filter tabs */
.wf-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.wf-tab {
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid var(--border); background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500;
  color: var(--muted); cursor: pointer; transition: all 0.18s;
}
.wf-tab:hover { border-color: var(--border2); color: var(--text2); }
.wf-tab.active {
  background: var(--cyan-lo); border-color: var(--cyan-mid); color: var(--cyan);
}

/* Workflow grid */
.wf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── NEW CARD BASE ── */
.card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: var(--cyan-mid);
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,229,255,0.05) inset;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.3s; z-index: 10;
}
.card:hover::before { opacity: 1; }
.card.accent-yellow:hover { border-color: rgba(255,241,118,0.3); }
.card.accent-yellow::before { background: linear-gradient(90deg, transparent, var(--yellow), transparent); }

/* ── Card Visual Zone ── */
.card-visual {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--surface2);
}

/* Card Tag */
.card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 20;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(8px);
  border: 1px solid var(--border2); border-radius: 7px;
  padding: 4px 10px;
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem;
  color: var(--cyan); letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600;
}

/* ── Card Footer ── */
.card-foot {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
}
.foot-left { display: flex; flex-direction: column; gap: 4px; }
.card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--text);
}
.card-speed {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; color: #4EFF91;
  display: flex; align-items: center; gap: 5px;
}
.speed-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #4EFF91; box-shadow: 0 0 6px #4EFF91;
  animation: gpulse 1.5s ease infinite;
}
@keyframes gpulse {
  0%,100% { box-shadow: 0 0 5px #4EFF91; }
  50% { box-shadow: 0 0 12px #4EFF91, 0 0 20px rgba(78,255,145,0.3); }
}

/* Try Button */
.try-btn {
  background: var(--cyan); color: #000;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.8rem; padding: 10px 16px;
  border-radius: 10px; border: none; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 0 0 0 var(--cyan-glow);
  display: flex; align-items: center; gap: 6px;
}
.try-btn:hover {
  background: #33ecff;
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-1px);
}
.try-btn [data-lucide] { width: 14px; height: 14px; }
.try-btn.accent-yellow { background: var(--yellow); }
.try-btn.accent-yellow:hover { background: #fff59d; box-shadow: 0 0 20px rgba(255,241,118,0.4); }

/* ════════════════════════════
   SPLIT CARD (Before/After)
════════════════════════════ */
.split-wrap {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
  user-select: none;
}
.split-before, .split-after {
  position: absolute; top: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
}
.split-before { left: 0; width: 50%; overflow: hidden; }
.split-after { right: 0; width: 50%; overflow: hidden; }

.split-before-inner, .split-after-inner {
  position: absolute;
  top: 0; bottom: 0;
  width: 100%;
  min-width: 360px;
  display: flex; align-items: center; justify-content: center;
}
.split-before-inner { left: 0; }
.split-after-inner { right: 0; }

/* Labels */
.split-label {
  position: absolute; bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  border-radius: 5px; padding: 3px 8px;
  z-index: 5;
}
.split-label.left-lbl { left: 10px; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.1); }
.split-label.right-lbl { right: 10px; color: var(--cyan); border: 1px solid var(--cyan-mid); }
.split-label.right-lbl.accent-yellow { color: var(--yellow); border-color: rgba(255,241,118,0.25); }

/* Room sketch lines */
.room-sketch {
  width: 140px; height: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  position: relative;
}
.room-sketch::before {
  content: '';
  position: absolute; bottom: 0; left: 20%; right: 20%; top: 40%;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
}
.room-after {
  width: 140px; height: 100px;
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 3px;
  background: rgba(0,229,255,0.03);
  box-shadow: 0 0 20px rgba(0,229,255,0.08) inset;
  position: relative;
}
.room-after::before {
  content: '';
  position: absolute; bottom: 0; left: 20%; right: 20%; top: 40%;
  border: 1px solid rgba(0,229,255,0.15);
  border-bottom: none;
}
.room-after::after {
  content: '';
  position: absolute; top: 15px; left: 15px; right: 15px;
  height: 1px; background: rgba(0,229,255,0.15);
}
.room-after.accent-yellow {
  border-color: rgba(255,241,118,0.3);
  box-shadow: 0 0 20px rgba(255,241,118,0.07) inset;
}
.room-after.accent-yellow::before { border-color: rgba(255,241,118,0.15); }
.room-after.accent-yellow::after { background: rgba(255,241,118,0.15); }

/* Divider handle */
.split-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--cyan);
  transform: translateX(-50%);
  z-index: 15;
  pointer-events: none;
  transition: left 0.05s linear;
}
.split-handle::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cyan); border: 2px solid var(--bg);
  box-shadow: 0 0 14px rgba(0,229,255,0.6);
}
.split-handle::after {
  content: '< >';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7px; color: #000; font-weight: 900;
  letter-spacing: -1px; white-space: nowrap;
}
.split-handle.accent-yellow { background: var(--yellow); }
.split-handle.accent-yellow::before { background: var(--yellow); box-shadow: 0 0 14px rgba(255,241,118,0.5); }

/* Hover hint */
.hover-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif; font-size: 0.6rem;
  color: rgba(255,255,255,0.3); white-space: nowrap;
  z-index: 10;
  transition: opacity 0.4s;
}
.card:hover .hover-hint { opacity: 0; }

/* ════════════════════════════
   IMAGE CYCLE CARD
════════════════════════════ */
.img-cycle { width: 100%; height: 100%; position: relative; }
.cycle-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.7s ease;
}
.cycle-slide.active { opacity: 1; }
.slide-prompt {
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  color: rgba(255,255,255,0.18); text-align: center;
  line-height: 1.7; padding: 0 24px; letter-spacing: 0.03em;
}
.cycle-counter {
  position: absolute; bottom: 12px; right: 14px;
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem;
  color: var(--muted); z-index: 5;
}
.cycle-counter span { color: var(--cyan); }
.cycle-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 5;
}
.c-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.18); transition: background 0.3s, transform 0.3s;
}
.c-dot.active { background: var(--cyan); transform: scale(1.3); }

/* Note below grid */
.wf-note {
  text-align: center; margin-top: 28px;
  font-size: 0.82rem; color: var(--muted);
}
.wf-note span { color: var(--cyan); }

/* ════════════════════════════
   HOW IT WORKS
════════════════════════════ */
#how {
  position: relative;
  overflow: hidden;
}
#how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/section images/Flux2-Klein_00020_.png');
  background-size: 70% auto;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
#how::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, var(--bg) 70%);
  pointer-events: none;
}
#how > .section {
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin-top: 52px;
}
/* .steps-grid::after {
  content: '';
  position: absolute; top: 27px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-mid), var(--cyan), var(--cyan-mid), transparent);
} */

.step-col {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
}
.step-num {
  width: 54px; height: 54px; border-radius: 14px;
  border: 1px solid var(--border2); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 600;
  color: var(--cyan); margin-bottom: 20px; position: relative; z-index: 1;
}
.step-title { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 0.9rem; color: var(--text2); line-height: 1.5; }

/* ════════════════════════════
   FEATURES 3-UP
════════════════════════════ */
.features-section {
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute;
  inset: -20%;
  background-image: url('../images/section images/Flux2-Klein_00016_.png');
  background-size: cover;
  background-position: center;
  transform: rotate(180deg) scale(1.2);
  opacity: 0.4;
  pointer-events: none;
}
.features-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
  pointer-events: none;
}
.features-section > .section {
  position: relative;
  z-index: 1;
}

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; }

.feat-card {
  background: linear-gradient(135deg, var(--surface), rgba(26, 20, 47, 0.8));
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 16px; padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.feat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-primary);
  opacity: 0; transition: opacity 0.3s ease;
}
.feat-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,229,255,0.2); }
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cyan-lo); border: 1px solid var(--cyan-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.feat-title { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feat-desc { font-size: 0.9rem; color: var(--text2); line-height: 1.5; }

/* ════════════════════════════
   PRICING
════════════════════════════ */
#pricing {
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: url('../images/section images/Flux2-Klein_00019_.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  pointer-events: none;
}
#pricing::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%),
    radial-gradient(ellipse at center, transparent 20%, var(--bg) 70%);
  pointer-events: none;
}
#pricing > .section {
  position: relative;
  z-index: 1;
}

.price-grid { display: flex; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; justify-self: center;  
    align-self: center;}

.price-card {
  background: linear-gradient(135deg, var(--surface), rgba(26, 20, 47, 0.8));
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 24px; padding: 2rem 1.5rem;
  position: relative; transition: all 0.3s ease;
  backdrop-filter: blur(10px);
      
}
.price-card:hover { transform: translateY(-4px); }
.price-card.best {
  border: 2px solid rgba(0,229,255,0.4);
  background: linear-gradient(135deg, var(--surface), rgba(26, 20, 47, 0.8));
  box-shadow: 0 0 60px rgba(0,229,255,0.15);
}
.price-card.best::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
}

.price-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-primary); color: var(--bg); font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 700; padding: 0.35rem 0.85rem;
  border-radius: 20px; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}

.price-tier { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 10px; }
.price-num {
  font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-num sup { font-size: 1.2rem; vertical-align: super; }
.price-cadence { font-size: 0.85rem; color: var(--text2); margin-bottom: 24px; }

.price-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.price-list li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--text2); }
.price-list li::before { content: '\2713'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }

.price-btn-outline {
  width: 100%; padding: 1rem; border-radius: 12px;
  border: 1px solid var(--border2); background: rgba(255,255,255,0.05);
  color: var(--text); font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: all 0.3s ease;
}
.price-btn-outline:hover { background: rgba(255,255,255,0.1); }

.price-btn-solid {
  width: 100%; padding: 1rem; border-radius: 12px; border: none;
  background: var(--gradient-primary); color: var(--bg);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,229,255,0.3);
}
.price-btn-solid:hover { box-shadow: var(--shadow-glow-strong); transform: translateY(-2px); }

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq-section {
  background-image: url('../images/section images/Flux2-Klein_00013_ (1).png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 14, 32, 0.7);
  pointer-events: none;
}
.faq-section > .section {
  position: relative;
  z-index: 1;
}

.faq-wrap { max-width: 700px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 600;
  background: none; border: none; color: var(--text); cursor: pointer; text-align: left;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--cyan); }
.faq-chevron { flex-shrink: 0; color: var(--muted); transition: color 0.26s; display: flex; align-items: center; }
.faq-item.open .faq-chevron { color: var(--cyan); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ════════════════════════════
   BOTTOM CTA
════════════════════════════ */
.cta-band {
  max-width: 1240px; margin: 0 auto; padding: 0 28px 100px;
}
.cta-inner {
  background: linear-gradient(135deg, var(--surface), rgba(26, 20, 47, 0.8));
  border: 2px solid rgba(0,229,255,0.3);
  border-radius: 24px; padding: 5rem 3rem;
  text-align: center; position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(0,229,255,0.1);
}
.cta-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; font-weight: 700; }
.cta-inner p { color: var(--text2); max-width: 500px; margin: 0 auto 2rem; line-height: 1.6; font-size: 1.1rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

.btn-big-cyan {
  background: var(--gradient-primary); color: var(--bg); border: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem;
  padding: 1.25rem 2.5rem; border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow-glow); transition: all 0.3s ease;
}
.btn-big-cyan:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-strong); }

.btn-big-ghost {
  background: rgba(255,255,255,0.05); color: var(--text); border: 1px solid var(--border2);
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 1.25rem 2.5rem; border-radius: 12px; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-big-ghost:hover { background: rgba(255,255,255,0.1); }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  max-width: 1240px; margin: 0 auto;
  padding: 36px 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.foot-links { display: flex; gap: 24px; list-style: none; flex-direction: column;}
.foot-links a { text-decoration: none; color: var(--muted); font-size: 0.82rem; transition: all 0.2s; }
.foot-links a:hover { color: var(--text); }

.foot-links .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--cyan-lo);
  border: 1px solid var(--cyan-mid);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 500;
}
.foot-links .contact-link:hover {
  background: var(--cyan-mid);
  color: var(--text);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}
.foot-links .contact-link [data-lucide] {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.foot-copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

/* ════════════════════════════
   LOGIN MODAL
════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.modal-backdrop.show { opacity: 1; pointer-events: all; }

.modal {
  background: linear-gradient(135deg, var(--surface), #2a1f3f);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 16px; width: 100%; max-width: 500px;
  padding: 40px 36px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2);
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.modal-backdrop.show .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; color: var(--muted);
  font-size: 1.2rem; cursor: pointer; transition: color 0.18s;
}
.modal-close:hover { color: var(--text); }

.modal-workflow-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-lo); border: 1px solid var(--cyan-mid);
  border-radius: 8px; padding: 5px 12px;
  font-size: 0.78rem; font-weight: 700; color: var(--cyan);
  margin-bottom: 22px;
}

.modal h3 {
  font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.modal-sub { font-size: 0.9rem; color: var(--text2); margin-bottom: 28px; line-height: 1.6; }

.modal-tabs {
  display: flex; background: var(--bg); border-radius: 10px; padding: 4px;
  margin-bottom: 24px; gap: 4px;
}
.modal-tab {
  flex: 1; padding: 10px; border-radius: 7px; border: none;
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600;
  background: none; color: var(--muted); cursor: pointer; transition: all 0.3s ease;
}
.modal-tab.active { background: var(--surface2); color: var(--text); }

.modal-input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border2);
  border-radius: 8px; padding: 14px 16px;
  color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  outline: none; transition: all 0.3s ease; margin-bottom: 12px;
}
.modal-input:focus { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0,229,255,0.2); background: var(--bg); }
.modal-input::placeholder { color: rgba(255,255,255,0.4); }

.modal-submit {
  width: 100%; padding: 14px; border-radius: 12px; border: none;
  background: var(--gradient-primary); color: var(--bg);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease; margin-top: 4px;
  box-shadow: 0 8px 32px rgba(0,229,255,0.3);
}
.modal-submit:hover { box-shadow: var(--shadow-glow-strong); transform: translateY(-2px); }

.modal-footer-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 16px; }

/* ════════════════════════════
   LUCIDE ICONS
════════════════════════════ */
/* Base icon styling */
[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  vertical-align: middle;
}

/* Feature card icons */
.feat-icon [data-lucide] {
  width: 22px;
  height: 22px;
  stroke: var(--cyan);
}

/* Pricing icons */
.price-tag [data-lucide] {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.price-list [data-lucide] {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
  margin-right: 8px;
  flex-shrink: 0;
}

.price-list li {
  display: flex;
  align-items: center;
}

/* FAQ chevron icon */
.faq-chevron [data-lucide] {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron [data-lucide] {
  transform: rotate(180deg);
}

/* Modal workflow badge icon */
#modalWorkflowIcon [data-lucide] {
  width: 18px;
  height: 18px;
  stroke: var(--cyan);
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 960px) {
  .wf-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::after { display: none; }
}
@media (max-width: 640px) {
  .wf-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  footer { flex-direction: column; align-items: flex-start; }
}

/* Entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.55s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* ════════════════════════════
   POLICY PAGES
════════════════════════════ */
.policy-page {
  display: none;
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
}
.policy-page.active {
  display: block;
}
.policy-page::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 241, 118, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 229, 255, 0.03) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}

.policy-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-radius: 20px;
  border: 1px solid var(--cyan-mid);
}

.policy-header h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.policy-date-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.policy-date-info p {
  color: var(--text2);
  font-size: 0.875rem;
  margin: 0;
}

.policy-section {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(0, 229, 255, 0.3);
  padding-bottom: 10px;
}

.policy-subsection {
  margin-bottom: 25px;
}

.policy-subsection:last-child {
  margin-bottom: 0;
}

.policy-subsection h3 {
  font-size: 1.125rem;
  color: var(--yellow);
  margin-bottom: 15px;
}

.policy-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text2);
  margin-bottom: 15px;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-section li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text2);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.policy-section li::before {
  content: "•";
  color: var(--cyan);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.policy-highlight-box {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #2ecc71;
}

.policy-ethics-box {
  background: rgba(255, 241, 118, 0.1);
  border: 1px solid rgba(255, 241, 118, 0.3);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--yellow);
}

.policy-contact-box {
  background: var(--cyan-lo);
  border: 1px solid var(--cyan-mid);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--cyan);
}

.policy-footer {
  text-align: center;
  padding: 30px;
  background: var(--cyan-lo);
  border-radius: 16px;
  border: 1px solid var(--cyan-mid);
  margin-top: 40px;
}

.policy-footer p {
  font-size: 1rem;
  color: var(--text2);
  margin: 0;
}

.policy-footer a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.policy-footer a:hover {
  text-decoration: underline;
}

/* Refund-specific styles */
.refund-timeframe {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 20px;
  color: #2ecc71;
  font-weight: 600;
  text-align: center;
}

.refund-card {
  background: rgba(46, 204, 113, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid #2ecc71;
  margin-bottom: 20px;
}

.refund-card:last-child {
  margin-bottom: 0;
}

.no-refund-card {
  background: rgba(231, 76, 60, 0.05);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid #e74c3c;
}

.process-card {
  background: var(--cyan-lo);
  border: 1px solid var(--cyan-mid);
  border-radius: 12px;
  padding: 25px;
}

.refund-card h3,
.no-refund-card h3,
.process-card h3 {
  font-size: 1.125rem;
  margin-bottom: 15px;
  color: var(--text);
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 20px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cyan), #0088cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.125rem;
  color: var(--cyan);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.5;
  margin: 0;
}

.notes-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
}

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

.note-content {
  flex: 1;
}

.note-content h4 {
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 8px;
}

.note-content p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.5;
  margin: 0;
}

/* Back button */
.policy-back-btn {
  position: fixed;
  top: 100px;
  left: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--text2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.policy-back-btn:hover {
  background: var(--surface2);
  border-color: var(--cyan-mid);
  color: var(--cyan);
}

.policy-back-btn [data-lucide] {
  width: 16px;
  height: 16px;
}

/* Hide main content when policy is active */
body.policy-active .main-content {
  display: none;
}

body.policy-active footer {
  display: none;
}

@media (max-width: 768px) {
  .policy-back-btn {
    top: 90px;
    left: 16px;
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .policy-content {
    padding: 40px 16px 60px;
  }

  .policy-header {
    padding: 28px 20px;
  }

  .policy-section {
    padding: 24px 20px;
  }

  .policy-date-info {
    flex-direction: column;
    gap: 8px;
  }

  .process-step {
    flex-direction: column;
    gap: 12px;
  }
}

/* ════════════════════════════
   LEGAL COMPLIANCE PAGE
════════════════════════════ */
.legal-content {
  max-width: 1200px;
}

.compliance-grid,
.practices-grid,
.rights-grid,
.privacy-grid,
.ethics-grid,
.implementation-grid,
.third-party-grid {
  display: grid;
  gap: 20px;
}

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

.practices-grid,
.privacy-grid,
.ethics-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.rights-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.implementation-grid,
.third-party-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.compliance-card {
  background: rgba(46, 204, 113, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid #2ecc71;
}

.compliance-card .card-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.compliance-card h3 {
  font-size: 1.125rem;
  color: #2ecc71;
  margin-bottom: 15px;
}

.practice-card {
  background: var(--cyan-lo);
  border: 1px solid var(--cyan-mid);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid var(--cyan);
}

.practice-card h3 {
  font-size: 1.125rem;
  color: var(--cyan);
  margin-bottom: 15px;
}

.rights-card {
  background: rgba(255, 241, 118, 0.05);
  border: 1px solid rgba(255, 241, 118, 0.2);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid var(--yellow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.rights-card .rights-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.rights-card h3 {
  font-size: 1.125rem;
  color: var(--yellow);
  margin-bottom: 15px;
}

.privacy-card {
  background: rgba(138, 43, 226, 0.05);
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid #8A2BE2;
}

.privacy-card h3 {
  font-size: 1.125rem;
  color: #DA70D6;
  margin-bottom: 15px;
}

.ethics-card {
  background: rgba(255, 165, 0, 0.05);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid #FFA500;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ethics-card .ethics-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.ethics-card h3 {
  font-size: 1.125rem;
  color: #FFA500;
  margin-bottom: 15px;
}

.notice-card {
  background: rgba(100, 149, 237, 0.05);
  border: 1px solid rgba(100, 149, 237, 0.2);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid #6495ED;
}

.notice-card .notice-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.notice-card h3 {
  font-size: 1.0625rem;
  color: #6495ED;
  margin-bottom: 12px;
}

.notice-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text2);
  margin: 0;
}

.implementation-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
}

.implementation-category h3 {
  font-size: 1.125rem;
  color: var(--cyan);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.3);
  padding-bottom: 10px;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text2);
}

.checklist-item .checkmark {
  font-size: 1rem;
  color: #2ecc71;
  flex-shrink: 0;
}

.legal-disclaimer {
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.legal-disclaimer p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text2);
  margin: 0;
  text-align: center;
}

.document-info {
  max-width: 800px;
  margin: 0 auto;
}

.document-info h3 {
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 25px;
}

.document-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
  text-align: left;
}

.document-details > div {
  font-size: 0.875rem;
  color: var(--text2);
}

.document-summary {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .rights-card,
  .ethics-card {
    flex-direction: column;
    gap: 12px;
  }
}
