*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0f1c2e;
  --blue: #1f4b99;
  --cyan: #2dd4bf;
  --cyan-soft: #d9f7f1;
  --bg: #f4f7fb;
  --ink: #101828;
  --muted: #5b667a;
  --line: rgba(15, 28, 46, 0.12);
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3, .brand strong, .phone, .foot-brand, .hero-side p {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 247, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--cyan);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong { font-size: 1.15rem; }

.brand small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav nav {
  display: flex;
  gap: 1.35rem;
  font-weight: 600;
}

.nav nav a:hover { color: var(--blue); }

.call {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(45, 212, 191, 0.22), transparent 40%),
    linear-gradient(160deg, #0f1c2e 0%, #16325a 55%, #1f4b99 100%);
  color: var(--white);
  padding: 4.5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy { animation: rise 0.8s ease both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.hero h1 span { color: var(--cyan); }

.lead {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn.solid {
  background: var(--cyan);
  color: var(--navy);
}

.btn.solid.dark {
  background: var(--navy);
  color: var(--white);
}

.btn.soft {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-side {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 1.6rem;
  display: flex;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.pulse {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -30px;
  top: -40px;
  background: rgba(45, 212, 191, 0.25);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-side p {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  line-height: 1.15;
}

.legal {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  text-align: center;
  padding: 0.7rem 0;
}

.section { padding: 4.8rem 0; }

.sec-head { margin-bottom: 2rem; max-width: 30rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.sec-head h2,
.split h2,
.contact h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.6);
}

.cards h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.cards p {
  color: var(--muted);
  font-size: 0.96rem;
}

.strip {
  background: var(--cyan-soft);
  padding: 1.6rem 0;
}

.strip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.strip strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  color: var(--navy);
}

.strip span {
  color: var(--muted);
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.split p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: 1.55rem;
}

.panel h3 {
  color: var(--cyan);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.panel dl { display: grid; gap: 0.85rem; }

.panel dt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.15rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.contact {
  background:
    linear-gradient(180deg, rgba(31, 75, 153, 0.06), transparent),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.phone {
  display: inline-block;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  color: var(--blue);
  margin: 0.85rem 0 0.5rem;
}

.mail {
  display: inline-block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1rem;
  word-break: break-all;
}

.addr {
  color: var(--muted);
  line-height: 1.7;
}

.box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem;
}

.box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--navy);
}

.box p {
  color: var(--muted);
  margin-bottom: 1.15rem;
}

.foot {
  background: #0a1320;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.4rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-brand {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.foot h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.55rem;
}

.foot-end {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .nav nav,
  .call { display: none; }

  .hero-grid,
  .cards,
  .strip-row,
  .split,
  .contact-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
