:root {
  --primary: #3586f0;
  --secondary: #88C9F2;
  --accent: #10abf3;
  --accent-soft: #efd655;
  --text: #111827;
  --muted: #556274;
  --bg: #ffffff;
  --section: #f8fbfe;
  --surface: #DAEBF3;
  --line: #d8e8f4;
  --shadow: 0 16px 40px rgba(73, 124, 191, 0.12);
  --shadow-strong: 0 20px 50px rgba(73, 124, 191, 0.18);
  --radius: 20px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
}

.page-top-anchor {
  position: absolute;
  top: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(216, 232, 244, 0.82);
}

.section-alt {
  background: var(--section);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--primary);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 232, 244, 0.95);
  backdrop-filter: blur(14px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 18rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.1;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 0px;
}

.brand span {
  display: block;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: var(--primary);
  font-weight: 700;
}

.site-nav .nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
}

.site-nav .nav-call:hover,
.site-nav .nav-call:focus-visible {
  background: #dd7419;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(242, 135, 41, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #dd7419;
}

.btn-secondary {
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #dd7419;
}

.btn-accent {
  background: var(--primary);
  color: #ffffff;
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: #aed2f5;
  color: #0f3550;
}

.btn-small {
  min-height: 2.9rem;
  padding-inline: 1.1rem;
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  padding: 0;
  border-top: 0;
  overflow: hidden;
  border-radius: 0;
  background: url("images/hero_image_mobile.webp") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 40%, rgba(255, 255, 255, 0.18) 72%),
    linear-gradient(0deg, rgba(4, 20, 32, 0.08), rgba(4, 20, 32, 0.08));
}

.hero-grid,
.two-column,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  padding: 4rem 0 4.5rem;
}

.hero-copy {
  padding-top: 0.5rem;
}

.hero .eyebrow,
.hero h1,
.hero p,
.hero li {
  color: #092033;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-text,
.service-area {
  max-width: 40rem;
  font-size: 1.08rem;
}

.service-area {
  color: #243447;
}

.trust-points,
.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.trust-points li,
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 700;
}

.trust-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 4px rgba(239, 214, 85, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 1rem;
}

.hero-form-card,
.service-card,
.info-panel,
.process-card,
.testimonial-card,
.contact-card,
.contact-form,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-form-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-strong);
}

.hero-form-card p,
.hero-form-card h2,
.hero-form-card label,
.hero-form-card .form-note,
.hero-form-card .form-status {
  color: var(--text);
}

.card-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(239, 214, 85, 0.24);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
}

.lead-form,
.contact-form {
  display: grid;
  gap: 0.8rem;
}

label {
  color: var(--primary);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(160, 211, 242, 0.28);
  border-color: var(--secondary);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.spam-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.logos-strip {
  padding: 1rem 0 0;
  background: var(--bg);
}

.logos-grid {
  display: grid;
  gap: 0.85rem;
}

.logos-grid > div {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--section);
  color: var(--primary);
  text-align: center;
  font-weight: 800;
}

.services-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.process-card,
.testimonial-card {
  padding: 1.45rem;
}

.service-card p,
.process-card p,
.testimonial-card p {
  color: var(--text);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
}

.info-panel {
  padding: 1.4rem;
}

.info-panel iframe,
.info-panel img {
  display: block;
  width: 100%;
  min-height: 420px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 1rem 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--primary);
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.85rem;
  color: var(--text);
}

.contact-card-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-card {
  padding: 1.2rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  padding: 1.5rem;
}

.site-footer {
  padding: 3rem 0 6rem;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.94);
}

.site-footer p,
.site-footer a,
.site-footer h2,
.site-footer h3 {
  color: inherit;
}

.footer-grid {
  display: grid;
  gap: 1.8rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 1rem;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 -14px 30px rgba(242, 135, 41, 0.22);
}

@media (max-width: 639px) {
  .hero {
    background: var(--bg);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 252, 0.96) 100%);
  }

  .hero-copy::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    margin-top: 1.5rem;
    border-radius: 16px;
    background: #eef5f8 url("images/hero_image_mobile.webp") center center / contain no-repeat;
    box-shadow: var(--shadow);
  }
}

@media (min-width: 640px) {
  .hero {
    background-image: url("images/hero_image_v3.webp");
    background-position: center center;
  }

  .logos-grid,
  .process-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .mobile-call-bar {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .section {
    padding: 5.75rem 0;
  }

  .hero-grid {
    padding: 5rem 0 5.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
