:root {
  --blue: #0759b8;
  --blue-2: #2b82ee;
  --navy: #091624;
  --navy-2: #101f2d;
  --yellow: #ffc914;
  --yellow-dark: #f2b900;
  --ink: #0e1c2f;
  --muted: #5a6674;
  --line: #e5eaf0;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 14px 38px rgba(9, 22, 36, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(22px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 234, 240, 0.75);
  box-shadow: 0 4px 24px rgba(9, 22, 36, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-icon {
  width: 52px;
  color: var(--blue);
}

.brand-text {
  display: grid;
  line-height: 0.95;
}

.brand-text strong {
  color: var(--blue);
  font-size: clamp(24px, 2.35vw, 35px);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text span {
  color: #13233a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  padding: 28px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.phone-link svg,
.cta-contact svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.quote-button,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-button,
.primary-button {
  background: linear-gradient(180deg, var(--yellow), var(--yellow-dark));
  color: #071322;
  box-shadow: 0 10px 24px rgba(255, 201, 20, 0.24);
}

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

.primary-button svg {
  width: 18px;
  height: 18px;
}

.ghost-button {
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: rgba(9, 22, 36, 0.22);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  transform: scale(1.02);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 14, 24, 0.95) 0%, rgba(5, 18, 31, 0.88) 28%, rgba(5, 18, 31, 0.36) 58%, rgba(5, 18, 31, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 14, 24, 0.28), rgba(4, 14, 24, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 40px));
  min-height: 560px;
  margin-left: clamp(22px, 4vw, 72px);
  padding: 54px 0 64px;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker svg {
  width: 29px;
  height: 29px;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 18px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--blue-2);
}

.hero-copy {
  max-width: 560px;
  margin: 0 0 30px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.section-pad {
  padding: clamp(42px, 6vw, 72px) clamp(20px, 4.5vw, 72px);
}

.section-title {
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  text-align: center;
}

.section-title.left {
  place-items: start;
  max-width: 760px;
  text-align: left;
}

.section-title h2,
.quote-copy h2,
.cta h2 {
  margin: 0;
  color: #15253a;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  width: 34px;
  height: 4px;
  margin-top: 10px;
  border-radius: 99px;
  background: var(--blue);
}

.section-title.left::after {
  display: none;
}

.services {
  background: #fbfcfe;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 58px;
  height: 58px;
  color: var(--blue);
}

.service-card h3 {
  margin: 0 0 6px;
  color: #14243a;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #172337;
  font-size: 13px;
  line-height: 1.38;
}

.process {
  display: grid;
  grid-template-columns: auto 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 82px);
  background: linear-gradient(90deg, #101c28, #172636);
  color: var(--white);
}

.process-label {
  color: var(--blue-2);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-step {
  display: grid;
  grid-template-columns: auto 54px 1fr;
  align-items: center;
  gap: 14px;
}

.process-step .number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 900;
}

.process-step svg {
  width: 50px;
  height: 50px;
}

.process-step h3 {
  margin: 0 0 4px;
  font-size: 16px;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

.chevron {
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.68);
  border-right: 2px solid rgba(255, 255, 255, 0.68);
  transform: rotate(45deg);
}

.testimonial {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.2fr) 1px minmax(240px, 0.6fr) auto;
  align-items: center;
  gap: 34px;
  background: #f8fafc;
}

.quote-mark {
  color: var(--blue);
  font-size: 106px;
  font-weight: 950;
  line-height: 0.7;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin: 0;
  color: #14243a;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.testimonial::before {
  content: "";
  grid-column: 3;
  width: 1px;
  height: 86px;
  background: #cfd8e2;
}

.person {
  display: flex;
  align-items: center;
  gap: 18px;
}

.avatar {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #dfe8ef, #6a7d89);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 0 0 5px #eef3f7;
}

.person strong,
.person span,
.person small {
  display: block;
}

.person strong {
  margin-bottom: 7px;
  text-transform: uppercase;
}

.person span,
.person small {
  color: #24334a;
}

.dots {
  display: flex;
  gap: 12px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d9e0;
}

.dots span:first-child {
  background: var(--blue);
}

.industries {
  background: var(--white);
}

.eyebrow {
  color: var(--blue);
  font-size: 14px;
}

.industry-grid,
.resource-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-grid article,
.resource-list div {
  min-height: 164px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(9, 22, 36, 0.07);
}

.industry-grid h3,
.resource-list strong {
  display: block;
  margin: 0 0 10px;
  color: #15253a;
  font-size: 19px;
}

.industry-grid p,
.resource-list span,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.resources {
  background: var(--soft);
}

.about {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text p {
  margin: 0 0 18px;
  color: #1d2b3d;
  font-size: 17px;
  line-height: 1.65;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  gap: 18px;
}

.stat {
  display: grid;
  gap: 6px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(9, 22, 36, 0.06);
}

.stat strong {
  color: var(--blue);
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.faq {
  background: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--soft);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 850;
  font-size: 16px;
  color: #15253a;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::before {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 18px 64px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.pricing {
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(9, 22, 36, 0.07);
}

.pricing-card.featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 16px 40px rgba(7, 89, 184, 0.14);
  position: relative;
}

.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 99px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  color: #15253a;
}

.pricing-card .price {
  margin: 0;
}

.pricing-card .price strong {
  font-size: 36px;
  font-weight: 950;
  color: var(--blue);
}

.pricing-card .price-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-card ul {
  margin: 8px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricing-card li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: #1d2b3d;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

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

.cta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: 42px clamp(20px, 5vw, 82px);
  background:
    linear-gradient(rgba(0, 82, 180, 0.94), rgba(0, 82, 180, 0.94)),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(255, 255, 255, 0.12) 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(255, 255, 255, 0.12) 24px);
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  font-size: clamp(20px, 2.6vw, 30px);
}

.cta p {
  margin: 12px 0 0;
  font-size: 18px;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 800;
}

.quote-button.large {
  min-width: 210px;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: 42px;
  align-items: start;
  background: #ffffff;
}

.quote-copy {
  position: sticky;
  top: 104px;
}

.quote-copy h2 {
  text-transform: none;
  margin-bottom: 14px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #1d2b3d;
  font-size: 14px;
  font-weight: 850;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.quote-form input,
.quote-form select {
  height: 48px;
  padding: 0 14px;
}

.quote-form textarea {
  resize: vertical;
  padding: 13px 14px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 89, 184, 0.12);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #071322;
  color: var(--white);
}

.footer .brand-text span,
.footer .brand-text strong {
  color: var(--white);
}

.footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open,
  .header-actions.is-open {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
  }

  .site-nav.is-open {
    flex-wrap: wrap;
    gap: 4px 22px;
    padding: 0 0 12px;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .header-actions.is-open {
    padding: 0 0 18px;
  }

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

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

  .process-label,
  .chevron {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 14, 24, 0.95), rgba(4, 14, 24, 0.72));
  }

  .service-grid,
  .industry-grid,
  .resource-list,
  .pricing-grid,
  .quote-panel,
  .cta {
    grid-template-columns: 1fr;
  }

  .testimonial {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .testimonial::before,
  .dots {
    display: none;
  }

  .quote-copy {
    position: static;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand-icon {
    width: 40px;
  }

  .brand-text strong {
    font-size: 24px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-actions,
  .header-actions.is-open,
  .cta-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .ghost-button,
  .quote-button {
    width: 100%;
  }

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

  .service-card {
    grid-template-columns: 54px 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
