:root {
  --primary: #0b2545;
  --primary-2: #13315c;
  --accent: #10b3a3;
  --accent-2: #0891b2;
  --ink: #1c2a3a;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --line: #e2e8f0;
  --wa: #25d366;
  --wa-dark: #1eb056;
  --ring: rgba(16, 179, 163, .28);
  --shadow-sm: 0 1px 2px rgba(11,37,69,.06), 0 4px 12px rgba(11,37,69,.05);
  --shadow-md: 0 8px 24px rgba(11,37,69,.10);
  --shadow-lg: 0 18px 48px rgba(11,37,69,.16);
  --radius: 14px;
  --radius-sm: 9px;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --header-h: 92px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: none; }

h1, h2, h3, h4 { color: var(--primary); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.2rem; }

.container { width: min(1160px, 92%); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.06rem;
  line-height: 1.15;
}

.brand .logo-img {
  height: 84px;
  width: auto;
  flex: 0 0 auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.brand small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; }

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

.nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a, .nav button {
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--primary);
  background: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav a:hover, .nav button:hover { background: var(--bg-soft); color: var(--accent-2); }

.nav .has-sub { position: relative; }

.nav .has-sub .submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 70;
}

.nav .has-sub:hover .submenu,
.nav .has-sub:focus-within .submenu,
.nav .has-sub.open .submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.nav .submenu li { list-style: none; }

.nav .submenu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  text-align: center;
}

.nav .submenu a:hover { background: var(--bg-soft); }

.caret { transition: transform .18s ease; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid currentColor; }

.has-sub.open .caret { transform: rotate(180deg); }

.nav-cta {
  margin-left: 8px;
  padding: 11px 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover { filter: brightness(1.06); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.burger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: .2s; }

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(16,179,163,.35), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(8,145,178,.32), transparent 60%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 55%, #0a1d3d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero .container { position: relative; padding: 90px 0 100px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7ef0e2;
  border: 1px solid rgba(126,240,226,.35);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: rgba(16,179,163,.12);
}

.hero h1 { color: #fff; font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; }
.hero h1 span { background: linear-gradient(90deg, #4ade80, #7ef0e2); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.hero p.lead { max-width: 640px; color: rgba(255,255,255,.85); font-size: 1.08rem; margin: 0 0 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn svg { flex: 0 0 auto; }

.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 10px 24px rgba(16,179,163,.35); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(16,179,163,.45); }

.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--wa-dark); }

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-strip .stat b { display: block; font-size: 1.5rem; color: #fff; }
.hero-strip .stat span { color: rgba(255,255,255,.75); font-size: .85rem; }

.section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); }

.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--muted); margin: 0; }
.section-head .kicker { color: var(--accent-2); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; margin-bottom: 10px; display: block; }

.grid { display: grid; gap: 22px; }
.grid-cards { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-services { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-services { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(16,179,163,.45); }

.card .ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(16,179,163,.14), rgba(8,145,178,.14));
  color: var(--accent-2);
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .94rem; margin: 0 0 16px; flex: 1; }

.card .more { font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 5px; }
.card .more:hover { color: var(--accent-2); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tag {
  font-size: .78rem;
  font-weight: 500;
  color: var(--primary-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 999px;
}

.features { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature .ico {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--accent-2);
  background: rgba(16,179,163,.12);
}
.feature h3 { font-size: 1.02rem; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: .9rem; margin: 0; }

.cta-banner {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(16,179,163,.3), transparent 60%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 20px;
  color: #fff;
  padding: 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.8); margin: 0; max-width: 520px; }
.cta-banner .btn { flex: 0 0 auto; }

.contact-grid { display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }

.egs-photo { margin: 0 0 34px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.egs-photo img { width: 100%; height: auto; display: block; }

.contact-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.contact-item.address { grid-column: 1 / -1; }

.contact-item .ico {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(16,179,163,.14), rgba(8,145,178,.14));
  color: var(--accent-2);
}

.contact-item h3 { font-size: 1.06rem; margin-bottom: 6px; }
.contact-item p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; word-break: break-word; }
.contact-item a { color: var(--accent-2); font-weight: 600; }
.contact-item .action { margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; }

