:root {
  --blue: #123c69;
  --blue-dark: #08243f;
  --yellow: #ffd23f;
  --orange: #ff8a00;
  --green: #0f8b5f;
  --cream: #fff8e6;
  --white: #ffffff;
  --text: #102033;
  --muted: #2f4054;
  --line: #d6e0ea;
  --shadow: 0 20px 50px rgba(8, 36, 63, 0.18);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 19px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

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

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 230, 0.96);
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 8px 24px rgba(8, 36, 63, 0.08);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--blue-dark);
  text-decoration: none;
}

.brand-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border: 4px solid var(--blue);
  border-radius: 18px;
  font-size: 1.6rem;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.main-nav a,
.menu-button {
  color: var(--blue-dark);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 900;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.menu-button:hover,
.menu-button:focus-visible {
  color: var(--blue-dark);
  background: var(--yellow);
}

.menu-button {
  display: none;
  cursor: pointer;
}

.hero {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 210, 63, 0.55), transparent 22rem),
    linear-gradient(135deg, #e6f4ff 0%, #fff8e6 55%, #ffe9bf 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.pill {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.55rem 0.9rem;
  color: var(--blue-dark);
  background: var(--yellow);
  border: 3px solid var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: clamp(3rem, 8vw, 5.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: clamp(2.15rem, 5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--blue-dark);
  font-size: 1.45rem;
  line-height: 1.15;
}

.lead,
.large-text,
.section-title p,
.section-intro {
  color: var(--text);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.65;
}

.service-area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.35rem 0 0.4rem;
  padding: 0.85rem 1rem;
  color: var(--blue-dark);
  background: var(--white);
  border: 4px solid var(--orange);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(8, 36, 63, 0.12);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  line-height: 1.2;
}

.service-area-badge span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  background: var(--yellow);
  border: 3px solid var(--blue-dark);
  border-radius: 14px;
}

.service-area-badge strong {
  font-weight: 900;
}

.big-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0 0.75rem;
}

.call-button,
.email-button,
.submit-button {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border-radius: 24px;
  border: 4px solid var(--blue-dark);
  color: var(--blue-dark);
  background: var(--yellow);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.email-button {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue-dark);
}

.call-button:hover,
.email-button:hover,
.submit-button:hover,
.call-button:focus-visible,
.email-button:focus-visible,
.submit-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 62px rgba(8, 36, 63, 0.25);
}

.call-button span,
.email-button span {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.call-button strong,
.email-button strong {
  margin-top: 0.25rem;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.1;
  word-break: break-word;
}


.help-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--white);
  border: 5px solid var(--blue);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.help-card-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.large-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--yellow);
  border: 4px solid var(--blue-dark);
  border-radius: 22px;
  font-size: 2rem;
}

.help-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.8rem 0.85rem 0.8rem 3rem;
  background: #eef7ff;
  border: 2px solid var(--line);
  border-radius: 18px;
  font-size: 1.1rem;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  translate: 0 -50%;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.alert-strip {
  padding: 1rem 0;
  color: var(--white);
  background: var(--blue-dark);
}

.alert-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.alert-grid strong {
  color: var(--yellow);
  font-size: 1.3rem;
}

.alert-grid a {
  display: inline-flex;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section-title {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card,
.step-card,
.simple-form,
.contact-box {
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(8, 36, 63, 0.1);
}

.service-card {
  padding: 1.4rem;
}

.service-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: var(--yellow);
  border: 3px solid var(--blue-dark);
  border-radius: 18px;
  font-size: 1.7rem;
}

.service-card p,
.step-card p,
.simple-form p,
.contact-box small {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.soft-section {
  background: #e6f4ff;
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.steps {
  display: grid;
  gap: 1rem;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
}

.step-card > strong {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--yellow);
  border: 3px solid var(--blue-dark);
  border-radius: 18px;
  font-size: 1.7rem;
}

.trust-section {
  padding: 1.4rem 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-grid div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  text-align: center;
}

.trust-grid strong {
  display: block;
  color: var(--yellow);
  font-size: 1.7rem;
  line-height: 1.05;
}

.trust-grid span {
  display: block;
  margin-top: 0.35rem;
  font-weight: 700;
}

.contact-section {
  background:
    radial-gradient(circle at top right, rgba(255, 210, 63, 0.5), transparent 24rem),
    var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

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

.contact-box {
  display: block;
  padding: 1.15rem 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.contact-box.phone {
  background: var(--yellow);
  border-width: 4px;
}

.contact-box.email {
  color: var(--white);
  background: var(--blue);
  border-width: 4px;
  border-color: var(--blue-dark);
}

.contact-box span {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-box strong {
  display: block;
  margin: 0.25rem 0;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  line-height: 1.1;
  word-break: break-word;
}

.contact-box small {
  display: block;
  color: inherit;
  opacity: 0.82;
  font-weight: 800;
}

.simple-form {
  scroll-margin-top: 120px;
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

.simple-form label {
  display: block;
  margin: 1rem 0 0.35rem;
  color: var(--blue-dark);
  font-size: 1.12rem;
  font-weight: 900;
}

.simple-form input,
.simple-form textarea {
  width: 100%;
  min-height: 64px;
  padding: 1rem 1.05rem;
  color: var(--text);
  background: #f9fbfd;
  border: 3px solid var(--line);
  border-radius: 16px;
  font-size: 1.12rem;
}

.simple-form input:focus,
.simple-form textarea:focus {
  outline: 4px solid rgba(255, 210, 63, 0.9);
  border-color: var(--blue);
}

.submit-button {
  width: 100%;
  align-items: center;
  margin-top: 1rem;
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
}

.footer {
  padding: 1.25rem 0;
  color: var(--white);
  background: var(--blue-dark);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--yellow);
  font-weight: 900;
}


.site-banner {
  position: fixed;
  left: 50%;
  top: 1rem;
  z-index: 1000;
  width: min(680px, calc(100% - 2rem));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 4px solid var(--blue-dark);
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.35;
  transform: translateX(-50%);
}

.site-banner.show {
  display: flex;
}

.site-banner.success {
  color: #123c24;
  background: #eaf7ef;
  border-color: #2f7d46;
}

.site-banner.error {
  color: #7a271a;
  background: #fff1f1;
  border-color: #b42318;
}

.site-banner button {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: inherit;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}



.hidden-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #eaf7ef;
  border: 2px solid #2f7d46;
  color: #123c24;
  font-size: 1.02rem;
  line-height: 1.55;
}

.form-status.error {
  background: #fff1f1;
  border-color: #b42318;
  color: #7a271a;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.8;
}

@media (max-width: 900px) {
  html {
    font-size: 17px;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 1rem;
    background: var(--cream);
    border: 3px solid var(--blue);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    gap: 0.6rem;
  }

  .main-nav a {
    display: block;
    text-align: center;
  }

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

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

  .big-actions {
    grid-template-columns: 1fr;
  }

  .alert-grid {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, var(--container));
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand-icon {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero {
    padding-top: 2rem;
  }

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

  .call-button,
  .email-button {
    min-height: 96px;
  }

  .help-card-header,
  .step-card {
    grid-template-columns: 1fr;
  }

  .step-card > strong {
    width: 52px;
    height: 52px;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
