:root {
  --navy: #0A1F3D;
  --navy-2: #0F2B52;
  --blue: #1E88E5;
  --yellow: #FFC72C;
  --yellow-dk: #E6A800;
  --bg: #F7FAFC;
  --white: #FFFFFF;
  --ink: #0F172A;
  --muted: #475569;
  --line: #E2E8F0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 31, 61, 0.08);
  --shadow-lg: 0 25px 60px rgba(10, 31, 61, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0 0 1em; color: var(--muted); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.accent { color: var(--yellow); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.eyebrow--dark { color: var(--blue); }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { color: var(--ink); }
.section-head__sub { font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(255, 199, 44, 0.35);
}
.btn--primary:hover { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 199, 44, 0.45); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }

/* ===== trustbar ===== */
.trustbar {
  background: var(--navy);
  color: #CBD5E1;
  font-size: 0.85rem;
  padding: 10px 0;
}
.trustbar__row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.trustbar strong { color: var(--yellow); font-weight: 600; }
.trustbar__dot { color: #475569; }

/* ===== nav ===== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 56px; height: 56px; object-fit: contain; }
.nav__brand-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.1rem; letter-spacing: -0.01em; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.nav__links a:hover { color: var(--blue); }

@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ===== hero ===== */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 31, 61, 0.92) 0%, rgba(10, 31, 61, 0.65) 45%, rgba(10, 31, 61, 0.25) 75%, rgba(10, 31, 61, 0.0) 100%);
}
.hero__content { position: relative; color: var(--white); padding: 80px 24px; max-width: 760px; }
.hero h1 { color: var(--white); }
.hero__sub { color: rgba(255, 255, 255, 0.88); font-size: 1.15rem; max-width: 560px; }
.hero__sectors {
  list-style: none;
  padding: 0;
  margin: 26px 0 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.8;
  max-width: 640px;
}
.hero__sectors li { padding: 0; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 36px; }
.hero__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ===== why ===== */
.why { padding: 96px 0; background: var(--bg); }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.benefit__icon svg { width: 24px; height: 24px; }
.benefit h3 { color: var(--navy); }
.benefit p { margin: 0; font-size: 0.95rem; }

@media (max-width: 900px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits { grid-template-columns: 1fr; } }

/* ===== services ===== */
.services { padding: 96px 0; background: var(--white); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc__media { aspect-ratio: 4/3; overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.svc:hover .svc__media img { transform: scale(1.04); }
.svc__body { padding: 26px 26px 30px; }
.svc__body h3 { color: var(--navy); font-size: 1.25rem; }
.link { color: var(--blue); font-weight: 600; font-size: 0.95rem; }
.link:hover { color: var(--navy); }

.services__more { text-align: center; margin-top: 36px; color: var(--muted); }
.services__more a { color: var(--blue); font-weight: 600; }

@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; } }

/* ===== sectors ===== */
.sectors { padding: 96px 0; background: var(--navy); color: var(--white); }
.sectors__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sectors h2 { color: var(--white); }
.sectors p { color: rgba(255, 255, 255, 0.78); }
.sectors__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.sectors__list li {
  position: relative;
  padding-left: 28px;
  color: var(--white);
  font-weight: 500;
}
.sectors__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--yellow);
  clip-path: polygon(14% 46%, 0 60%, 42% 100%, 100% 22%, 85% 8%, 42% 70%);
}
.sectors__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

@media (max-width: 900px) { .sectors__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== trust ===== */
.trust { padding: 80px 0; background: var(--bg); }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--line);
}
.trust__badge {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.trust__seal { width: 110px; height: 110px; margin: 0 auto 18px; object-fit: contain; display: block; }
.trust__badge--shield { background: #E8F5E9; color: #2E7D32; }
.trust__badge--shield svg { width: 44px; height: 44px; }
.trust__badge--first { background: var(--yellow); color: var(--navy); font-size: 1.8rem; }
.trust__item h3 { color: var(--navy); margin-bottom: 8px; }
.trust__item p { margin: 0; font-size: 0.95rem; }

@media (max-width: 820px) { .trust__grid { grid-template-columns: 1fr; } }

/* ===== cta / form ===== */
.cta { padding: 96px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--white); }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cta h2 { color: var(--white); }
.cta p { color: rgba(255, 255, 255, 0.82); max-width: 420px; }
.cta__channels { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
}
.channel:hover { background: rgba(255, 199, 44, 0.1); border-color: var(--yellow); transform: translateX(4px); }
.channel svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; }
.channel span { display: flex; flex-direction: column; }
.channel small { color: rgba(255, 255, 255, 0.6); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }

.form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 20px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-weight: 500; font-size: 0.88rem; color: var(--navy); margin-bottom: 14px; }
.form input, .form select, .form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__small { text-align: center; color: var(--muted); font-size: 0.82rem; margin: 14px 0 0; }

@media (max-width: 900px) { .cta__inner { grid-template-columns: 1fr; gap: 36px; } .form__row { grid-template-columns: 1fr; } }

/* ===== footer ===== */
.footer { background: #050F20; color: #94A3B8; padding: 36px 0; }
.footer__row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo-wrap {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 4px;
  flex-shrink: 0;
}
.footer__logo-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.footer__brand strong { color: var(--white); font-size: 1.05rem; }
.footer__meta { display: flex; flex-direction: column; gap: 4px; font-size: 0.82rem; text-align: right; }

@media (max-width: 700px) { .footer__meta { text-align: left; } }

/* ===== mobile refinements ===== */
@media (max-width: 720px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .wrap { padding: 0 18px; }

  .trustbar { font-size: 0.78rem; padding: 8px 0; }
  .trustbar__row { gap: 6px 10px; }
  .trustbar__dot { display: none; }

  .nav__row { padding: 10px 16px; gap: 12px; }
  .nav__logo { width: 44px; height: 44px; }
  .nav__brand-name { font-size: 0.95rem; }
  .nav .btn { padding: 10px 14px; font-size: 0.85rem; }

  .hero { min-height: 520px; }
  .hero__content { padding: 56px 18px; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(10, 31, 61, 0.35) 0%, rgba(10, 31, 61, 0.8) 55%, rgba(10, 31, 61, 0.95) 100%);
  }
  .hero__sub { font-size: 1rem; }
  .hero__sectors { font-size: 1.05rem; line-height: 1.6; margin-top: 18px; }
  .hero__ctas { gap: 10px; margin: 22px 0 26px; }
  .btn--lg { padding: 14px 22px; font-size: 0.95rem; }
  .hero__chips { gap: 6px; }
  .chip { padding: 6px 12px; font-size: 0.78rem; }

  .why, .services, .sectors, .trust, .cta { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }

  .benefit { padding: 24px 20px; }
  .svc__body { padding: 22px 22px 26px; }

  .sectors__list { grid-template-columns: 1fr; gap: 10px; }

  .trust__item { padding: 28px 20px; }
  .trust__badge, .trust__seal { width: 84px; height: 84px; }

  .form { padding: 24px; }
  .cta__channels { gap: 10px; }
  .channel { padding: 12px 14px; }

  .footer__row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer__meta { text-align: left; }
}

@media (max-width: 400px) {
  .nav__brand-name { display: none; }
}
