:root {
  --ink: #0b1026;
  --ink-2: #171e3a;
  --bg: #080c1c;
  --card: #101733;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef1ff;
  --muted: #aab2d6;
  --cyan: #00f0ff;
  --violet: #7b2ff7;
  --gold: #ffd75e;
  --green: #30e3a7;
  --grad: linear-gradient(90deg, var(--cyan), var(--violet));
  --grad-soft: linear-gradient(135deg, rgba(0,240,255,.15), rgba(123,47,247,.15));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { width: min(1160px, 92%); margin: 0 auto; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3 { line-height: 1.15; letter-spacing: -0.02em; }

.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--grad-soft);
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-cta { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(123,47,247,.4); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,240,255,.4); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8,12,28,.7);
  border-bottom: 1px solid var(--line);
}
.topbar-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark { width: 40px; height: 40px; }
.brand-name { font-size: 1.5rem; letter-spacing: 0.06em; }
.nav-links { display: flex; gap: 28px; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--cyan); }
.top-cta { padding: 10px 18px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 90px 0 70px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 300px at 15% 20%, rgba(123,47,247,.25), transparent 60%),
    radial-gradient(700px 350px at 85% 10%, rgba(0,240,255,.2), transparent 60%),
    radial-gradient(500px 300px at 50% 100%, rgba(48,227,167,.15), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.hero-copy p { color: var(--muted); font-size: 1.1rem; max-width: 34ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 12px; text-align: center; }
.stat strong { display: block; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 0.82rem; }

.hero-visual { position: relative; }
.price-card {
  border-radius: 22px;
  padding: 26px;
  background: var(--grad-soft);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.price-card img { border-radius: 16px; }
.float-chip {
  position: absolute;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.chip-up { top: -18px; right: -12px; background: var(--green); color: #03231a; }
.chip-down { bottom: 26px; left: -18px; background: var(--gold); color: #3a2b00; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); }

/* accounts / services */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: 0 18px 40px rgba(0,240,255,.15); }
.card-img { border-radius: 12px; margin-bottom: 16px; aspect-ratio: 4/3; object-fit: cover; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* offices */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.office {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.office:hover { transform: translateY(-5px); border-color: var(--violet); }
.office-img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.office-info { padding: 18px; }
.office-info h3 { margin-bottom: 6px; }
.addr { color: var(--muted); font-size: 0.92rem; margin-bottom: 10px; }
.txt-link { color: var(--cyan); font-weight: 600; font-size: 0.9rem; }
.txt-link:hover { text-decoration: underline; }

/* records */
.records { background: var(--ink-2); border-block: 1px solid var(--line); }
.record-badges { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.badge {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s ease, transform .2s ease;
}
.badge:hover { border-color: var(--gold); transform: translateY(-4px); }
.bico { font-size: 1.7rem; }
.badge strong { font-size: 0.98rem; }
.badge em { font-style: normal; color: var(--muted); font-size: 0.8rem; }

/* quotes */
.quotes { text-align: center; }
.quotes h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); margin-bottom: 30px; }
.quote-slider { overflow: hidden; position: relative; }
.quote-track { display: flex; transition: transform .5s ease; }
.quote { flex: 0 0 100%; padding: 0 10%; }
.quote blockquote { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; color: var(--text); margin-bottom: 16px; }
.quote figcaption { color: var(--cyan); font-weight: 600; }
.quote-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.quote-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); cursor: pointer; transition: background .2s ease, width .2s ease; }
.quote-dots span.active { background: var(--grad); width: 26px; border-radius: 99px; }

/* contact */
.contact { background: var(--ink-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; }
.contact-info > p { color: var(--muted); margin-bottom: 28px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list strong { display: block; color: var(--muted); font-weight: 600; font-size: 0.85rem; }
.contact-list a, .contact-list span { color: var(--text); font-weight: 600; }
.contact-list a:hover { color: var(--cyan); }
.ci {
  width: 44px; height: 44px; flex: 0 0 44px;
  display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--line); border-radius: 12px;
  font-size: 1.1rem;
}

.socials { display: flex; gap: 12px; }
.soc {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--card); border: 1px solid var(--line);
  font-weight: 800; transition: all .2s ease;
}
.soc:hover { background: var(--grad); color: #fff; transform: translateY(-3px); border-color: transparent; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
}
.contact-form h3 { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.contact-form input, .contact-form select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s ease;
}
.contact-form input:focus, .contact-form select:focus { border-color: var(--cyan); }
.contact-form .btn { width: 100%; margin-top: 6px; }
.form-msg { margin-top: 12px; font-weight: 600; font-size: 0.9rem; min-height: 1.2em; color: var(--green); }
select option { background: var(--bg); }

/* footer */
.footer { padding-top: 60px; background: var(--bg); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 14px; max-width: 30ch; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--text); margin-bottom: 6px; }
.footer-col a, .footer-col span { color: var(--muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--cyan); }
.footer-base { border-top: 1px solid var(--line); padding: 20px 0; color: var(--muted); font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 950px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: repeat(2, 1fr); }
  .record-badges { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .cards, .office-grid { grid-template-columns: 1fr; }
  .record-badges { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}