:root {
  --bg: #07110f;
  --bg-surface: #0d1f1a;
  --bg-elevated: #122820;
  --bg-card: #0f1e19;
  --border: #1e3530;
  --border-light: #254540;
  --accent: #00c896;
  --accent-dim: rgba(0,200,150,0.12);
  --accent-glow: rgba(0,200,150,0.25);
  --text-primary: #e8f5f0;
  --text-secondary: #a0c4b8;
  --text-muted: #5a8a7a;
  --danger: #e05555;
  --warning: #ffb74d;
  --green: #4caf82;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--sans); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-dark { background: var(--bg-surface); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, #00c896 0%, #00e5b0 50%, #7fffd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* NAV */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,17,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

#nav.scrolled { background: rgba(7,17,15,0.97); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  color: #07110f;
  font-weight: 900;
  font-size: 13px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}

.logo-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  padding: 8px 18px;
  background: var(--accent);
  color: #07110f !important;
  font-weight: 700 !important;
  border-radius: var(--radius);
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.88; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.mobile-menu a {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta { color: var(--accent) !important; font-weight: 700 !important; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,150,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,150,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,200,150,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,200,150,0.25);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--accent);
  color: #07110f;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  transition: opacity 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  padding: 14px 28px;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 20px; font-weight: 800; color: var(--accent); font-family: var(--mono); }
.stat-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.stat-div { width: 1px; height: 32px; background: var(--border); }

/* HERO TERMINAL */
.hero-terminal {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0,200,150,0.06);
  position: relative;
  z-index: 1;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.red { background: #e05555; }
.t-dot.yellow { background: #ffb74d; }
.t-dot.green { background: #4caf82; }

.t-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
  font-family: var(--mono);
}

.terminal-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }

.t-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.t-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.t-val { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.t-val.accent { color: var(--accent); }
.t-val.green { color: var(--green); }
.t-val.mono { font-family: var(--mono); font-size: 11px; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-terminal { max-width: 480px; }
}

/* WHAT IS CALMAX */
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.what-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.what-card:hover { border-color: var(--border-light); transform: translateY(-2px); }

.what-icon { font-size: 28px; margin-bottom: 14px; }
.what-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.what-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 900px) { .what-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .what-grid { grid-template-columns: 1fr; } }

/* HOW IT WORKS */
.steps { display: flex; flex-direction: column; gap: 80px; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr 340px;
  gap: 40px;
  align-items: start;
}

.step-reverse { direction: rtl; }
.step-reverse > * { direction: ltr; }

.step-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--border-light);
  font-family: var(--mono);
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

.step-list { display: flex; flex-direction: column; gap: 8px; }
.step-list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.step-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

.step-visual { padding-top: 4px; }

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
}

.sc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: var(--bg-elevated);
  border-radius: 6px;
}

.sc-label { font-size: 11px; color: var(--text-muted); }
.sc-val { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.sc-val.green { color: var(--green); }
.sc-val.accent { color: var(--accent); }
.sc-val.mono { font-family: var(--mono); font-size: 11px; }

@media (max-width: 900px) {
  .step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .step-reverse { direction: ltr; }
}
/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feat-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.feat-icon { font-size: 24px; margin-bottom: 12px; }
.feat-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.feat-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* PRICING */
.currency-toggle {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
}

.cur-btn {
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: none;
}

.cur-btn.active {
  background: var(--accent);
  color: #07110f;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}

.price-card:hover { border-color: var(--border-light); }

.price-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(0,200,150,0.06) 0%, var(--bg-card) 60%);
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(0,200,150,0.1);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #07110f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-tier { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.price-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; min-height: 40px; }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency { font-size: 22px; font-weight: 700; color: var(--accent); }
.price-num { font-size: 42px; font-weight: 900; color: var(--text-primary); line-height: 1; font-family: var(--mono); }
.price-per { font-size: 13px; color: var(--text-muted); margin-left: 4px; }
.price-billing { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }

.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.pf-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pf-muted { color: var(--border-light); flex-shrink: 0; }

.price-btn {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  transition: all 0.2s;
  cursor: pointer;
}

.price-btn:hover { border-color: var(--accent); color: var(--accent); }

.price-btn-featured {
  background: var(--accent);
  color: #07110f;
  border-color: var(--accent);
}

.price-btn-featured:hover { opacity: 0.88; color: #07110f; }

.pricing-note {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding: 16px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-featured { transform: none; }
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}

.testi-card:hover { border-color: var(--border-light); }

.testi-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(0,200,150,0.05) 0%, var(--bg-surface) 60%);
}

.testi-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; flex: 1; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 38px; height: 38px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.testi-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.testi-role { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 900px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testi-grid { grid-template-columns: 1fr; } }

/* LEARNING */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.learn-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}

.learn-card:hover { border-color: var(--border-light); }

.learn-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0,200,150,0.06) 0%, var(--bg-card) 60%);
  border-color: var(--border-light);
}

.learn-coming { opacity: 0.6; }

.learn-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.learn-card h3 { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.learn-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; flex: 1; }

.learn-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.learn-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .learn-grid { grid-template-columns: repeat(2, 1fr); }
  .learn-featured { grid-column: span 2; }
}
@media (max-width: 560px) {
  .learn-grid { grid-template-columns: 1fr; }
  .learn-featured { grid-column: span 1; }
}

/* FAQ */
.faq-container { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--border-light); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-arrow {
  font-size: 10px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 20px 18px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.about-val {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.av-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.about-val strong { font-size: 13px; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 4px; }
.about-val p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.about-stats { display: flex; flex-direction: column; gap: 16px; }

.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.as-num { font-size: 32px; font-weight: 900; color: var(--accent); font-family: var(--mono); margin-bottom: 4px; }
.as-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

.about-disclaimer {
  padding: 14px 16px;
  background: rgba(224,85,85,0.06);
  border: 1px solid rgba(224,85,85,0.2);
  border-radius: var(--radius);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-disclaimer strong { color: var(--danger); }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* CONTACT */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.order-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-check input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
.form-check label { font-size: 12px; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.form-check a { color: var(--accent); text-decoration: underline; }

.form-submit {
  padding: 14px;
  background: var(--accent);
  color: #07110f;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}

.form-submit:hover { opacity: 0.88; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success {
  padding: 14px 16px;
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--accent);
  line-height: 1.6;
}

.form-error {
  padding: 14px 16px;
  background: rgba(224,85,85,0.08);
  border: 1px solid rgba(224,85,85,0.25);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--danger);
}

.form-error a { color: var(--accent); text-decoration: underline; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.ci-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.ci-card h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }

.ci-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.ci-row:last-of-type { border-bottom: none; }
.ci-val { color: var(--text-secondary); font-weight: 600; text-align: right; }
.ci-note { font-size: 11px; color: var(--text-muted); margin-top: 10px; line-height: 1.5; }

.ci-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.ci-step:last-child { border-bottom: none; }

.ci-num {
  width: 22px; height: 22px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,200,150,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
  padding: 12px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 4px; }
.fl-col a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.fl-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
