:root {
  --navy: #062d50;
  --navy-900: #031d34;
  --green: #59a817;
  --green-700: #3f8209;
  --orange: #ff7200;
  --blue: #1767be;
  --ink: #14202b;
  --muted: #5f6c78;
  --bg: #f5f8fa;
  --line: #dce5eb;
  --white: #fff;
  --shadow: 0 18px 45px rgba(6, 45, 80, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}
.brand img { width: 112px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: var(--navy);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--green-700); }
.language-select {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
}
.language-select select {
  width: auto;
  min-height: 34px;
  margin: 0;
  padding: 5px 28px 5px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-700));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(89,168,23,.25);
  cursor: pointer;
}
.button-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); box-shadow: none; }
.button-light { background: var(--white); color: var(--navy); box-shadow: none; }
.button-small { min-height: 38px; padding: 0 18px; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(89,168,23,.2), transparent 30%),
    linear-gradient(135deg, #fff, #f3f8fb 55%, #edf6e6);
  padding: 76px 0 86px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 55px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.1; margin-top: 0; color: var(--navy); }
h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  text-transform: uppercase;
}
h1 span { display: block; }
h1 span + span { color: var(--green); }
.lead { max-width: 650px; color: var(--muted); font-size: 1.18rem; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 28px 0; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--navy);
  font-weight: 700;
}
.trust-list li::before, .service-card li::before { content: "✓"; margin-right: 8px; color: var(--green-700); font-weight: 900; }

.offer-panel {
  min-height: 470px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--navy), var(--navy-900));
  color: var(--white);
  box-shadow: var(--shadow);
}
.offer-panel::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -110px;
  top: -100px;
  border: 55px solid rgba(89,168,23,.75);
  border-radius: 50%;
}
.offer-panel img {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 190px;
  padding: 9px;
  border-radius: 8px;
  background: var(--white);
}
.discount {
  position: absolute;
  right: 30px;
  top: 110px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-700);
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,.22);
}
.discount strong { font-size: 2.3rem; line-height: .9; }
.discount span { display: block; margin-top: 4px; font-weight: 900; }
.offer-copy { position: relative; z-index: 1; }
.offer-copy p { color: #c7d9e8; }
.offer-copy h2 { max-width: 360px; margin-bottom: 12px; color: var(--white); font-size: 2.3rem; }
.offer-copy a { color: #a4e264; font-weight: 800; }

.section { padding: 88px 0; }
.soft-section { background: var(--bg); }
.section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-heading h2, .contact-grid h2, .dark-section h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  text-transform: uppercase;
}
.section-heading p, .contact-grid p { color: var(--muted); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6,45,80,.06);
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}
.blue { background: var(--blue); }
.orange { background: var(--orange); }
.green { background: var(--green); }
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-card ul { padding: 0; margin: 18px 0 0; list-style: none; }
.service-card li { margin: 9px 0; font-size: .91rem; }

.dark-section { background: linear-gradient(120deg, var(--navy), var(--navy-900)); color: var(--white); }
.dark-section .eyebrow { color: #a4e264; }
.dark-section h2 { color: var(--white); }
.dark-section p { color: #cbd9e4; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 65px;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
}
.stats-grid div {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.stats-grid dt { color: #a4e264; font-size: 2.2rem; font-weight: 900; }
.stats-grid dd { margin: 0; color: #d8e4ec; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.why-grid article {
  padding: 25px;
  border-top: 5px solid var(--green);
  border-radius: 0 0 8px 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6,45,80,.06);
}
.why-grid span { color: #d9e2e8; font-size: 2.2rem; font-weight: 900; }
.why-grid p { color: var(--muted); }

.cta-section { padding: 42px 0; background: linear-gradient(110deg, var(--green-700), var(--green)); color: var(--white); }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-row h2 { max-width: 760px; margin: 0; color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 55px;
  align-items: start;
}
.contact-info { margin-top: 27px; font-style: normal; }
.contact-info div, .contact-info a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info span { color: var(--muted); }
.contact-info strong { color: var(--navy); text-align: right; }
form {
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label { display: block; margin-bottom: 15px; color: var(--navy); font-size: .9rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px;
  border: 1px solid #d6e0e7;
  border-radius: 8px;
  background: #fbfcfd;
  font: inherit;
}
textarea { resize: vertical; }
form .button { width: 100%; }
.form-note { margin-bottom: 0; color: var(--muted); font-size: .8rem; text-align: center; }

.site-footer { padding: 54px 0 22px; background: #021a2e; color: #c5d4df; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
}
.site-footer img { width: 210px; padding: 8px; border-radius: 8px; background: var(--white); }
.site-footer h2 { color: var(--white); font-size: 1.1rem; }
.site-footer a, .site-footer span { display: block; margin: 8px 0; }
.copyright {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #90a4b3;
  font-size: .85rem;
}

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .language-select {
    justify-content: space-between;
    padding: 10px 0;
  }
  .language-select select { min-width: 88px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .offer-panel { min-height: 390px; }
}

@media (max-width: 620px) {
  .nav { min-height: 58px; padding: 6px 0; }
  .brand img { width: 88px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { padding: 56px 0; }
  .actions { flex-direction: column; }
  .actions .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .service-grid, .why-grid, .stats-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .offer-panel { min-height: 340px; padding: 25px; }
  .offer-panel img { width: 150px; }
  .discount { width: 90px; height: 90px; right: 20px; top: 105px; }
  .discount strong { font-size: 1.8rem; }
  .cta-row { align-items: flex-start; flex-direction: column; }
  .contact-info div, .contact-info a { flex-direction: column; gap: 3px; }
  .contact-info strong { text-align: left; }
}
