:root {
  --navy: #0f2744;
  --navy-2: #15385f;
  --orange: #f97316;
  --orange-dark: #c9550d;
  --white: #ffffff;
  --light: #f5f7fa;
  --muted: #667085;
  --border: #e5e7eb;
  --text: #101828;
  --shadow: 0 24px 70px rgba(15, 39, 68, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,231,235,0.8);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--orange);
  font-size: 20px;
}

.logo strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  color: var(--navy);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 11px 18px;
  background: var(--orange);
  color: white !important;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 110px clamp(20px, 5vw, 72px);
  color: white;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15,39,68,0.92), rgba(15,39,68,0.65), rgba(15,39,68,0.2)),
    url("https://images.unsplash.com/photo-1621905251918-48416bd8575a?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.hero h1 {
  margin: 18px 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero p {
  font-size: clamp(18px, 2vw, 23px);
  max-width: 680px;
  color: rgba(255,255,255,0.88);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.btn.primary:hover {
  background: var(--orange-dark);
}

.btn.secondary {
  border-color: rgba(255,255,255,0.55);
  color: white;
  background: rgba(255,255,255,0.08);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 50px;
  padding: 22px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
}

.hero-card strong {
  display: block;
  font-size: 28px;
  letter-spacing: 0.08em;
}

.hero-card span {
  color: rgba(255,255,255,0.82);
}

.section {
  padding: 95px clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  background: var(--light);
}

.intro h2,
.section-head h2,
.split-content h2,
.cta-band h2,
.contact-card h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.intro p {
  font-size: 19px;
  color: var(--muted);
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

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

.service-card,
.benefit,
.contact-form,
.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 12px 36px rgba(15,39,68,0.06);
}

.service-card.featured {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-10px);
}

.service-card.featured h3,
.service-card.featured p {
  color: white;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 22px;
}

.service-card.featured .icon {
  background: rgba(255,255,255,0.12);
}

.service-card h3,
.benefit h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--navy);
}

.service-card p,
.benefit p,
.split-content p,
.cta-band p,
.contact-card p {
  color: var(--muted);
  margin-top: 0;
}

.service-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.service-card li {
  margin: 8px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--navy);
}

.split-image {
  background:
    linear-gradient(rgba(15,39,68,0.05), rgba(15,39,68,0.05)),
    url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(20px, 6vw, 90px);
  color: white;
}

.split-content h2 {
  color: white;
}

.split-content p {
  color: rgba(255,255,255,0.75);
  font-size: 19px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.check-list span {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cta-band {
  margin: 0 clamp(20px, 5vw, 72px);
  padding: 52px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: white;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
}

.faq {
  background: var(--light);
  margin-top: 90px;
}

.faq-list {
  max-width: 900px;
}

.faq-item {
  width: 100%;
  border: 0;
  background: white;
  padding: 22px 26px;
  margin-top: 12px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
}

.faq-answer {
  display: none;
  background: white;
  margin: 0 0 12px;
  padding: 0 26px 22px;
  color: var(--muted);
  border-radius: 0 0 18px 18px;
}

.faq-answer.open {
  display: block;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  padding: 95px clamp(20px, 5vw, 72px);
  background: white;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 800;
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--navy);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: 650px;
  }

  .hero-card {
    display: none;
  }

  .intro,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .service-card.featured {
    transform: none;
  }

  .split-image {
    min-height: 360px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .logo small {
    display: none;
  }

  .hero {
    padding-top: 80px;
    min-height: 620px;
  }

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

  .section,
  .contact-section {
    padding: 70px 20px;
  }

  .cta-band {
    margin: 0 20px;
    padding: 34px 24px;
  }
}
