@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0B1F3A;
  --blue:   #1A4B8C;
  --accent: #00C48C;
  --accdark:#00A876;
  --mist:   #EEF3F9;
  --white:  #FFFFFF;
  --text:   #1C2B3A;
  --muted:  #637D96;
  --border: rgba(26,75,140,0.12);
  --r:      14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(11,31,58,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.logo-img--footer {
  height: 38px;
}
.nav-links {
  display: flex; align-items: center; gap: 24px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.7);
  font-size: 0.87rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--accent) !important;
  color: var(--navy) !important;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 700 !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
}
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy); padding: 24px 5% 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 199; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 14px 0;
  text-decoration: none; color: rgba(255,255,255,0.8);
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a.mm-cta {
  margin-top: 16px; border: none;
  background: var(--accent); color: var(--navy);
  text-align: center; border-radius: 10px;
  padding: 14px; font-weight: 700;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 120px 5% 72px;
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,75,140,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,75,140,0.22) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-glow {
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,140,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.breadcrumb a { text-decoration: none; color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,196,140,0.15);
  border: 1px solid rgba(0,196,140,0.35);
  border-radius: 99px; padding: 5px 14px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.page-tag::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent);
}
h1.page-h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 18px;
}
h1.page-h1 span { color: var(--accent); }
.page-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.62);
  font-weight: 400; line-height: 1.75;
  max-width: 560px;
}

/* ── SECTIONS ── */
.section { padding: 88px 5%; }
.section-sm { padding: 64px 5%; }
.section-tag {
  display: inline-block;
  font-size: 0.71rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--muted);
  font-weight: 400; line-height: 1.75;
  max-width: 580px; margin-bottom: 48px;
}
.section-title-white { color: #fff; }
.section-sub-white { color: rgba(255,255,255,0.55); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--navy);
  padding: 14px 26px; border-radius: 10px;
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,196,140,0.35);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accdark); transform: translateY(-1px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.28); color: #fff;
  padding: 14px 26px; border-radius: 10px;
  font-weight: 500; font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--navy); color: var(--navy);
  padding: 13px 24px; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; cursor: pointer; background: none;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 15px 28px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: background 0.2s, transform 0.15s;
}
.btn-wa:hover { background: #1eb858; transform: translateY(-1px); }
.btn-wa svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 34px 28px;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(11,31,58,0.09); border-color: rgba(26,75,140,0.22); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card-icon svg { width: 23px; height: 23px; stroke: var(--blue); stroke-width: 1.8; fill: none; }
.card-title {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em;
}
.card-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── FEATURE LIST ── */
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--text); line-height: 1.55;
}
.feat-ico {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,196,140,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.feat-ico svg { width: 11px; height: 11px; stroke: var(--accent); stroke-width: 2.5; fill: none; }

/* ── TWO COL LAYOUT ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.two-col-start { align-items: start; }

/* ── INFO BOX ── */
.info-box {
  background: var(--navy); border-radius: 20px; padding: 40px 36px;
  display: flex; flex-direction: column; gap: 24px;
}
.info-box h3 {
  font-size: 1.3rem; font-weight: 800;
  color: #fff; letter-spacing: -0.03em;
}
.info-box p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.info-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 12px;
}
.info-stat-num {
  font-size: 2rem; font-weight: 800; color: #fff;
  letter-spacing: -0.04em; line-height: 1;
}
.info-stat-num em { color: var(--accent); font-style: normal; }
.info-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.info-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--blue); padding: 72px 5%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-strip h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff; font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 12px; position: relative;
}
.cta-strip p {
  color: rgba(255,255,255,0.65); font-size: 1rem;
  max-width: 400px; margin: 0 auto 32px;
  line-height: 1.75; position: relative;
}
.cta-strip .btn-primary { position: relative; display: inline-flex; }

/* ── RELATED SERVICES ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.related-card {
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 24px; text-decoration: none;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  background: #fff;
}
.related-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,196,140,0.12); transform: translateY(-2px); }
.related-card-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--mist);
  display: flex; align-items: center; justify-content: center;
}
.related-card-icon svg { width: 21px; height: 21px; stroke: var(--blue); stroke-width: 1.8; fill: none; }
.related-card-title { font-size: 0.92rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.related-card-arrow { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-top: auto; }

/* ── CONTACT INFO ── */
.cinfo-list { display: flex; flex-direction: column; gap: 14px; }
.cinfo {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 12px;
  padding: 18px 22px; border: 1px solid var(--border);
}
.cinfo-ic {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cinfo-ic svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 1.8; fill: none; }
.cinfo-lbl { font-size: 0.71rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.cinfo-val { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
.cinfo-val a { text-decoration: none; color: var(--navy); }
.cinfo-val a:hover { color: var(--accdark); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 56px 5% 32px; }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 48px;
  justify-content: space-between; margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-tagline { font-size: 0.87rem; color: rgba(255,255,255,0.42); line-height: 1.65; margin-top: 14px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.40); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.62); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  text-decoration: none;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-dot {
  position: absolute; top: 1px; right: 1px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #ff4444; border: 2px solid #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 5%; }
  .section-sm { padding: 48px 5%; }
}
@media (max-width: 480px) {
  .page-hero { padding: 100px 5% 56px; }
  .info-stats-grid { grid-template-columns: 1fr; }
}
