:root {
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-strong: #08172d;
  --text: #0b1220;
  --muted: #5a6475;
  --line: rgba(8, 23, 45, 0.1);
  --primary: #1387ff;
  --primary-dark: #0d6dd0;
  --navy: #09162b;
  --black: #05070b;
  --shadow: 0 22px 60px rgba(8, 23, 45, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(19, 135, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  color: var(--text);
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(8, 23, 45, 0.06);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(19, 135, 255, 0.18));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-text small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid rgba(8, 23, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.lang-button {
  min-width: 46px;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--navy);
  color: white;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #42a2ff);
  color: white;
  box-shadow: 0 14px 32px rgba(19, 135, 255, 0.25);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  border-color: rgba(8, 23, 45, 0.1);
}

.hero {
  padding: 2rem 0 1.6rem;
}

.hero-grid,
.why-grid,
.quote-layout,
.quote-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(19, 135, 255, 0.1);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1,
.section-heading h2 {
  margin: 1rem 0 0;
  line-height: 0.98;
  color: var(--navy);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  max-width: 9ch;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--primary);
}

.hero-text,
.section-heading p,
.service-card p,
.benefits-list,
.stat-card p,
.info-box p,
.footer-details p {
  color: var(--muted);
}

.hero-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0.9rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.4rem 0 1rem;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.trust-card,
.service-card,
.stat-card,
.quote-form,
.info-box,
.comparison-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 0.85rem 0.6rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: none;
  background: transparent;
  border: 0;
}

.trust-card strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(8, 23, 45, 0.18);
  min-height: 470px;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02) brightness(0.98);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
    linear-gradient(135deg, rgba(19, 135, 255, 0.04), transparent 42%);
  pointer-events: none;
}

.section {
  padding: 2.2rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(8, 23, 45, 0.03), rgba(8, 23, 45, 0.06));
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading-centered {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.service-card,
.stat-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.service-card {
  text-align: center;
}

.service-card h3,
.info-box h3 {
  margin: 1rem 0 0.5rem;
  color: var(--navy);
}

.service-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  color: var(--primary);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.8rem;
  font-size: 0.98rem;
}

.benefits-list li {
  position: relative;
  padding-left: 1.8rem;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #5bb2ff);
  box-shadow: 0 0 0 6px rgba(19, 135, 255, 0.1);
}

.quote-layout {
  align-items: start;
}

.why-copy h2,
.quote-aside h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
}

.why-photo-card {
  min-height: 300px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.why-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-shell {
  align-items: stretch;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.quote-aside {
  padding: 1rem 0.6rem 1rem 0.2rem;
}

.quote-aside p {
  color: var(--muted);
  line-height: 1.65;
}

.info-box {
  margin-top: 1.2rem;
  padding: 1.1rem;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  align-items: center;
  background: linear-gradient(180deg, #eaf4ff, #dcecff);
}

.info-icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
}

.info-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.quote-form {
  padding: 1.25rem;
  border-radius: 26px;
  background: #ffffff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-form label,
.form-group {
  display: grid;
  gap: 0.55rem;
}

.quote-form span,
.form-group legend {
  font-weight: 700;
  color: var(--navy);
}

.quote-form input,
.quote-form select {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(8, 23, 45, 0.14);
  padding: 0.9rem 1rem;
  background: white;
  color: var(--text);
}

.quote-form input:focus,
.quote-form select:focus {
  outline: 2px solid rgba(19, 135, 255, 0.2);
  border-color: var(--primary);
}

.form-group {
  border: 0;
  margin: 0;
  padding: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(8, 23, 45, 0.12);
  border-radius: 14px;
  background: #fbfdff;
}

.checkbox-grid input {
  min-height: auto;
}

.full-width {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 700;
}

.form-status-pending {
  background: #eaf4ff;
  color: var(--primary-dark);
}

.form-status-success {
  background: #e9f8ef;
  color: #1d6b3a;
}

.form-status-error {
  background: #fff0f0;
  color: #a43030;
}

.site-footer {
  background: var(--surface-strong);
  color: white;
  margin-top: 0;
}

.footer-logo .logo-text small,
.footer-details a,
.footer-details p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo .logo-mark svg {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.footer-logo .logo-text strong {
  color: #ffffff;
}

.footer-details {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.4rem;
  text-align: left;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-icon {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    margin-left: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-grid,
  .why-grid,
  .quote-layout,
  .services-grid,
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    min-height: 380px;
  }

  .quote-aside {
    padding: 0.2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .container {
    width: min(100% - 1.2rem, 1120px);
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-cta {
    flex: 1;
  }

  .quote-form,
  .service-card,
  .stat-card,
  .trust-card {
    border-radius: 22px;
  }

  .info-box {
    grid-template-columns: 1fr;
  }

  .footer-details {
    justify-content: flex-start;
  }
}