.map-wrap { margin-top: 34px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; }

.cta-zone { margin-top: 48px; }

.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  padding: 54px 0 150px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin: 0 0 8px; }
.page-hero p { color: rgba(255,255,255,.85); margin: 0; max-width: 640px; }

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 18px;
}

.breadcrumb a { color: #7ef0e2; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: .6; }

.main-lift { margin-top: -90px; position: relative; z-index: 5; padding-bottom: 72px; }

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.content-card h2 { margin: 1.2em 0 .5em; }
.content-card h2:first-child { margin-top: 0; }
.content-card p { color: var(--ink); margin: 0 0 1em; }
.content-card ul { margin: 0 0 1.2em; padding-left: 22px; }
.content-card li { margin-bottom: 8px; color: var(--ink); }
.content-card li::marker { color: var(--accent); }

.feature-list { list-style: none !important; padding-left: 0 !important; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; }
.feature-list .dot {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(16,179,163,.14);
  color: var(--accent-2);
  margin-top: 1px;
}

.dual { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .dual { grid-template-columns: 1.4fr 1fr; } }

.side-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.side-card h3 { margin-bottom: 14px; font-size: 1.05rem; }
.side-card .side-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 9px;
  color: var(--primary-2);
  font-size: .92rem;
  font-weight: 500;
}
.side-card .side-link:hover { background: #fff; color: var(--accent-2); box-shadow: var(--shadow-sm); }
.side-card .side-link.active { background: linear-gradient(135deg, rgba(16,179,163,.14), rgba(8,145,178,.14)); color: var(--accent-2); font-weight: 600; }

.quick-contact { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.quick-contact a { display: flex; align-items: center; gap: 10px; font-weight: 600; margin-bottom: 12px; }

.site-footer { background: #0a1d3d; color: rgba(255,255,255,.75); padding: 64px 0 0; }

.footer-grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); padding-bottom: 44px; }

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col p { font-size: .92rem; margin: 0 0 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.75); font-size: .92rem; }
.footer-col a:hover { color: #7ef0e2; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: .84rem; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: rgba(255,255,255,.55);}

.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .15s ease;
}

.fab a:hover { transform: scale(1.1); }

.fab .wa { background: var(--wa); position: relative; }
.fab .wa::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.55);
  animation: pulse 2s ease-out infinite;
}

.fab .call { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

@keyframes pulse {
  0% { transform: scale(.85); opacity: 1; }
  80% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 920px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-item.address, .contact-item.contact-last { grid-column: 1 / -1; }
  .burger { display: flex; }
  .nav > ul {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 16px 6% 40px;
    gap: 2px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
  }
  .nav.menu-open > ul { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav > ul > li > a, .nav > ul > li > button { width: 100%; padding: 14px 12px; font-size: 1.02rem; border-radius: 10px; justify-content: space-between; }
  .nav .has-sub .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(16,179,163,.35);
    border-radius: 0 10px 10px 0;
    background: var(--bg-soft);
    margin: 4px 0 8px 10px;
    max-height: 0;
    overflow: hidden;
    padding: 0 8px;
    transition: max-height .25s ease, padding .25s ease;
  }
  .nav .has-sub.open .submenu { max-height: 520px; padding: 8px; }
  .nav-cta { margin: 14px 0 0; justify-content: center; }
}

@media (max-width: 620px) {
  .hero .container { padding: 64px 0 74px; }
  .section { padding: 56px 0; }
  .content-card { padding: 26px 20px; }
  .cta-banner { padding: 30px 24px; }
  .main-lift { margin-top: -70px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-item.address, .contact-item.contact-last { grid-column: auto; }
  .contact-item { padding: 22px; }
}