:root {
  --blue: #06477f;
  --blue-dark: #032f55;
  --grey: #7d7d7d;
  --text: #132231;
  --muted: #647282;
  --bg: #f5f8fb;
  --surface: #ffffff;
  --line: #dbe5ed;
  --shadow: 0 24px 70px rgba(5, 43, 72, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(6, 71, 127, .14), transparent 34rem),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 229, 237, .8);
}

.brand img {
  display: block;
  width: 178px;
  height: auto;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}

.nav a:hover { color: var(--blue); }

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(6,71,127,.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 58px;
  align-items: center;
  min-height: 720px;
  padding: 82px clamp(20px, 5vw, 72px) 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 13px;
}

.eyebrow.light { color: rgba(255,255,255,.75); }

h1, h2, h3 { margin: 0; line-height: 1.07; }

h1 {
  max-width: 1000px;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -.065em;
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -.045em;
}

h3 {
  font-size: 24px;
  letter-spacing: -.02em;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.domain-switch {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 34px rgba(5,43,72,.09);
  font-size: clamp(16px, 2vw, 20px);
}

.domain-switch span,
.domain-switch i {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.domain-switch strong {
  color: var(--blue);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
}

.primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.primary:hover { background: var(--blue-dark); }

.secondary {
  background: white;
  color: var(--text);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 36px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(222,232,240,.86)),
    linear-gradient(45deg, transparent, rgba(255,255,255,.8));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}

.hero-panel img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 420px);
  margin: 28px auto 0;
}

.hero-panel-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 30%;
  max-width: 140px;
  min-width: 100px;
  height: auto;
  margin: 28px auto 0;
}

.shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 12%, rgba(255,255,255,.86) 40%, transparent 62%),
    repeating-linear-gradient(90deg, rgba(6,71,127,.12), rgba(6,71,127,.12) 1px, transparent 1px, transparent 38px);
  transform: skewX(-8deg);
}

.panel-bottom {
  position: absolute;
  z-index: 2;
  left: 36px;
  right: 36px;
  bottom: 34px;
}

.panel-bottom h2 { font-size: clamp(28px, 3vw, 40px); }

.panel-bottom p {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 72px) 80px;
}

.trust-strip div {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 34px rgba(5,43,72,.06);
}

.trust-strip strong,
.trust-strip span { display: block; }

.trust-strip strong {
  font-size: 18px;
  color: var(--blue);
}

.trust-strip span {
  margin-top: 7px;
  color: var(--muted);
}

.section {
  padding: 92px clamp(20px, 5vw, 72px);
}

.split,
.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  border-top: 1px solid var(--line);
}

.copy p,
.services p,
.contact-card {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.copy strong { color: var(--text); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.cards article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(5,43,72,.08);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: rgba(6,71,127,.09);
  color: var(--blue);
  font-weight: 900;
}

.cta {
  margin: 30px clamp(20px, 5vw, 72px);
  padding: clamp(38px, 6vw, 64px);
  text-align: center;
  border-radius: 38px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.16), transparent 20rem),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: var(--shadow);
}

.cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.65;
}

.big-phone {
  display: inline-flex;
  margin-top: 14px;
  padding: 16px 28px;
  border-radius: 999px;
  background: white;
  color: var(--blue-dark);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.03em;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 18px 48px rgba(5,43,72,.08);
}

.contact-card div {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}

.contact-card strong,
.contact-card a {
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.contact-card a {
  color: var(--blue);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.04em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a:hover { color: var(--blue); }

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav { display: none; }

  .brand img { width: 150px; }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-panel {
    min-height: 430px;
  }

  .trust-strip,
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .header-phone {
    font-size: 13px;
    padding: 0 12px;
  }

  .domain-switch {
    width: 100%;
  }

  .hero-panel {
    padding: 24px;
  }

  .panel-bottom {
    left: 24px;
    right: 24px;
  }

  .big-phone {
    width: 100%;
    justify-content: center;
    font-size: 24px;
  }
}
