:root {
  --blue: #004eff;
  --blue-dark: #003dcc;
  --orange: #ffa500;
  --orange-dark: #d68c04;
  --light: #f3f6f9;
  --surface: #ffffff;
  --text: #101828;
  --muted: #5f6b7a;
  --border: #e3e9f2;
  --dark: #06142d;
  --shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
  --radius: 8px;
  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background: #fff;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 165, 0, 0.85);
  outline-offset: 3px;
}

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

h1 {
  color: var(--blue);
  font-size: clamp(2.15rem, 5vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 1rem;
}

h2 {
  color: var(--blue);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

h3 {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow { max-width: 820px; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 20;
  background: #fff;
  color: var(--blue);
  padding: 0.7rem 1rem;
  border: 2px solid var(--blue);
}

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

.notice-bar {
  background: var(--orange);
  color: #fff;
  font-size: 0.76rem;
  text-align: center;
  padding: 0.48rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img { width: 230px; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #111827;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.55rem 0;
}

.nav-link.is-active,
.nav-link:hover { color: var(--blue); text-decoration: none; }

.nav-dropdown { position: relative; }

.dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  width: 270px;
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 0.65rem;
}

.dropdown-menu .nav-link {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 6px;
}

.dropdown-menu .nav-link:hover,
.dropdown-menu .nav-link.is-active {
  background: var(--light);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  padding: 0.55rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  padding: 0.8rem 1.2rem;
  border: 2px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 78, 255, 0.2);
}

.button-primary:hover { background: var(--blue-dark); color: #fff; }

.button-secondary {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.button-secondary:hover { background: var(--light); }

.button-small {
  min-height: 38px;
  padding: 0.62rem 0.9rem;
  font-size: 0.86rem;
}

.button-text {
  color: var(--blue);
  background: transparent;
  border-color: var(--border);
  box-shadow: none;
}

.hero {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  padding: clamp(3rem, 7vw, 6rem) 0;
  overflow: hidden;
}

.hero-grid,
.split-grid,
.cta-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.55rem 0 1.1rem;
}

.hero-media {
  position: relative;
}

.hero-media img,
.split-media img {
  border-radius: var(--radius);
  filter: drop-shadow(0 22px 35px rgba(0, 61, 204, 0.14));
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: #8b95a5;
}

.eyebrow {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.trust-points,
.check-list {
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-points li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #344054;
}

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

.section-alt { background: var(--light); }
.section-tight { padding-top: 0; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-grid.reverse { grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr); }
.split-grid.reverse .split-media { order: 2; }

.split-grid p { color: var(--muted); }

.feature-grid,
.service-card-grid,
.pricing-grid,
.case-grid,
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.feature-card,
.service-card,
.pricing-card,
.case-card,
.contact-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.feature-card {
  padding: 1.45rem;
  text-align: center;
}

.feature-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.feature-card p,
.service-card p,
.pricing-card li,
.case-card p {
  color: var(--muted);
}

.service-card,
.pricing-card {
  padding: 1.5rem;
}

.service-card-grid .service-card:nth-child(4):last-child {
  grid-column: 2;
}

.service-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.price-line {
  color: var(--orange-dark) !important;
  font-weight: 800;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-price {
  color: var(--blue);
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing-card ul {
  padding-left: 1.15rem;
  margin: 0 0 1.5rem;
}

.pricing-card .button { margin-top: auto; }

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff;
  border: 1px solid var(--orange-dark);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

details p {
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.cta-section {
  background: var(--dark);
  color: #fff;
}

.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255, 255, 255, 0.82); }
.cta-section .check-list li { color: rgba(255, 255, 255, 0.82); }

.lead-form {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
}

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

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label,
.checkbox-field {
  color: #344054;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd8e5;
  border-radius: 6px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

textarea { resize: vertical; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.25rem;
}

.form-status {
  margin: 0.8rem 0 0;
  color: var(--muted) !important;
  font-size: 0.9rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}

.contact-panel {
  padding: 1.6rem;
}

address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 1rem;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-list article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}

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

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.case-card div { padding: 1.25rem; }
.case-card h2 { font-size: 1.2rem; color: var(--text); }

.sitemap-grid ul,
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.sitemap-grid li { margin: 0.55rem 0; }

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content p {
  color: var(--muted);
}

.site-footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 3.5rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  width: 260px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.footer-subhead { margin-top: 1.5rem; }

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer li { margin: 0.5rem 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 0.4rem;
  }
  .hero-grid,
  .split-grid,
  .split-grid.reverse,
  .cta-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split-grid.reverse .split-media { order: 0; }
  .feature-grid,
  .service-card-grid,
  .pricing-grid,
  .sitemap-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .notice-bar { font-size: 0.68rem; }
  .brand img { width: 190px; }
  .hero { padding: 2.4rem 0 3rem; }
  .hero-actions .button { width: 100%; }
  .trust-points { display: grid; }
  .feature-grid,
  .service-card-grid,
  .pricing-grid,
  .case-grid,
  .sitemap-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .section-heading { text-align: left; }
  .footer-brand img { width: 230px; }
  .service-card-grid .service-card:nth-child(4):last-child { grid-column: auto; }
}
