/* ============================================================
   AMD LAB — Stylesheet Global
   Palette : Violet #7B2FFF | Cyan #00D4FF | Orange #FF6B00
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

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

:root {
  --bg:       #08080F;
  --bg2:      #0E0E1A;
  --bg3:      #14142A;
  --violet:   #7B2FFF;
  --violet-l: #A465FF;
  --cyan:     #00D4FF;
  --cyan-d:   #0099BB;
  --orange:   #FF6B00;
  --white:    #F0F0F5;
  --grey:     #8888AA;
  --border:   rgba(123,47,255,0.25);
  --glow-v:   0 0 20px rgba(123,47,255,0.4);
  --glow-c:   0 0 20px rgba(0,212,255,0.35);
  --glow-o:   0 0 20px rgba(255,107,0,0.4);
  --radius:   12px;
  --radius-sm:8px;
  --font-main:'Space Grotesk', sans-serif;
  --font-head:'Rajdhani', sans-serif;
  --transition:.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }

/* ── Typography helpers ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: .03em; }
.text-violet  { color: var(--violet-l); }
.text-cyan    { color: var(--cyan); }
.text-orange  { color: var(--orange); }
.text-grey    { color: var(--grey); }

.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid;
}
.tag-violet { color: var(--violet-l); border-color: var(--violet); background: rgba(123,47,255,.12); }
.tag-cyan   { color: var(--cyan);     border-color: var(--cyan);   background: rgba(0,212,255,.1);  }
.tag-orange { color: var(--orange);   border-color: var(--orange); background: rgba(255,107,0,.12);}
.tag-grey   { color: var(--grey);     border-color: rgba(136,136,170,.3); background: rgba(136,136,170,.08);}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.08);
  opacity:0;
  transition:var(--transition);
}
.btn:hover::after { opacity:1; }

.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, #5A1BE8 100%);
  color: #fff;
  box-shadow: var(--glow-v);
}
.btn-primary:hover { box-shadow: 0 0 35px rgba(123,47,255,.65); transform: translateY(-2px); }

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-d) 100%);
  color: var(--bg);
  box-shadow: var(--glow-c);
}
.btn-cyan:hover { box-shadow: 0 0 35px rgba(0,212,255,.6); transform: translateY(-2px); }

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #CC4400 100%);
  color: #fff;
  box-shadow: var(--glow-o);
}
.btn-orange:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--violet-l);
  border: 1.5px solid var(--violet);
}
.btn-outline:hover { background: rgba(123,47,255,.12); transform: translateY(-2px); }

.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(123,47,255,.05) 0%, transparent 60%);
  pointer-events:none;
}
.card:hover { border-color: rgba(123,47,255,.5); transform: translateY(-4px); box-shadow: var(--glow-v); }

.card-cyan:hover { border-color: rgba(0,212,255,.5); box-shadow: var(--glow-c); }
.card-orange:hover { border-color: rgba(255,107,0,.5); box-shadow: var(--glow-o); }

/* ── Section headers ────────────────────────────────────────── */
.section-label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content:'';
  display:inline-block;
  width:28px; height:2px;
  background: var(--cyan);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white) 0%, rgba(240,240,245,.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title span { -webkit-text-fill-color: var(--violet-l); }
.section-subtitle { color: var(--grey); font-size: 1.05rem; max-width: 560px; }

/* ── Division icon ──────────────────────────────────────────── */
.div-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .05em;
}
.div-icon-violet { background: rgba(123,47,255,.2); border: 1px solid rgba(123,47,255,.4); color: var(--violet-l); }
.div-icon-cyan   { background: rgba(0,212,255,.15);  border: 1px solid rgba(0,212,255,.35);  color: var(--cyan); }
.div-icon-orange { background: rgba(255,107,0,.15);  border: 1px solid rgba(255,107,0,.35);  color: var(--orange); }
.div-icon-grey   { background: rgba(136,136,170,.1); border: 1px solid rgba(136,136,170,.25);color: var(--grey); }

/* ── Separator ──────────────────────────────────────────────── */
.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 40px 0;
}

