:root {
  --navy: #062b58;
  --navy-2: #0d3f76;
  --slate: #344455;
  --teal: #159bb8;
  --teal-dark: #0d8098;
  --ink: #152333;
  --muted: #627183;
  --line: #dce5eb;
  --soft: #f3f7f9;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 43, 79, 0.10);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--white);
}

a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.91);
  border-bottom: 1px solid rgba(220,229,235,.85);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 300px;
  max-width: 43vw;
  height: auto;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-weight: 650; font-size: .95rem; color: #314256; }
.nav-links a:hover { color: var(--teal-dark); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--navy), var(--navy-2)); box-shadow: 0 10px 30px rgba(6,43,88,.18); }
.btn-secondary { border-color: #cfdce5; background: rgba(255,255,255,.76); color: var(--navy); }
.btn-small { min-height: 40px; padding-inline: 18px; }

.hero {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 88% 12%, rgba(21,155,184,.15), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(6,43,88,.08), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 310px;
  right: -90px;
  bottom: -160px;
  opacity: .20;
  background: linear-gradient(135deg, transparent 48%, var(--teal) 49% 51%, transparent 52%),
              linear-gradient(45deg, transparent 47%, var(--navy) 48% 50%, transparent 51%);
  transform: skewX(-18deg);
  pointer-events: none;
}
.hero-grid {
  min-height: 650px;
  padding: 94px 0 78px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .15em;
}
h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 6.8vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-copy { max-width: 760px; margin: 24px 0 0; font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: #526477; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.service-area { margin-top: 20px; color: #718091; font-size: .93rem; font-weight: 650; }

.hero-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(210,225,234,.9);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: auto; display: block; }
.hero-card .tagline { margin: 20px 0 0; padding-top: 20px; border-top: 1px solid var(--line); text-align: center; color: var(--slate); font-size: .9rem; font-weight: 700; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.highlights { display: grid; grid-template-columns: repeat(3,1fr); }
.highlight { padding: 30px 34px; }
.highlight + .highlight { border-left: 1px solid var(--line); }
.highlight h3 { margin: 0 0 7px; color: var(--navy); font-size: 1.05rem; }
.highlight p { margin: 0; color: var(--muted); font-size: .92rem; }

.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 770px; margin-bottom: 44px; }
.kicker { color: var(--teal-dark); font-weight: 850; text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; }
h2 { margin: 8px 0 12px; color: var(--navy); font-size: clamp(2.25rem, 4vw, 3.6rem); line-height: 1.05; letter-spacing: -.035em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }

.service-group + .service-group { margin-top: 64px; }
.group-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: 40px; align-items: end; margin-bottom: 22px; }
.group-head h3 { margin: 0; color: var(--navy); font-size: 1.6rem; letter-spacing: -.02em; }
.group-head p { margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 26px;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 32px rgba(11,43,79,.045);
}
.service-card::before {
  content: "";
  width: 42px;
  height: 4px;
  border-radius: 10px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}
