:root {
  --navy: #08295d;
  --navy2: #0f3f88;
  --gold: #c89a3d;
  --green: #1fa84f;
  --bg: #f5f7fb;
  --line: #dfe5f1;
  --text: #19253f;
  --muted: #5b6883;
  --shadow: 0 18px 42px rgba(9,26,63,.08);
  --container: min(1320px, calc(100vw - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: var(--container); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #fff;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}
.top-link, .quote-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.quote-chip {
  background: rgba(255,255,255,.1);
  padding: 10px 14px;
  border-radius: 10px;
}
.divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.28);
}

.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
}
.brand img {
  width: 210px;
  height: auto;
}
.nav-wrap {
  position: relative;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
}
.nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}
.nav a:hover::after, .nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}
.menu-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--navy);
  font-size: 30px;
  cursor: pointer;
}

.hero {
  padding: 20px 0 0;
}
.hero-shell {
  display: grid;
  grid-template-columns: 1.02fr 1.28fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 26px 26px;
  overflow: hidden;
}
.hero-copy {
  padding: 56px 54px 38px;
  background: linear-gradient(180deg, #fafbfd, #ffffff);
}
.kicker {
  display: inline-block;
  width: 84px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  margin: 8px 0 24px;
}
.hero h1, .page-hero h1 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}
.hero h2 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 800;
}
.hero p, .page-hero p {
  margin: 0 0 24px;
  color: #334361;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 26px;
  border-radius: 15px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: .2s ease;
  min-height: 58px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-whatsapp {
  background: var(--green);
  color: #fff;
}
.icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  font-size: 13px;
}

.hero-image {
  position: relative;
  min-height: 560px;
  background: #d6dfed;
}
.hero-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-panel {
  position: absolute;
  right: 34px;
  top: 26px;
  width: min(360px, calc(100% - 52px));
  background: rgba(7,36,95,.94);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 24px;
  padding: 24px 24px 18px;
  box-shadow: 0 20px 45px rgba(5,20,53,.28);
}
.panel-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.panel-item:last-child {
  border-bottom: none;
  padding-bottom: 6px;
}
.panel-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 20px;
}
.panel-item h3 {
  font-size: 16px;
  margin: 0 0 4px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}
.panel-item p {
  font-size: 13px;
  margin: 0;
  color: rgba(255,255,255,.92);
  line-height: 1.35;
}

.cards-section {
  margin-top: -6px;
  position: relative;
  z-index: 2;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 16px 16px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  min-height: 134px;
  align-items: center;
}
.service-card.media-icon {
  grid-template-columns: 90px 1fr;
}
.service-card img {
  width: 112px;
  height: 86px;
  object-fit: contain;
}
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 40px;
  color: #0b46a6;
  background: linear-gradient(180deg, #f6f8fc, #fff);
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.1;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
}
.service-card p {
  margin: 0;
  color: #314160;
  font-size: 14px;
  line-height: 1.45;
}
.service-arrow {
  align-self: end;
  justify-self: end;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.section {
  padding: 36px 0;
}
.section-tight {
  padding-top: 8px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  color: var(--navy);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  letter-spacing: .3px;
  margin-bottom: 24px;
}
.section-title::before, .section-title::after {
  content: "";
  height: 2px;
  background: #e0d3b0;
  flex: 1;
  max-width: 340px;
}
.logos-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 26px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 18px;
}
.logos-row img {
  max-height: 64px;
  width: 100%;
  object-fit: contain;
  justify-self: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.trust-item {
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border-right: none;
}
.trust-icon {
  width: 74px;
  height: 74px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 32px;
}
.trust-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 900;
}
.trust-item p {
  margin: 0;
  color: #314160;
  font-size: 14px;
  line-height: 1.5;
}

.whatsapp-strip {
  background: var(--navy);
  border-radius: 26px;
  padding: 18px 22px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr auto 1.25fr;
  align-items: center;
  gap: 24px;
  box-shadow: 0 24px 45px rgba(7,36,95,.14);
}
.ws-left {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}
.ws-bubble {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 40px;
  font-weight: 900;
}
.whatsapp-strip h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #fff;
  font-weight: 900;
}
.whatsapp-strip p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.ws-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ws-badge {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.ws-badge:first-child {
  border-left: none;
  padding-left: 0;
}
.ws-badge .mini {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.ws-badge strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.ws-badge span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.82);
  line-height: 1.3;
}

.page-hero {
  padding: 52px 0;
  background: linear-gradient(180deg, #fff, #f4f7fc);
}
.page-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.page-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.page-box h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 24px;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.bullet-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.bullet-list li {
  padding-left: 18px;
  position: relative;
  color: #314160;
  line-height: 1.55;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.footer {
  padding: 34px 0;
  color: #40506d;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.muted {
  color: var(--muted);
}

@media (max-width: 1200px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-image { min-height: 500px; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .logos-row { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-strip { grid-template-columns: 1fr; gap: 18px; }
  .ws-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px 18px;
    min-width: 250px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav.open { display: flex; }
  .brand img { width: 240px; }
  .hero-copy { padding: 38px 26px 26px; }
  .hero-image { min-height: 420px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .logos-row { grid-template-columns: repeat(3, 1fr); }
  .page-grid, .split-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --container: min(100vw - 20px, 1320px); }
  .topbar-inner { justify-content: space-between; gap: 10px; padding: 10px 0; }
  .brand img { width: 210px; }
  .hero h1, .page-hero h1 { font-size: 46px; }
  .hero-actions { gap: 12px; }
  .btn { width: 100%; padding: 16px 20px; }
  .hero-image { min-height: 390px; }
  .hero-panel { inset: auto 14px 14px 14px; width: auto; padding: 18px; border-radius: 18px; }
  .panel-item { grid-template-columns: 40px 1fr; gap: 10px; padding: 11px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.media-icon { grid-template-columns: 88px 1fr; min-height: 120px; }
  .service-card img { width: 88px; height: 70px; }
  .service-icon { width: 70px; height: 70px; font-size: 34px; }
  .logos-row { grid-template-columns: repeat(2, 1fr); padding: 18px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 18px; }
  .trust-item:last-child { border-bottom: none; }
  .ws-left { grid-template-columns: 64px 1fr; }
  .ws-bubble { width: 64px; height: 64px; font-size: 30px; }
  .ws-badges { grid-template-columns: 1fr; }
  .ws-badge { border-left: none; padding-left: 0; }
}