/* ============================================================
   THEME TOKENS
   Swap these when the brand's visual identity file is applied.
   Colors, fonts, radius and spacing all live here.
   ============================================================ */
:root {
  /* Brand palette (placeholder — replace with visual identity) */
  --brand:        #4f46e5;   /* primary */
  --brand-2:      #06b6d4;   /* secondary / gradient end */
  --brand-ink:    #0b1020;   /* deep background */
  --accent:       #22d3ee;

  /* Surfaces & text */
  --bg:           #0b1020;
  --bg-elev:      #121a33;
  --bg-alt:       #0e1530;
  --surface:      #141d3a;
  --text:         #eaf0ff;
  --text-muted:   #a9b4d0;
  --border:       rgba(255, 255, 255, 0.09);

  /* Typography */
  --font-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: "Sora", var(--font-body);

  /* Shape */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow:    0 20px 50px -20px rgba(0, 0, 0, 0.6);

  /* Layout */
  --maxw: 1140px;
  --gutter: 22px;
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: .7em 1.3em; border-radius: 999px; border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
  box-shadow: 0 10px 30px -12px var(--brand);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px var(--brand); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: .85em 1.6em; font-size: 1rem; }
.btn-sm { padding: .5em 1.1em; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border); box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.04); box-shadow: none; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700;
  color: var(--accent); margin: 0 0 .8em;
}

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 16, 32, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6em; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 18px -6px var(--brand);
}
.brand-accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--text-muted); font-weight: 600; font-size: .95rem; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-links .btn { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }

/* ============================================================ HERO */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 9vw, 110px) 0 clamp(40px, 7vw, 80px); }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 520px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(79,70,229,.35), transparent 70%),
              radial-gradient(50% 50% at 80% 10%, rgba(6,182,212,.28), transparent 70%);
  filter: blur(6px); z-index: 0; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 5vw, 60px); align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); font-weight: 800; }
.hero .lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--text-muted); max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 2.2rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1rem; }
.hero-stats span { color: var(--text-muted); font-size: .88rem; }

/* Hero art */
.hero-art { position: relative; min-height: 320px; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .8; }
.orb-1 { width: 220px; height: 220px; right: 6%; top: 4%; background: radial-gradient(circle at 30% 30%, var(--brand), transparent 70%); }
.orb-2 { width: 160px; height: 160px; left: 4%; bottom: 6%; background: radial-gradient(circle at 30% 30%, var(--brand-2), transparent 70%); }
.glass-card {
  position: absolute; inset: 12% 8% 12% 12%;
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); backdrop-filter: blur(8px);
  padding: 22px; display: flex; flex-direction: column; gap: 14px;
}
.glass-row { display: flex; gap: 7px; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.dot:nth-child(1){ background:#ff5f56; } .dot:nth-child(2){ background:#ffbd2e; } .dot:nth-child(3){ background:#27c93f; }
.glass-line { height: 12px; border-radius: 6px; background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.05)); }
.w80{width:80%;} .w70{width:70%;} .w60{width:60%;}
.glass-chip {
  margin-top: auto; align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  padding: .4em 1em; border-radius: 999px; color: #04121a;
  background: linear-gradient(135deg, var(--accent), var(--brand-2));
}

/* ============================================================ TRUST STRIP */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.strip-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.6rem; padding: 18px 0; color: var(--text-muted); font-size: .9rem; }
.strip-tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.strip-tags span { padding: .35em .9em; border: 1px solid var(--border); border-radius: 999px; font-weight: 600; color: var(--text); }

/* ============================================================ SECTIONS */
.section { padding: clamp(56px, 9vw, 100px) 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 640px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

/* ============================================================ SERVICE CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: linear-gradient(160deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: transform .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(79,70,229,.6); }
.card-icon {
  width: 50px; height: 50px; display: grid; place-items: center; font-size: 1.5rem;
  border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(79,70,229,.22), rgba(6,182,212,.18));
  border: 1px solid var(--border);
}
.card h3 { font-size: 1.2rem; }
.card p { color: var(--text-muted); font-size: .96rem; }
.card-list { margin-top: 14px; display: grid; gap: 8px; }
.card-list li { position: relative; padding-left: 22px; color: var(--text-muted); font-size: .92rem; }
.card-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ============================================================ STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.steps li {
  background: linear-gradient(160deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.step-num { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.steps h3 { font-size: 1.12rem; margin-top: 8px; }
.steps p { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ============================================================ ABOUT */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.about-grid h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.value { display: flex; flex-direction: column; }
.value strong { font-family: var(--font-head); }
.value span { color: var(--text-muted); font-size: .92rem; }
.about-panel {
  background: linear-gradient(160deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
}
.about-panel h3 { font-size: 1.25rem; }
.check-list { display: grid; gap: 12px; margin: 16px 0 22px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text-muted); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: .72rem; color: #04121a; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--brand-2));
}

/* ============================================================ CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-grid h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.contact-list { display: grid; gap: 12px; margin-top: 18px; }
.contact-list li { display: flex; align-items: center; gap: .6em; color: var(--text-muted); }
.contact-list a:hover { color: var(--text); }
.contact-form {
  background: linear-gradient(160deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: .8em .95em; font: inherit; color: var(--text);
  background: rgba(0,0,0,.25); border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,70,229,.25);
}
.form-status { margin: 12px 0 0; font-size: .92rem; min-height: 1.2em; }
.form-status.ok { color: #34d399; }
.form-status.err { color: #f87171; }

/* ============================================================ FOOTER */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 48px 0 28px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.footer-tag { color: var(--text-muted); margin-top: 10px; max-width: 30ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { color: var(--text-muted); font-weight: 600; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: .88rem; }

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--bg-elev); border-bottom: 1px solid var(--border); padding: 12px var(--gutter) 20px;
    transform: translateY(-120%); transition: transform .25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links .btn { margin-top: 10px; }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
