:root {
  --navy: #020c20;
  --navy-2: #071a3b;
  --panel: #0b2248;
  --blue: #087dff;
  --cyan: #20b8ff;
  --white: #ffffff;
  --text: #d8e4f5;
  --muted: #9fb2cc;
  --line: rgba(50, 155, 255, .25);
  --shadow: 0 18px 55px rgba(0, 0, 0, .28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--navy); color: var(--text); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.topbar { background: #010817; border-bottom: 1px solid var(--line); font-size: .9rem; }
.topbar-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar a { color: var(--cyan); font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(2, 12, 32, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 220px; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { color: white; font-size: 1.03rem; }
.brand small { color: var(--cyan); letter-spacing: .13em; text-transform: uppercase; margin-top: 5px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.main-nav > a { color: #dce8f8; font-weight: 700; font-size: .94rem; }
.main-nav > a:hover, .main-nav > a.active { color: var(--cyan); }
.nav-cta, .button { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: white !important; border-radius: 8px; padding: 13px 18px; display: inline-flex; justify-content: center; align-items: center; font-weight: 800; border: 0; cursor: pointer; }
.header-phone { color: white; border-left: 1px solid var(--line); padding-left: 22px; font-weight: 800; white-space: nowrap; }
.menu-toggle { display: none; margin-left: auto; background: transparent; color: white; border: 1px solid var(--line); padding: 9px 12px; border-radius: 6px; }
.hero { position: relative; overflow: hidden; padding: 88px 0 76px; background: radial-gradient(circle at 80% 10%, rgba(8,125,255,.22), transparent 33%), linear-gradient(135deg, #020918, #071b3d 60%, #041127); }
.hero:before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(30,145,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(30,145,255,.07) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to right, transparent, black 45%, black); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: center; }
.eyebrow { color: var(--cyan); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 800; margin: 0 0 12px; }
h1, h2, h3 { color: white; line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); margin-bottom: 22px; letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
.hero-copy > p { font-size: 1.18rem; max-width: 730px; color: #c6d6eb; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button-outline { background: transparent; border: 1px solid #3a9fff; }
.hero-phone { margin-top: 26px; font-size: 1.1rem; }
.hero-phone a { color: white; font-size: 1.45rem; font-weight: 900; display: inline-block; margin-left: 8px; }
.hero-card { background: linear-gradient(160deg, rgba(12,43,91,.95), rgba(3,16,39,.98)); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); }
.hero-card h3 { font-size: 1.55rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li { margin: 13px 0; padding-left: 28px; position: relative; }
.check-list li:before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 900; }
.section { padding: 78px 0; }
.section.alt { background: #06152f; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: linear-gradient(160deg, #0a2147, #06142e); border: 1px solid var(--line); border-radius: 14px; padding: 26px; box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); }
.card-link { color: var(--cyan); font-weight: 800; }
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: #06152f; border-radius: 14px; overflow: hidden; }
.stat { padding: 28px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: white; font-size: 1.6rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.process { counter-reset: steps; display: grid; gap: 18px; }
.process-item { counter-increment: steps; padding: 22px 22px 22px 72px; border: 1px solid var(--line); background: #071a3a; border-radius: 12px; position: relative; }
.process-item:before { content: counter(steps); position: absolute; left: 20px; top: 20px; width: 34px; height: 34px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; color: white; font-weight: 900; }
.page-hero { padding: 62px 0; background: radial-gradient(circle at 85% 20%, rgba(8,125,255,.2), transparent 32%), #06142e; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.content { max-width: 850px; }
.content h2 { margin-top: 44px; }
.content a { color: var(--cyan); }
.price-note { background: #0b234b; border-left: 4px solid var(--cyan); padding: 18px 20px; border-radius: 8px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; }
.contact-card { background: #071a3b; border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.contact-card .big-phone { display: block; color: white; font-weight: 900; font-size: 1.6rem; margin: 10px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: white; font-weight: 700; }
input, select, textarea { width: 100%; background: #020c20; color: white; border: 1px solid #244a78; border-radius: 7px; padding: 13px 14px; font: inherit; }
textarea { min-height: 130px; resize: vertical; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.slot-button { background: #0b2855; border: 1px solid #2d74bd; color: white; padding: 12px; border-radius: 7px; cursor: pointer; }
.slot-button.selected { background: var(--blue); }
.notice { padding: 14px 16px; border-radius: 8px; margin: 15px 0; }
.notice.success { background: rgba(38,190,116,.15); border: 1px solid rgba(38,190,116,.5); }
.notice.error { background: rgba(220,70,70,.15); border: 1px solid rgba(220,70,70,.5); }
.cta-band { padding: 48px 0; background: linear-gradient(90deg, #0a57b5, #073477); }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 36px; }
.cta-band h2 { margin-bottom: 0; max-width: 700px; }
.site-footer { background: #010817; padding: 58px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr .8fr; gap: 34px; }
.footer-grid h3 { font-size: 1rem; margin-bottom: 16px; }
.footer-grid > div > a:not(.brand) { display: block; color: #afc0d6; margin: 9px 0; }
.footer-grid p { color: var(--muted); max-width: 390px; }
.footer-phone { color: var(--cyan) !important; font-size: 1.2rem; font-weight: 900; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: #8296b1; font-size: .9rem; }
.footer-bottom a { margin-left: 16px; }
.admin-table { width: 100%; border-collapse: collapse; background: #071a3b; }
.admin-table th, .admin-table td { border: 1px solid #244a78; padding: 10px; text-align: left; }
@media (max-width: 980px) {
  .header-phone { display: none; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 82px; left: 20px; right: 20px; background: #031127; border: 1px solid var(--line); padding: 20px; border-radius: 10px; flex-direction: column; align-items: stretch; }
  .main-nav.open { display: flex; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 26px, 1160px); }
  .topbar-inner { min-height: 46px; font-size: .78rem; }
  .brand span { display: none; }
  .brand { min-width: auto; }
  .hero { padding: 64px 0 54px; }
  .hero-card { padding: 22px; }
  .card-grid, .stat-strip, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .field.full { grid-column: auto; }
  .slot-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin: 0 14px 0 0; }
}
.admin-heading { display:flex; justify-content:space-between; align-items:end; gap:20px; }
.admin-heading h1 { margin-bottom:0; }
.admin-table-wrap { overflow:auto; margin-top:30px; border-radius:12px; }
.admin-table a { color:var(--cyan); }
.button-small { padding:8px 12px; font-size:.86rem; }
.status-pill { display:inline-block; padding:5px 9px; border-radius:999px; font-size:.78rem; font-weight:800; background:#183c69; color:#dbeaff; }
.status-open,.status-confirmed { background:rgba(38,190,116,.18); color:#7ef0b2; }
.status-cancelled,.status-no_show { background:rgba(220,70,70,.18); color:#ff9a9a; }
.status-completed { background:rgba(32,184,255,.17); color:#72d7ff; }
.status-hidden { background:rgba(159,178,204,.15); color:#bdcbe0; }
.admin-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.button.danger { background:#9d2c36; }

/* Homepage conversion updates */
.hero-benefits {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  margin: 24px 0 4px;
  font-size: .92rem;
  font-weight: 800;
  color: white;
}
.hero-benefit {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.hero-benefit:before {
  content: '';
  width: 9px;
  height: 9px;
  margin-right: 9px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px rgba(32,184,255,.45);
}
.button {
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8,125,255,.28);
  filter: brightness(1.06);
}
.button-outline:hover {
  background: rgba(8,125,255,.12);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32,184,255,.55);
}
.service-card .card-link {
  margin-top: auto;
  padding-top: 12px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.industry-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px 14px 42px;
  position: relative;
  background: linear-gradient(160deg, #0a2147, #06142e);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: white;
  font-weight: 800;
}
.industry-grid span:before {
  content: '';
  position: absolute;
  left: 18px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.compact-list {
  margin: 18px 0 24px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.faq-card {
  background: linear-gradient(160deg, #0a2147, #06142e);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
}
.faq-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.faq-card p {
  margin-bottom: 0;
  color: var(--muted);
}
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 980px) {
  .hero-benefits {
    gap: 16px;
    font-size: .82rem;
  }
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-benefits {
    gap: 10px;
    font-size: clamp(.56rem, 2.35vw, .72rem);
  }
  .hero-benefit:before {
    width: 6px;
    height: 6px;
    margin-right: 5px;
  }
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industry-grid span {
    min-height: 54px;
    padding: 12px 10px 12px 34px;
    font-size: .88rem;
  }
  .industry-grid span:before {
    left: 14px;
    width: 8px;
    height: 8px;
  }
}
