:root {
  --bg: #080b12;
  --surface: #10151f;
  --surface-2: #151c28;
  --surface-3: #1b2432;
  --text: #f5f7fb;
  --muted: #aab4c4;
  --blue: #5f8cff;
  --blue-bright: #7aa2ff;
  --blue-dark: #9bb8ff;
  --orange: #ff9855;
  --line: #273142;
  --line-soft: rgba(255, 255, 255, .08);
  --shadow: 0 22px 65px rgba(0, 0, 0, .38);
  --radius: 22px;
  --red: #ff6b6b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], main[id] { scroll-margin-top: 92px; }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 4px; }
main:focus { outline: none; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--text); color: var(--bg); padding: 10px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 18, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #466fdd, #7257e8);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 12px 28px rgba(95, 140, 255, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand:hover .brand-mark { transform: scale(1.06); box-shadow: 0 16px 34px rgba(95, 140, 255, .42); }
.brand span:last-child { display: grid; line-height: 1.05; }
.brand strong { font-family: inherit; font-size: 1.1rem; letter-spacing: -.02em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; color: #dfe5ef; text-decoration: none; font-weight: 600; font-size: .96rem; transition: color .2s ease; }
.site-nav a:hover, .site-nav a.active { color: #fff; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 3px; border-radius: 999px; background: var(--orange); opacity: 0; transform: scaleX(.5); transition: opacity .2s ease, transform .2s ease; }
.site-nav a:not(.nav-cta):hover::after, .site-nav a.active::after { opacity: 1; transform: scaleX(1); }
.nav-cta { padding: 11px 17px; border-radius: 12px; background: var(--text); color: var(--bg) !important; transition: transform .2s ease, box-shadow .2s ease; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(245, 247, 251, .25); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--text); font-size: 1.5rem; cursor: pointer; }

.hero {
  padding: 90px 0 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(95, 140, 255, .22), transparent 29%),
    radial-gradient(circle at 8% 45%, rgba(141, 107, 255, .09), transparent 28%),
    linear-gradient(180deg, #080b12, #0d121c);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); font-size: .83rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 999px; background: var(--orange); }
h1, h2, h3 { margin: 0; font-family: inherit; line-height: 1.1; }
h1 { margin-top: 18px; font-size: clamp(2.8rem, 6vw, 5.3rem); letter-spacing: -.055em; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.04em; }
h3 { font-size: 1.25rem; }
.hero-text, .lead { font-size: 1.15rem; color: var(--muted); max-width: 680px; }
.hero-text { margin: 26px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 14px; text-decoration: none; border: 0; cursor: pointer; font: inherit; font-weight: 800; transition: transform .2s ease, filter .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:disabled { cursor: wait; opacity: .72; transform: none; }
.btn-primary { background: linear-gradient(135deg, #466fdd, #7257e8); color: #fff; box-shadow: 0 15px 34px rgba(95, 140, 255, .24); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-secondary { background: var(--surface-2); color: var(--text); border: 1px solid var(--line); }
.btn-secondary:hover { border-color: #40506a; }
.full { width: 100%; }
.trust-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; color: #c4ccda; font-weight: 600; }
.hero-card { position: relative; background: linear-gradient(180deg, #151c28, #10151f); border: 1px solid var(--line); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.hero-card::after { content: ""; position: absolute; inset: auto -28px -28px auto; width: 120px; height: 120px; border-radius: 34px; background: linear-gradient(135deg, var(--orange), #ffbf7e); z-index: -1; transform: rotate(12deg); opacity: .85; }
.mini-badge { display: inline-block; padding: 7px 11px; border-radius: 999px; background: rgba(95, 140, 255, .14); border: 1px solid rgba(122, 162, 255, .22); color: #bed0ff; font-weight: 800; font-size: .8rem; }
.price { margin: 14px 0 2px; font-size: 4.7rem; font-weight: 800; line-height: 1; letter-spacing: -.06em; }
.price span { font-size: 2rem; vertical-align: top; }
.hero-card p { color: var(--muted); }
.hero-card ul, .check-list { list-style: none; padding: 0; margin: 20px 0; }
.hero-card li, .check-list li { position: relative; padding-left: 28px; margin: 12px 0; }
.hero-card li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-bright); font-weight: 900; }
.text-link { color: #b8cbff; font-weight: 800; text-decoration: none; }
.stat-strip { margin-top: 78px; display: grid; grid-template-columns: repeat(3, 1fr); background: #111824; color: #fff; border: 1px solid var(--line); border-bottom: 0; border-radius: 22px 22px 0 0; overflow: hidden; }
.stat-strip div { padding: 24px 28px; border-right: 1px solid var(--line); }
.stat-strip div:last-child { border-right: 0; }
.stat-strip strong, .stat-strip span { display: block; }
.stat-strip span { color: var(--muted); font-size: .9rem; margin-top: 3px; }

.section { padding: 100px 0; background: var(--bg); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.section-heading h2 { margin: 16px 0; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.left-heading { text-align: left; margin: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(0, 0, 0, .25); border-color: #3a4860; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(95, 140, 255, .13); border: 1px solid rgba(122, 162, 255, .18); color: var(--blue-bright); font-weight: 900; font-size: 1.4rem; }
.service-card h3 { margin: 20px 0 10px; }
.service-card p { margin: 0; color: var(--muted); }
.alt-section { background: #0d121b; }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.steps { display: grid; gap: 18px; }
.step { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.step > span { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #466fdd, #7257e8); color: #fff; display: grid; place-items: center; font-weight: 800; }
.step p { margin: 8px 0 0; color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.note-box { margin-top: 28px; padding: 18px 20px; border-left: 4px solid var(--orange); background: rgba(255, 152, 85, .09); color: #f4d6c2; font-weight: 700; }
.thank-you-container { max-width: 640px; }
.thank-you-cta { margin-top: 30px; }
.connectivity-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
  text-align: center;
  font-weight: 700;
  font-size: .92rem;
  background: #3a1f14;
  color: #ffd8b8;
  border-bottom: 1px solid var(--orange);
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 1120px;
  margin-inline: auto;
}
.cookie-banner p { margin: 0; color: var(--muted); font-size: .9rem; max-width: 640px; }
.cookie-banner a { color: #b8cbff; font-weight: 700; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner-actions button {
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .9rem;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
.cookie-banner-actions button:hover { border-color: #42516b; transform: translateY(-1px); }
.cookie-banner-actions [data-cookie-accept] { background: linear-gradient(135deg, #466fdd, #7257e8); color: #fff; border: 0; }
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 12px; left: 12px; right: 12px; padding: 16px; }
  .cookie-banner-actions { flex-direction: column; }
}
.form-error {
  margin: 0 0 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 107, 107, .12);
  border: 1px solid rgba(255, 107, 107, .4);
  color: #ffc9c9;
  font-weight: 700;
  font-size: .92rem;
}
.pricing-card { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); }
.pricing-top { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pricing-top > span { font-weight: 800; font-size: 1.2rem; }
.pricing-top div { text-align: right; }
.pricing-top small { display: block; color: var(--muted); }
.pricing-top strong { font-size: 3rem; letter-spacing: -.05em; }
.work-list { display: grid; gap: 70px; margin-top: 40px; }
.work-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.work-media { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.work-media img { display: block; width: 100%; height: auto; }
.ai-section { background: linear-gradient(145deg, #101827, #0a0e16); color: #fff; overflow: hidden; border-block: 1px solid var(--line-soft); }
.ai-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.ai-section p { color: #bbc6d8; font-size: 1.08rem; }
.light { color: #a9c1ff; }
.ai-visual { position: relative; min-height: 330px; display: grid; place-items: center; }
.ai-chip { width: 150px; height: 150px; border-radius: 42px; display: grid; place-items: center; background: linear-gradient(135deg, #466fdd, #7257e8); font-size: 3.4rem; font-weight: 900; box-shadow: 0 30px 80px rgba(95, 140, 255, .32); }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .65; }
.orb-one { width: 100px; height: 100px; background: var(--orange); top: 22px; right: 30px; }
.orb-two { width: 70px; height: 70px; background: #44d7b6; bottom: 34px; left: 18px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pill-row span { padding: 10px 14px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .11); font-weight: 700; }
.contact-section { background: #0c111a; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-list { display: grid; gap: 12px; margin-top: 30px; }
.contact-list a { display: flex; justify-content: space-between; gap: 20px; text-decoration: none; background: var(--surface); border: 1px solid var(--line); padding: 18px 20px; border-radius: 16px; transition: border-color .2s ease, transform .2s ease; }
.contact-list a:hover { border-color: #42516b; transform: translateY(-2px); }
.contact-list span { color: #b7cbff; font-weight: 800; overflow-wrap: anywhere; }
.contact-form { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: 24px; padding: 30px; box-shadow: 0 18px 45px rgba(0, 0, 0, .28); }
.contact-form label { display: grid; gap: 8px; font-weight: 700; margin-bottom: 18px; }
.optional { color: var(--muted); font-size: .86rem; font-weight: 500; }
input:not([type="checkbox"]), textarea { width: 100%; border: 1px solid #354156; border-radius: 12px; padding: 14px 15px; color: var(--text); background: #0d121b; }
textarea { resize: vertical; min-height: 130px; }
input:focus, textarea:focus { outline: 3px solid rgba(95, 140, 255, .16); border-color: var(--blue); }
.form-note { color: var(--muted); font-size: .86rem; margin-bottom: 0; }
.privacy-note { color: #8f9bad; font-size: .78rem; margin: 8px 0 0; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.contact-form[aria-busy="true"] { opacity: .92; }
.site-footer { padding: 34px 0; background: #06080d; color: #fff; border-top: 1px solid var(--line-soft); }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-wrap p { margin: 0; color: #9da8b9; }
.footer-bottom { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.footer-bottom p { margin: 0; color: #6b7688; font-size: .82rem; text-align: center; }
.footer-brand small { color: #9da8b9; }

@media (max-width: 900px) {
  .hero-grid, .process-grid, .pricing-grid, .ai-grid, .contact-grid, .work-grid { grid-template-columns: 1fr; gap: 45px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { transform: none; }
  .site-nav { display: none; position: absolute; top: 78px; left: 20px; right: 20px; background: #111824; border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 62px; }
  h1 { font-size: 2.65rem; }
  .section { padding: 74px 0; }
  .card-grid, .stat-strip { grid-template-columns: 1fr; }
  .stat-strip { border-radius: 20px 20px 0 0; }
  .stat-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-strip div:last-child { border-bottom: 0; }
  .trust-row { gap: 12px 18px; }
  .hero-actions .btn { width: 100%; }
  .pricing-top, .contact-list a { align-items: flex-start; flex-direction: column; }
  .pricing-top div { text-align: left; }
  .footer-wrap { align-items: flex-start; flex-direction: column; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Consultation booking */
.booking-section { background: #0d121b; }
.booking-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.booking-copy { position: sticky; top: 112px; }
.booking-copy h2 { margin: 16px 0 20px; }
.booking-points { display: grid; gap: 14px; margin-top: 30px; }
.booking-points div { padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.booking-points strong, .booking-points span { display: block; }
.booking-points strong { color: var(--text); }
.booking-points span { margin-top: 3px; color: var(--muted); font-size: .92rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
select { width: 100%; border: 1px solid #354156; border-radius: 12px; padding: 14px 15px; color: var(--text); background: #0d121b; font: inherit; }
select:focus { outline: 3px solid rgba(95, 140, 255, .16); border-color: var(--blue); }
input[type="date"], input[type="time"], select { color-scheme: dark; }
.contact-form .checkbox-label { display: flex; grid-template-columns: none; align-items: flex-start; gap: 11px; margin: 2px 0 20px; font-weight: 600; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex: 0 0 auto; margin: 3px 0 0; accent-color: var(--blue); }
.checkbox-label span { color: #d8deea; }
.slot-picker { margin-bottom: 18px; }
.slot-picker > span { display: block; font-weight: 700; margin-bottom: 8px; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.slot-btn {
  padding: 10px 6px;
  border-radius: 10px;
  border: 1px solid #354156;
  background: #0d121b;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.slot-btn:hover:not(:disabled) { border-color: var(--blue-bright); }
.slot-btn[aria-pressed="true"] { border-color: var(--blue-bright); background: rgba(95, 140, 255, .18); }
.slot-btn:disabled { opacity: .45; cursor: not-allowed; text-decoration: line-through; }

@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; gap: 45px; }
  .booking-copy { position: static; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}


/* Booking and rescheduling controls */
.booking-mode {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}
.booking-mode legend {
  margin-bottom: 10px;
  font-weight: 800;
}
.booking-mode-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-form .booking-mode-option {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  padding: 15px;
  border: 1px solid #354156;
  border-radius: 14px;
  background: #0d121b;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.booking-mode-option:has(input:checked) {
  border-color: var(--blue-bright);
  background: rgba(95, 140, 255, .11);
}
.booking-mode-option input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  flex: 0 0 auto;
  accent-color: var(--blue);
}
.booking-mode-option span,
.booking-mode-option strong,
.booking-mode-option small {
  display: block;
}
.booking-mode-option small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}
.field-help {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .82rem;
}
.form-wide {
  margin-top: -7px;
  margin-bottom: 18px;
}
.text-button {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b8cbff;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.text-button:hover { color: #fff; }
.reschedule-fields {
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid rgba(255, 152, 85, .35);
  border-radius: 16px;
  background: rgba(255, 152, 85, .07);
}
.reschedule-fields[hidden] { display: none !important; }
.reschedule-notice {
  margin-bottom: 17px;
  color: #f5d6c3;
  font-size: .9rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .booking-mode-options { grid-template-columns: 1fr; }
}
