:root {
  --blue-light: #8db7e7;
  --blue: #296bb6;
  --blue-dark: #24375e;
  --yellow: #f3be1d;
  --white: #ffffff;
  --bg: #eef5ff;
  --text: #1f2937;
  --muted: #5f6b7f;
  --line: #d8e5f5;
  --shadow: 0 18px 55px rgba(36, 55, 94, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef5ff 0%, #f7fbff 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link,
.sr-only,
.honeypot {
  position: absolute;
  left: -9999px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(141, 183, 231, 0.12), rgba(255, 255, 255, 0));
}

.card,
.cta-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.card {
  background: var(--white);
  border: 1px solid rgba(141, 183, 231, 0.35);
}

.card-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 65px rgba(36, 55, 94, 0.24);
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.section-tag {
  color: var(--blue);
  background: rgba(141, 183, 231, 0.18);
}

.section-tag.light,
.eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0.95rem 1.45rem;
  border-radius: 18px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.header-phone:hover,
.floating-call a:hover {
  transform: translateY(-2px);
}

.btn-primary,
.header-phone,
.floating-call a {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: 0 14px 30px rgba(243, 190, 29, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgb(35 106 187);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 92px;
}

.brand img {
  width: 340px;
  max-width: 100%;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.95;
}

.header-phone {
  padding: 0.95rem 1.2rem;
  border-radius: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
}

.floating-call a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f4fa4 0%, #6ea4e1 56%, #dcecff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero::before {
  width: 280px;
  height: 280px;
  left: -40px;
  top: 60px;
  background: rgba(255, 255, 255, 0.18);
}

.hero::after {
  width: 300px;
  height: 300px;
  right: -60px;
  bottom: 20px;
  background: rgba(36, 55, 94, 0.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 32%),
    radial-gradient(circle at bottom right, rgba(36,55,94,0.22), transparent 36%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 0 5.7rem;
}

.hero-copy h1 {
  margin: 1rem 0 0;
  max-width: 12ch;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  color: var(--white);
  text-shadow: 0 4px 14px rgba(36, 55, 94, 0.2);
}

.hero-text {
  max-width: 60ch;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
}

.hero-badges li {
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(4px);
}

.hero-visual {
  padding: 0.9rem;
}

.hero-visual img,
.image-card img,
.mosaic-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 6px);
}

.hero-visual img {
  min-height: 540px;
}

.section-overlap {
  padding-top: 0;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.cards {
  display: grid;
  gap: 1.4rem;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 2rem;
}

.service-card .icon {
  font-size: 2.2rem;
}

.service-card h2,
.text-card h2,
.coverage-panel h2,
.contact-copy h2 {
  margin: 0.8rem 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  line-height: 1.15;
}

.service-card p,
.text-card p,
.mini-card p,
.coverage-panel p,
.contact-copy p,
.bot-note,
.form-status,
.cta-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.mosaic {
  padding-top: 1.5rem;
}

.mosaic-grid,
.about-grid,
.seo-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.mosaic-grid {
  grid-template-columns: 0.95fr 1fr 0.95fr;
}

.mosaic-panel,
.coverage-panel,
.text-card,
.contact-copy,
.form-card {
  padding: 2rem;
}

.mosaic-panel img {
  margin-top: 1rem;
  height: 220px;
}

.mini-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.mini-card {
  border-radius: 22px;
  padding: 1.2rem;
  background: #eef5ff;
}

.mini-card h3,
.contact-details span,
.form-row label,
.footer-brand,
.cta-phone,
.cta-mail {
  color: var(--blue-dark);
  font-weight: 800;
}

.coverage-panel {
  color: var(--white);
  background: linear-gradient(180deg, #1f6fcd 0%, #5ca0ea 100%);
}

.coverage-panel h2,
.coverage-title,
.cta-panel,
.cta-phone,
.cta-mail {
  color: var(--white);
}

.coverage-box {
  margin-top: 1.3rem;
  min-height: 100%;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.coverage-flag {
  font-size: 4rem;
}

.coverage-title {
  margin: 1rem 0 0.8rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.about-grid,
.contact-grid {
  grid-template-columns: 1.12fr 0.88fr;
}

.about-side {
  display: grid;
  gap: 1.5rem;
}

.image-card.tall img {
  min-height: 340px;
}

.cta-panel {
  padding: 2rem;
  background: linear-gradient(135deg, #24375e 0%, #296bb6 100%);
}

.cta-phone,
.cta-mail {
  display: block;
}

.cta-phone {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.cta-mail {
  margin-top: 0.6rem;
  font-size: 1rem;
  opacity: 0.95;
}

.strength-grid,
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.strength-grid div,
.seo-tags span {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.seo-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-details div {
  padding: 1.2rem;
  border-radius: 22px;
  background: #eef5ff;
}

.contact-details a {
  display: block;
  margin-top: 0.25rem;
  color: var(--blue-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(41, 107, 182, 0.12);
}

.bot-note {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px dashed rgba(36, 55, 94, 0.2);
  background: #f8fbff;
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.6rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status.success {
  color: #0f7a3b;
}

.form-status.error {
  color: #b42318;
}

.site-footer {
  background: #0e3e82;
  color: rgba(255, 255, 255, 0.88);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
}

.footer-brand {
  color: var(--white);
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  align-items: center;
}

@media (max-width: 1100px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(14, 62, 130, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0.5rem;
  }

  .hero-grid,
  .mosaic-grid,
  .about-grid,
  .seo-grid,
  .contact-grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .brand img {
    width: 245px;
  }

  .hero-grid {
    padding: 3.4rem 0 5rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual img {
    min-height: 320px;
  }

  .service-card,
  .mosaic-panel,
  .coverage-panel,
  .text-card,
  .contact-copy,
  .form-card,
  .cta-panel {
    padding: 1.5rem;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .floating-call {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-call a {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
}