/* ── Glow line ──────────────────────────────────────────────── */
.glow-line {
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 70px;
  background: rgba(8,8,15,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-logo img {
  height: 38px;
  width: auto;
}
.navbar-logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
}
.navbar-logo-text span { color: var(--violet-l); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-nav a {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--white); background: rgba(123,47,255,.15); }
.navbar-nav a.active { color: var(--violet-l); }

.navbar-cta { margin-left: 16px; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Page offset ──────────────────────────────────────────── */
.page-content { padding-top: 70px; }

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,47,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,255,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-bg-glow-1 {
  width: 600px; height: 600px;
  background: var(--violet);
  top: -200px; left: -100px;
}
.hero-bg-glow-2 {
  width: 400px; height: 400px;
  background: var(--cyan);
  bottom: -100px; right: 100px;
  opacity: .2;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--cyan);
  display: inline-block;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero-title .line-violet {
  display: block;
  background: linear-gradient(135deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-stat-card {
  background: rgba(14,14,26,.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.hero-stat-card:hover { border-color: rgba(123,47,255,.4); }
.hero-stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--violet-l);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-value.cyan { color: var(--cyan); }
.hero-stat-value.orange { color: var(--orange); }
.hero-stat-label { font-size: .85rem; color: var(--grey); }

/* ─────────────────────────────────────────────────────────────
   DIVISION CARDS (homepage)
───────────────────────────────────────────────────────────── */
.div-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.div-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height: 3px;
  transition: var(--transition);
  opacity: 0;
}
.div-card-violet::before { background: linear-gradient(90deg, var(--violet), var(--violet-l)); }
.div-card-cyan::before   { background: linear-gradient(90deg, var(--cyan), var(--cyan-d)); }
.div-card-orange::before { background: linear-gradient(90deg, var(--orange), #FF9F00); }
.div-card-grey::before   { background: linear-gradient(90deg, var(--grey), #5A5A7A); }

.div-card:hover { transform: translateY(-6px); }
.div-card-violet:hover { border-color: rgba(123,47,255,.5); box-shadow: var(--glow-v); }
.div-card-violet:hover::before { opacity: 1; }
.div-card-cyan:hover   { border-color: rgba(0,212,255,.5);  box-shadow: var(--glow-c); }
.div-card-cyan:hover::before   { opacity: 1; }
.div-card-orange:hover { border-color: rgba(255,107,0,.5);  box-shadow: var(--glow-o); }
.div-card-orange:hover::before { opacity: 1; }
.div-card-grey:hover   { border-color: rgba(136,136,170,.3); }
.div-card-grey:hover::before   { opacity: 1; }

.div-card-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.div-card-sub {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}
.div-card-desc {
  font-size: .9rem;
  color: rgba(240,240,245,.65);
  line-height: 1.6;
  margin-bottom: 20px;
}
.div-card-arrow {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.div-card:hover .div-card-arrow { gap: 12px; }

/* ─────────────────────────────────────────────────────────────
   PRICING TABLE
───────────────────────────────────────────────────────────── */
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.pricing-card-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-card-header.violet { background: linear-gradient(135deg, rgba(123,47,255,.15) 0%, transparent 100%); }
.pricing-card-header.cyan   { background: linear-gradient(135deg, rgba(0,212,255,.1) 0%, transparent 100%); }
.pricing-card-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.pricing-card-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card-phase { font-size: .8rem; color: var(--grey); }
.pricing-card-body  { padding: 20px 28px 28px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(240,240,245,.8);
  margin-bottom: 12px;
}
.pricing-feature-icon { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

/* ─────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,47,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .2;
  top: -200px; left: -100px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-division {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 8px;
  line-height: 1;
}
.page-hero-subtitle {
  font-size: 1.2rem;
  color: var(--grey);
  max-width: 600px;
}

/* ─────────────────────────────────────────────────────────────
   PROCESS STEPS
───────────────────────────────────────────────────────────── */
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.step-number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(123,47,255,.15);
  border: 2px solid var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--violet-l);
}
.step-content h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.step-content p { font-size: .9rem; color: var(--grey); }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--violet-l); }
.footer-brand-desc { font-size: .875rem; color: var(--grey); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  cursor: pointer;
}
.footer-social:hover { border-color: var(--violet); color: var(--violet-l); background: rgba(123,47,255,.1); }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  color: rgba(240,240,245,.65);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--grey);
}
.footer-bottom span { color: var(--violet-l); }

/* ─────────────────────────────────────────────────────────────
   CONTACT / ASSISTANT
───────────────────────────────────────────────────────────── */
.assistant-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.assistant-shell {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.assistant-header {
  background: linear-gradient(135deg, rgba(123,47,255,.2) 0%, rgba(0,212,255,.1) 100%);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.assistant-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.assistant-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.assistant-status {
  font-size: .75rem;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 6px;
}
.assistant-status::before {
  content:'';
  width:6px; height:6px;
  border-radius:50%;
  background: var(--cyan);
  display:inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; }
  50% { opacity:.3; }
}

.assistant-body { padding: 28px; min-height: 360px; }
.assistant-step { display: none; animation: fadeStep .3s ease; }
.assistant-step.active { display: block; }
@keyframes fadeStep {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0); }
}

.assistant-question {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.assistant-hint { font-size: .85rem; color: var(--grey); margin-bottom: 24px; }
.assistant-options { display: flex; flex-direction: column; gap: 10px; }
.assistant-option {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.assistant-option:hover { border-color: var(--violet); background: rgba(123,47,255,.08); }
.assistant-option.selected { border-color: var(--violet); background: rgba(123,47,255,.12); }
.assistant-option-label {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
}
.assistant-option-sub { font-size: .8rem; color: var(--grey); margin-top: 2px; }
.assistant-option-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.assistant-form-group { margin-bottom: 20px; }
.assistant-form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--grey);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.assistant-input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-main);
  font-size: .95rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
}
.assistant-input:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(123,47,255,.15); }
.assistant-input::placeholder { color: rgba(136,136,170,.6); }
textarea.assistant-input { resize: vertical; min-height: 100px; }

.assistant-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }

.assistant-summary {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(123,47,255,.1);
  font-size: .9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .key { color: var(--grey); }
.summary-row .val { font-weight: 600; }

.assistant-progress {
  display: flex;
  gap: 6px;
  padding: 0 28px 20px;
}
.progress-dot {
  height: 3px;
  flex: 1;
  background: rgba(123,47,255,.2);
  border-radius: 2px;
  transition: background .4s ease;
}
.progress-dot.done { background: var(--violet); }
.progress-dot.active { background: linear-gradient(90deg, var(--violet), var(--cyan)); }

/* ─────────────────────────────────────────────────────────────
   ALERT / INFO BOXES
───────────────────────────────────────────────────────────── */
.alert {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
}
.alert-violet { background: rgba(123,47,255,.12); border: 1px solid rgba(123,47,255,.3); }
.alert-cyan   { background: rgba(0,212,255,.08);  border: 1px solid rgba(0,212,255,.25); }
.alert-orange { background: rgba(255,107,0,.1);   border: 1px solid rgba(255,107,0,.3); }
.alert-icon { flex-shrink:0; font-size:1.1rem; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .navbar-nav { display: none; }
  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(8,8,15,.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
  }
  .hamburger { display: flex; }
  .navbar-cta { display: none; }

  .page-hero-division { font-size: 2.8rem; }
  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
