:root {
  --bg: #03040b;
  --panel: rgba(13, 16, 38, 0.78);
  --panel-2: rgba(20, 24, 58, 0.62);
  --text: #f6f8ff;
  --muted: #b9c0d7;
  --primary: #6c63ff;
  --secondary: #4cc9f0;
  --accent: #b78cff;
  --border: rgba(126, 157, 255, 0.24);
  --shadow: 0 24px 70px rgba(76, 201, 240, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(108, 99, 255, 0.18), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(76, 201, 240, 0.12), transparent 30%),
    linear-gradient(180deg, #03040b 0%, #080a16 48%, #03040b 100%);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  backdrop-filter: blur(16px);
  background: rgba(3, 4, 11, 0.82);
  border-bottom: 1px solid var(--border);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: 0.02em; }
.brand img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 0 16px rgba(76, 201, 240, .55)); }
nav { display: flex; gap: 22px; }
nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
nav a:hover { color: var(--secondary); }

.section-pad { padding: 90px 6vw; }
.hero { min-height: 88vh; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 56px; }
.eyebrow { color: var(--secondary); text-transform: uppercase; letter-spacing: 0.16em; font-weight: 800; font-size: .78rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: .96; margin-bottom: 24px; letter-spacing: -0.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -0.04em; }
h3 { margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.72; }
.hero-text { font-size: 1.15rem; max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { padding: 15px 22px; border-radius: 999px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary { background: linear-gradient(90deg, var(--primary), var(--secondary)); box-shadow: 0 0 28px rgba(76, 201, 240, 0.28); }
.btn-secondary { border: 1px solid var(--border); background: rgba(255,255,255,.05); color: var(--text); }
.btn:hover { transform: translateY(-2px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { border: 1px solid var(--border); border-radius: 999px; padding: 8px 12px; color: var(--muted); background: rgba(255,255,255,.04); font-size: .9rem; }
.hero-card { position: relative; display: grid; place-items: center; min-height: 500px; border: 1px solid var(--border); border-radius: 34px; background: radial-gradient(circle, rgba(108,99,255,.18), rgba(10,13,33,.74) 55%, rgba(0,0,0,.34)); box-shadow: var(--shadow); overflow: hidden; }
.hero-card img { width: min(420px, 90%); filter: drop-shadow(0 0 60px rgba(108,99,255,.65)); }
.pulse-card { position: absolute; bottom: 24px; left: 24px; right: 24px; border: 1px solid var(--border); border-radius: 22px; background: rgba(3,4,11,.72); padding: 18px; display: grid; gap: 6px; }
.pulse-card span { color: var(--muted); }
.two-column { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.section-heading { max-width: 820px; margin-bottom: 36px; }
.service-grid, .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .price-card, .steps > div, .case-points > div { border: 1px solid var(--border); border-radius: 24px; padding: 24px; background: var(--panel); box-shadow: 0 16px 50px rgba(0,0,0,.22); }
.service-card:hover { transform: translateY(-4px); border-color: rgba(76,201,240,.55); }
.process-section, .pricing-section { background: rgba(255,255,255,.02); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps span { color: var(--secondary); font-weight: 900; }
.case-study { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.case-points { display: grid; gap: 16px; }
.case-points strong { display: block; margin-bottom: 7px; }
.case-points span { color: var(--muted); line-height: 1.55; }
.price { color: var(--secondary); font-size: 1.6rem; font-weight: 900; margin-bottom: 12px; }
.featured { background: linear-gradient(180deg, rgba(108,99,255,.25), rgba(13,16,38,.82)); border-color: rgba(76,201,240,.52); }
.booking-frame-wrap { overflow: hidden; border: 1px solid var(--border); border-radius: 26px; background: white; box-shadow: var(--shadow); }
.booking-frame-wrap iframe { display: block; }
.contact-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 38px; align-items: start; }
.inline-link, .email-line a { color: var(--secondary); font-weight: 800; }
#contact-form { display: grid; gap: 15px; border: 1px solid var(--border); border-radius: 28px; padding: 26px; background: var(--panel); box-shadow: var(--shadow); }
label { display: grid; gap: 8px; color: var(--text); font-weight: 700; }
input, select, textarea { width: 100%; padding: 14px 15px; border-radius: 14px; border: 1px solid rgba(108,99,255,.32); background: rgba(3,4,11,.72); color: white; outline: none; font: inherit; }
select option { color: #050510; }
input:focus, select:focus, textarea:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(76,201,240,.12); }
textarea { resize: vertical; }
.hidden-field { display: none; }
button[type="submit"] { margin-top: 8px; border: 0; cursor: pointer; padding: 15px 20px; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--secondary)); color: white; font-weight: 900; font-size: 1rem; }
button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(76,201,240,.35); }
#form-status { margin: 4px 0 0; font-weight: 800; }
footer { padding: 30px 6vw; border-top: 1px solid var(--border); text-align: center; }
footer p { margin: 0; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero, .two-column, .case-study, .contact-section { grid-template-columns: 1fr; }
  .service-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 56px; }
}
@media (max-width: 640px) {
  .section-pad { padding: 64px 5vw; }
  .service-grid, .pricing-grid, .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-card { min-height: 340px; }
  .site-header { padding: 14px 5vw; }
}
