:root {
  --white: #ffffff;
  --ink: #14213d;
  --muted: #5f6b7a;
  --line: #e8edf4;
  --soft: #f6f8fb;
  --navy: #0b1f3a;
  --blue: #1f5eff;
  --gold: #c89b3c;
  --shadow: 0 22px 55px rgba(12, 31, 58, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.section-pad { padding: 86px 0; }
.section-pad-sm { padding: 44px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: 0 14px 28px rgba(31,94,255,.22);
}

.brand-text { display: grid; line-height: 1.15; }
.brand-text small { color: var(--muted); font-size: 12px; }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover { background: var(--soft); color: var(--ink); }

.menu-toggle {
  display: none;
  border: 0;
  background: var(--soft);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 12px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(31,94,255,.12), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(200,155,60,.18), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .62;
}
.shape-one {
  right: -100px;
  top: 120px;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(31,94,255,.10);
}
.shape-two {
  left: -110px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 30px solid rgba(200,155,60,.15);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 38px;
  align-items: center;
  min-height: 600px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid rgba(31,94,255,.16);
  background: rgba(31,94,255,.06);
  color: var(--blue);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(46px, 7vw, 86px); letter-spacing: -2.5px; }
.hero h2 { margin-top: 14px; font-size: clamp(24px, 3.4vw, 42px); color: var(--navy); }
.hero-text { max-width: 650px; font-size: 20px; color: var(--muted); margin: 24px 0 0; }

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  box-shadow: 0 16px 32px rgba(31,94,255,.25);
}
.btn.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn.full { width: 100%; margin-top: 12px; }

.hero-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(232,237,244,.9);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
.card-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--soft);
  color: var(--blue);
  font-size: 42px;
  margin-bottom: 20px;
}
.hero-card h3 { font-size: 30px; }
.hero-card p { color: var(--muted); }
.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.hero-card li {
  padding: 12px 14px;
  background: var(--soft);
  border-radius: 16px;
  font-weight: 800;
}

.intro-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(12,31,58,.07);
  font-size: 18px;
}
.intro-box p { margin: 0; color: var(--muted); }
.intro-box strong { color: var(--ink); }

.section-heading { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.section-heading h2, .split-grid h2, .location-card h2, .contact-info h2 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -1.5px;
}
.section-heading p, .split-grid p, .location-card p, .contact-info p { color: var(--muted); font-size: 18px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(12,31,58,.07);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  bottom: -50px;
  border-radius: 999px;
  background: rgba(31,94,255,.08);
}
.service-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft);
  color: var(--blue);
  font-size: 28px;
  margin: 18px 0;
}
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--muted); margin: 0; }

.attention { background: linear-gradient(180deg, #fff, #f7f9fc); }
.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.feature-list { display: grid; gap: 14px; }
.feature-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(12,31,58,.06);
}
.feature-item span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 18px;
  font-weight: 900;
}
.feature-item p { margin: 0; font-weight: 800; color: var(--ink); }

.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy), #123b72);
  color: #fff;
  box-shadow: var(--shadow);
}
.location-card .eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); color: #fff; }
.location-card p { color: rgba(255,255,255,.78); }
.location-badge {
  min-width: 230px;
  min-height: 180px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.location-badge span { color: #f0c76e; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}
.contact-details {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.contact-details p { margin: 8px 0; color: var(--ink); }
.contact-panel {
  border-radius: 30px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-panel h3 { font-size: 28px; margin-bottom: 18px; }
.contact-panel ul { margin: 0 0 20px; padding-left: 18px; color: var(--muted); font-weight: 700; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #15803d, #22c55e);
  box-shadow: 0 16px 34px rgba(21,128,61,.32);
}

.footer {
  padding: 34px 0;
  background: #071629;
  color: #fff;
  text-align: center;
}
.footer p { margin: 6px 0; color: rgba(255,255,255,.76); }
.footer strong { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .location-card { flex-direction: column; align-items: flex-start; }
  .location-badge { width: 100%; }
}

@media (max-width: 720px) {
  .section-pad { padding: 62px 0; }
  .navbar { height: 72px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .hero-grid { min-height: auto; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .feature-item { grid-template-columns: 1fr; }
  .floating-whatsapp { left: 18px; right: 18px; text-align: center; }
}
