:root {
  --ink: #0d1826;
  --muted: #627083;
  --line: #d7e2ec;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --blue: #1494c8;
  --blue-dark: #075b86;
  --cyan: #2bb7df;
  --purple: #681078;
  --navy: #071827;
  --navy-2: #0d2a42;
  --gold: #c7a35c;
  --gold-soft: #f4ead3;
  --green: #168b72;
  --shadow: 0 24px 60px rgba(7, 24, 39, 0.16);
  --shadow-strong: 0 32px 90px rgba(7, 24, 39, 0.24);
  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:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 34%, #ffffff 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(215, 226, 236, 0.84);
  box-shadow: 0 10px 30px rgba(7, 24, 39, 0.06);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 186px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(7, 24, 39, 0.08));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a,
.drop-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 7px;
  color: #1c2b36;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-links a:hover,
.drop-button:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-dark);
  background: linear-gradient(180deg, #eef9fd, #e7f4fa);
}

.dropdown {
  position: relative;
}

.dropdown::after {
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  height: 16px;
  content: "";
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 260px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(215, 226, 236, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 38px;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #8b1e9d);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(104, 16, 120, 0.24);
}

.nav-links .nav-action {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #8b1e9d);
}

.nav-action:hover {
  background: linear-gradient(135deg, #4b0b5a, #721684);
}

.nav-links .nav-action:hover,
.nav-links .nav-action[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, #4b0b5a, #721684);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  cursor: pointer;
}

.section {
  padding: 84px 0;
}

.section.alt {
  background:
    radial-gradient(circle at 10% 10%, rgba(43, 183, 223, 0.08), transparent 32%),
    linear-gradient(180deg, #f5f9fc, #eef5f9);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
}

h2 {
  max-width: 740px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero {
  position: relative;
  min-height: min(690px, calc(100vh - 98px));
  padding: 88px 0 46px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.94) 0%, rgba(7, 24, 39, 0.88) 37%, rgba(7, 24, 39, 0.42) 64%, rgba(7, 24, 39, 0.2) 100%),
    linear-gradient(180deg, rgba(20, 148, 200, 0.22), rgba(104, 16, 120, 0.14)),
    url("assets/corporate-hero.png") right center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(7, 24, 39, 0.28));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

.hero h1 {
  color: #fff;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(7, 24, 39, 0.12);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.btn.primary:hover {
  background: linear-gradient(135deg, #074766, #0e7dac);
}

.btn.secondary {
  color: #103047;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn.secondary:hover {
  border-color: var(--blue);
  background: #eff9fd;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  position: relative;
  z-index: 2;
  margin-top: -28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(7, 24, 39, 0.95), rgba(13, 42, 66, 0.94));
  box-shadow: var(--shadow-strong);
}

.trust-item {
  min-height: 102px;
  padding: 22px;
  background: transparent;
}

.trust-item strong {
  display: block;
  color: var(--gold);
  font-size: 1.7rem;
  line-height: 1;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(215, 226, 236, 0.92);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: 1.45rem;
}

.hero-panel .check-list li {
  color: var(--muted);
}

.hero .hero-panel {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.hero .hero-panel .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.check-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.check-list li::before,
.plain-list li::before {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #22aa8b);
  content: "✓";
  font-weight: 900;
  line-height: 1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head .lead {
  max-width: 520px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(215, 226, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.98));
  box-shadow: 0 16px 38px rgba(7, 24, 39, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  border-color: rgba(20, 148, 200, 0.42);
  box-shadow: 0 26px 62px rgba(7, 24, 39, 0.14);
  transform: translateY(-4px);
}

.card.featured {
  border-color: rgba(199, 163, 92, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 234, 211, 0.32)),
    linear-gradient(135deg, rgba(20, 148, 200, 0.08), rgba(104, 16, 120, 0.06));
}

.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--cyan));
  box-shadow: 0 14px 26px rgba(20, 148, 200, 0.22);
  font-weight: 950;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue-dark);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.process {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.process-item {
  position: relative;
  padding: 24px 24px 24px 82px;
  border: 1px solid rgba(215, 226, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(7, 24, 39, 0.07);
}

.process-item::before {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  counter-increment: step;
  content: counter(step);
  font-weight: 900;
}

.process-item p {
  margin-top: 6px;
  color: var(--muted);
}

.banner {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(7, 24, 39, 0.96), rgba(13, 42, 66, 0.88)),
    linear-gradient(180deg, rgba(199, 163, 92, 0.2), rgba(20, 148, 200, 0.12)),
    url("assets/corporate-hero.png") right 32% center / cover no-repeat;
}

.banner .lead {
  color: rgba(255, 255, 255, 0.82);
}

.banner .btn.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.page-hero {
  padding: 90px 0 56px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(7, 24, 39, 0.96), rgba(7, 24, 39, 0.72)),
    linear-gradient(180deg, rgba(20, 148, 200, 0.2), rgba(104, 16, 120, 0.12)),
    url("assets/corporate-hero.png") right center / cover no-repeat;
}

.page-hero .lead,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.service-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(215, 226, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.08);
}

.side-nav a {
  padding: 11px 13px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 760;
}

.side-nav a:hover,
.side-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: linear-gradient(180deg, #edf8fc, #e8f2f6);
}

.content-grid {
  display: grid;
  gap: 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-box {
  padding: 24px;
  border: 1px solid rgba(215, 226, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(7, 24, 39, 0.06);
}

.feature-box p {
  margin-top: 8px;
  color: var(--muted);
}

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

.person {
  padding: 26px;
  border: 1px solid rgba(215, 226, 236, 0.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 24, 39, 0.06);
}

.person span {
  display: block;
  margin-top: 4px;
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-panel,
.form-panel {
  padding: 28px;
  border: 1px solid rgba(215, 226, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item strong {
  display: block;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #25323d;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(188, 204, 218, 0.95);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(43, 183, 223, 0.22);
  border-color: var(--blue);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  padding: 44px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, #0b1d2e, #07111c);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer img {
  width: 190px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.footer h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 960px) {
  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 154px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a,
  .drop-button,
  .nav-action {
    justify-content: flex-start;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: grid;
    margin: 4px 0 6px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
  }

  .dropdown::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    background:
      linear-gradient(180deg, rgba(7, 24, 39, 0.88), rgba(7, 24, 39, 0.76)),
      url("assets/corporate-hero.png") center center / cover no-repeat;
  }

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

  .hero-copy {
    padding-top: 54px;
  }

  .hero-panel,
  .side-nav {
    position: static;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

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

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 58px 0;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .feature-row,
  .team {
    grid-template-columns: 1fr;
  }

  .card,
  .contact-panel,
  .form-panel,
  .hero-panel {
    padding: 22px;
  }

  .trust-item {
    min-height: 88px;
  }
}
