:root {
  --bg: #050a14;
  --surface: #0b162a;
  --surface-2: #0f2040;
  --card: #132a52;
  --text: #e3eefe;
  --muted: #94a6c4;
  --muted2: #6e82a6;
  --line: rgba(255, 255, 255, .06);
  --brand: #0066ff;
  --brand-2: #3399ff;
  --brand-glow: rgba(0, 102, 255, 0.4);
  --good: #00e085;
  --shadow: 0 24px 60px -12px rgba(0, 0, 0, .5);
  --shadow-hover: 0 30px 70px -12px rgba(0, 0, 0, .6);
  --shadow: 0 24px 60px -12px rgba(0, 0, 0, .5);
  --shadow-hover: 0 30px 70px -12px rgba(0, 0, 0, .6);
  --radius: 20px;
  --radius-sm: 16px;
  --container: 1200px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.icon-sm {
  width: 16px;
  height: 16px
}

.icon-lg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  margin-bottom: 12px;
  color: var(--brand-2)
}


* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(0, 102, 255, 0.12), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(51, 153, 255, 0.08), transparent 40%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px
}

.section {
  padding: 90px 0;
  position: relative
}

.section-alt {
  background-color: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.section-services {
  background: linear-gradient(180deg, var(--bg), #070e1c)
}

.section-head {
  max-width: 820px;
  margin: 0 0 40px
}

/* Enhanced Typography */
h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff
}

h1 {
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -.03em;
  font-weight: 800
}

h2 {
  font-size: clamp(28px, 2.5vw, 42px);
  letter-spacing: -.02em;
  font-weight: 700
}

.h3 {
  font-size: 22px;
  font-weight: 700
}

.h4 {
  font-size: 16px;
  margin-bottom: 8px
}

.lead {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted)
}

.muted {
  color: var(--muted)
}

.small {
  font-size: 13px
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  z-index: 9999
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 20, .62);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(16, 179, 255, .20), rgba(11, 95, 255, .20));
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

.brand-mark .icon {
  width: 22px;
  height: 22px
}


.brand-name {
  display: block;
  font-weight: 700;
  letter-spacing: -.01em
}

.brand-tag {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px
}

.site-nav {
  margin-left: auto
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer
}

.nav-toggle:focus {
  outline: 2px solid rgba(16, 179, 255, .5);
  outline-offset: 2px
}

.nav-toggle-bars {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text)
}

.nav-toggle-bars::before {
  top: -6px
}

.nav-toggle-bars::after {
  top: 6px
}

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

.nav-menu a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px
}

.nav-menu a:hover {
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, .04)
}

.header-cta {
  display: flex;
  align-items: center
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap
}

.btn:hover {
  text-decoration: none
}

.btn:focus {
  outline: 2px solid rgba(16, 179, 255, .55);
  outline-offset: 2px
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 28px rgba(11, 95, 255, .22)
}

.btn-secondary {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12)
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .14);
  color: var(--text)
}

.btn-call {
  padding: 12px 14px
}

.btn-icon {
  font-size: 16px
}

/* Mobile call bar */
.mobile-callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  padding: 10px 12px;
  background: rgba(7, 11, 20, .78);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  gap: 10px
}

.mobile-callbar__btn {
  flex: 1;
  text-align: center;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06)
}

.mobile-callbar__btn.secondary {
  background: linear-gradient(135deg, rgba(11, 95, 255, .85), rgba(16, 179, 255, .75));
  border-color: transparent
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 26px;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(900px 380px at 18% 20%, rgba(16, 179, 255, .18), transparent 55%),
    radial-gradient(800px 420px at 85% 30%, rgba(11, 95, 255, .20), transparent 60%);
  opacity: .9
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px
}

.hero-bullets {
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--muted)
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 18px
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px
}

.trust-item {
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03)
}

.trust-title {
  display: block;
  font-weight: 800;
  font-size: 13px
}

.trust-sub {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 4px
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow)
}

.hero-card__top {
  padding: 18px 18px 0
}

.hero-card__body {
  padding: 14px 18px 10px
}

.hero-card__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, .10)
}

.info {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0
}

.info-label {
  color: var(--muted2);
  font-size: 12px;
  font-weight: 700
}

.info-value {
  color: var(--text);
  font-weight: 600
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, .10);
  margin: 10px 0
}

/* Split sections */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start
}

.visual-card {
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(700px 240px at 15% 0%, rgba(16, 179, 255, .14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow)
}

.visual-card__badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  font-weight: 800;
  font-size: 12px;
  color: var(--muted)
}

.visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  font-weight: 700;
  font-size: 12px;
  color: var(--muted)
}

.checklist {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted)
}

/* Services */
/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
  padding: 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff
}

.card p {
  margin: 0 0 10px;
  color: var(--muted)
}

.mini {
  margin: 0;
  padding-left: 18px;
  color: var(--muted2);
  font-size: 13px
}

.service-note {
  margin-top: 18px;
  border: 1px dashed rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, .02)
}

/* Why */
/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.why-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  padding: 24px;
  transition: all .3s ease;
}

.why-item:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border-color: rgba(255, 255, 255, .15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.why-item h3 {
  font-size: 16px;
  margin-bottom: 8px
}

.why-item p {
  margin: 0;
  color: var(--muted)
}

/* Testimonials */
/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.quote {
  margin: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-2);
  padding: 28px 24px;
  position: relative;
}

.quote:before {
  content: "“";
  font-size: 60px;
  color: rgba(255, 255, 255, .05);
  position: absolute;
  top: 10px;
  left: 14px;
  line-height: 1;
  font-family: serif
}

.quote blockquote {
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 600
}

.quote figcaption {
  color: var(--muted2);
  font-size: 13px
}

/* Areas */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px
}

.address-block {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  padding: 16px
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .02);
  box-shadow: var(--shadow)
}

.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 900px
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  padding: 0
}

/* FAQ Indicators */
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
  color: var(--muted2);
  transition: transform .3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none
}


.faq-content {
  padding: 0 16px 16px;
  color: var(--muted)
}

.faq-item[open] {
  background: rgba(255, 255, 255, .05)
}

/* CTA */
.cta {
  padding: 54px 0;
  background: linear-gradient(135deg, rgba(11, 95, 255, .25), rgba(16, 179, 255, .14));
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* Footer */
.footer {
  padding: 44px 0 90px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 18px;
  align-items: start
}

.footer-brand {
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 8px
}

.footer-title {
  font-weight: 800;
  margin-bottom: 10px
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px
}

.footer-links a {
  color: var(--muted)
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: none
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .10)
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #FFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  z-index: 1100;
  transition: all .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, .4);
}

/* Responsive */
@media (max-width: 980px) {

  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .cards,
  .why-grid,
  .testimonials {
    grid-template-columns: 1fr 1fr
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex
  }

  .nav-menu {
    position: absolute;
    right: 18px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    background: rgba(7, 11, 20, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    min-width: 220px;
    box-shadow: var(--shadow);
    display: none
  }

  .nav-menu.open {
    display: flex
  }

  .nav-menu a {
    padding: 10px 12px
  }

  .header-cta {
    display: none
  }

  .brand {
    min-width: auto
  }

  .trust-row {
    grid-template-columns: 1fr
  }

  .cards,
  .why-grid,
  .testimonials {
    grid-template-columns: 1fr
  }

  .section {
    padding: 56px 0
  }

  .mobile-callbar {
    display: flex
  }

  .footer {
    padding-bottom: 120px
  }

  .whatsapp-float {
    bottom: 90px;
    width: 50px;
    height: 50px;
    right: 20px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }
}

.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
}