.service-card h4 { margin: 0 0 8px; color: var(--navy); font-size: 1.18rem; }
.price { color: var(--teal-dark); font-size: 1.08rem; font-weight: 850; margin-bottom: 14px; }
.service-card p { margin: 0; color: var(--muted); }
.service-note { margin-top: auto !important; padding-top: 22px; font-size: .82rem; color: #8090a0 !important; }
.pricing-note { margin: 32px 0 0; padding: 20px 22px; background: #edf4f6; border-radius: 16px; color: #657787; font-size: .87rem; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.about-panel { border-radius: 30px; background: linear-gradient(145deg, var(--navy), #123f6e); color: white; padding: 45px; min-height: 350px; position: relative; overflow: hidden; }
.about-panel::after { content: "VR"; position: absolute; right: -24px; bottom: -70px; font-size: 14rem; font-weight: 900; letter-spacing: -.1em; color: rgba(255,255,255,.055); }
.about-panel h3 { margin: 0 0 15px; font-size: 1.75rem; }
.about-panel p { color: rgba(255,255,255,.78); }
.checks { display: grid; gap: 14px; margin-top: 28px; }
.check { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.9); }
.check span:first-child { color: #63d3e6; font-weight: 900; }

.cta { padding: 84px 0 100px; }
.cta-box { padding: clamp(35px,6vw,70px); border-radius: 32px; color: white; background: linear-gradient(135deg, #062b58 0%, #0b3b70 64%, #0b6b82 130%); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-box h2 { color: white; margin-top: 0; }
.cta-box p { max-width: 680px; color: rgba(255,255,255,.75); }
.cta-box .btn-primary { color: var(--navy); background: white; white-space: nowrap; box-shadow: none; }

footer { border-top: 1px solid var(--line); padding: 38px 0 48px; color: #728293; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer-brand { color: var(--navy); font-weight: 850; }
.footer-tag { font-size: .86rem; margin-top: 5px; }
.footer-right { text-align: right; font-size: .9rem; }
.footer-right a { color: var(--navy); text-decoration: none; }

@media (max-width: 920px) {
  .nav-links a:not(.btn) { display: none; }
  .brand img { width: 240px; max-width: 58vw; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-top: 70px; }
  .hero-card { max-width: 600px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .group-head { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 68px; }
  .nav-links .btn { padding: 0 14px; font-size: .86rem; }
  .hero-grid { padding: 54px 0 62px; gap: 36px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .hero-card { padding: 24px; border-radius: 24px; }
  .highlights { grid-template-columns: 1fr; }
  .highlight + .highlight { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 68px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .cta-box, .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}

/* Contact page */
.contact-hero {
  min-height: calc(100vh - 78px);
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 90% 4%, rgba(21,155,184,.13), transparent 27%),
    radial-gradient(circle at 8% 92%, rgba(6,43,88,.07), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f6fafc 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 72px;
  align-items: start;
}
.contact-intro { padding-top: 28px; position: sticky; top: 118px; }
.contact-intro h1 { font-size: clamp(3rem, 6vw, 5.25rem); }
.contact-details {
  margin-top: 38px;
  display: grid;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.contact-details > div { display: grid; gap: 4px; }
.contact-label {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.contact-details strong,
.contact-details a { color: var(--navy); font-weight: 750; text-decoration: none; }
.contact-card {
  border: 1px solid #d8e3ea;
  background: rgba(255,255,255,.94);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
.form-row.two-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.form-row .field { margin-bottom: 0; }
.field label { color: var(--navy); font-size: .9rem; font-weight: 750; }
.field label span { color: var(--teal-dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cad8e1;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field input,
.field select { min-height: 50px; padding: 0 14px; }
.field textarea { resize: vertical; min-height: 170px; padding: 13px 14px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(21,155,184,.12);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa8b5; }
.form-submit { width: 100%; min-height: 52px; margin-top: 3px; border: 0; cursor: pointer; font: inherit; }
.form-submit:disabled { opacity: .7; cursor: wait; transform: none; }
.form-status { min-height: 1.5em; margin-top: 12px; font-size: .88rem; }
.form-status.error { color: #a12626; }
.form-note { margin: 8px 0 0; text-align: center; color: #8695a3; font-size: .78rem; }
.form-success { text-align: center; padding: 50px 8px; }
.form-success .success-mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e4f7f8;
  color: var(--teal-dark);
  font-size: 2rem;
  font-weight: 900;
}
.form-success h2 { font-size: clamp(2rem,4vw,3rem); }
.form-success p { max-width: 500px; margin: 0 auto 28px; color: var(--muted); }

@media (max-width: 920px) {
  .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .contact-intro { position: static; padding-top: 0; }
}

@media (max-width: 640px) {
  .contact-hero { padding: 52px 0 70px; }
  .contact-card { padding: 24px 18px; border-radius: 22px; }
  .form-row.two-col { grid-template-columns: 1fr; }
}
