:root {
  --navy: #0b1220;
  --navy-soft: #111b2d;
  --blue: #2f6fed;
  --blue-light: #78a6ff;
  --cyan: #54d6d0;
  --white: #ffffff;
  --off-white: #f5f7fb;
  --text: #1b2433;
  --muted: #667085;
  --line: #e4e9f2;
  --shadow: 0 24px 65px rgba(11, 18, 32, 0.14);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img, svg {
  display: block;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(11, 18, 32, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(11, 18, 32, 0.96);
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 245px;
  height: auto;
}

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

.main-nav a {
  color: rgba(255,255,255,.82);
  font-size: .94rem;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav .nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(47,111,237,.28), transparent 29%),
    linear-gradient(135deg, #07101e 0%, #0d1930 55%, #101f3f 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  background: rgba(84,214,208,.12);
  top: 140px;
  right: -120px;
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  background: rgba(47,111,237,.15);
  left: -100px;
  bottom: -60px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dce8ff;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(84,214,208,.12);
}

.hero h1 {
  max-width: 760px;
  margin-top: 23px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.hero-text {
  max-width: 650px;
  margin-top: 25px;
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
}

.hero-text strong {
  color: white;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  fill: currentColor;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #4a82f4);
  box-shadow: 0 16px 30px rgba(47,111,237,.3);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
}

.button-light {
  color: var(--navy);
  background: white;
}

.hero-trust {
  display: flex;
  gap: 42px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-trust div {
  display: grid;
  gap: 2px;
}

.hero-trust strong {
  font-size: .94rem;
}

.hero-trust span {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  padding: 14px;
  border-radius: 30px;
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(15px);
}

.property-visual {
  position: relative;
  min-height: 430px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(85,137,245,.15), rgba(9,19,36,.1)),
    linear-gradient(145deg, #182845, #0d172a);
  overflow: hidden;
}

.property-visual::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(84,214,208,.12);
  top: -80px;
  right: -70px;
}

.property-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(5,10,20,.45), transparent);
}

.building {
  position: absolute;
  width: 255px;
  height: 265px;
  left: 50%;
  bottom: 55px;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #f8fafc, #cbd7e7);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 20px 30px 50px rgba(0,0,0,.24);
}

.roof {
  position: absolute;
  width: 275px;
  height: 35px;
  left: -10px;
  top: -22px;
  background: linear-gradient(135deg, #2f6fed, #1f53b8);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.floor {
  height: 88px;
  padding: 27px 25px 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.floor span {
  height: 42px;
  background: linear-gradient(180deg, #92c7ff, #4978a9);
  border: 6px solid #eef3f9;
  box-shadow: inset 0 0 12px rgba(0,0,0,.12);
}

.door {
  width: 50px;
  height: 76px;
  margin: 6px auto 0;
  background: #203251;
  border: 7px solid #eef3f9;
  border-bottom: 0;
}

.visual-badge {
  position: absolute;
  z-index: 3;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: white;
  font-size: .8rem;
  font-weight: 700;
  background: rgba(5,12,24,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.visual-badge span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #07101e;
  background: var(--cyan);
}

.quick-contact {
  padding: 24px 20px 15px;
}

.quick-contact p {
  color: rgba(255,255,255,.6);
  font-size: .86rem;
}

.quick-contact a {
  display: block;
  margin-top: 2px;
  color: white;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.quick-contact span {
  color: rgba(255,255,255,.45);
  font-size: .76rem;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.section-kicker {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-heading h2,
.about h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.section-heading p,
.about-panel > p {
  color: var(--muted);
}

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

.service-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 16px 45px rgba(14,30,58,.06);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47,111,237,.25);
  box-shadow: 0 24px 55px rgba(14,30,58,.11);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue);
  background: #edf3ff;
}

.icon-box svg,
.contact-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-top: 42px;
  font-size: 1.18rem;
}

.service-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 28px;
}

.about-panel,
.stats-card {
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 58px);
}

.about-panel {
  background: white;
  border: 1px solid var(--line);
}

.about-panel > p {
  margin-top: 22px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: .92rem;
}

.check-list span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0c675f;
  background: rgba(84,214,208,.2);
}

.stats-card {
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(84,214,208,.2), transparent 35%),
    linear-gradient(145deg, var(--navy), #152849);
  box-shadow: var(--shadow);
}

.stats-top {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.stats-top span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 800;
}

.stats-top strong {
  display: block;
  margin-top: 7px;
  font-size: 1.5rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.stat-row:last-child {
  border-bottom: 0;
}

.stat-number {
  color: rgba(255,255,255,.25);
  font-size: 1.65rem;
  font-weight: 800;
}

.stat-row p {
  margin-top: 4px;
  color: rgba(255,255,255,.56);
  font-size: .82rem;
}

.contact {
  background: white;
}

.contact-box {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  padding: clamp(36px, 6vw, 70px);
  color: white;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 120%, rgba(84,214,208,.23), transparent 28%),
    linear-gradient(135deg, #0b1220, #142848);
  overflow: hidden;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 19px;
  color: rgba(255,255,255,.64);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  color: white;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}

.contact-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border-radius: 13px;
  background: rgba(84,214,208,.1);
}

.contact-item small {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: .72rem;
}

.contact-item strong {
  display: block;
  margin-top: 2px;
  font-size: .9rem;
  overflow-wrap: anywhere;
}

footer {
  padding: 28px 0;
  background: #070d18;
  color: rgba(255,255,255,.55);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .76rem;
}

.footer-wrap img {
  width: 190px;
}

.footer-wrap a {
  color: rgba(255,255,255,.8);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  z-index: 990;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 35px rgba(0,0,0,.24);
  transition: transform .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .24s;
}

@media (max-width: 900px) {
  .menu-button {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: #0d1728;
    box-shadow: 0 24px 50px rgba(0,0,0,.3);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .main-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero-grid,
  .section-heading,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-card {
    max-width: 590px;
    width: 100%;
    margin-inline: auto;
  }

  .section-heading {
    gap: 18px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 28px;
  }

  .contact-box {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 26px, 1160px);
  }

  .site-header,
  .site-header.scrolled {
    background: rgba(11,18,32,.97);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 205px;
  }

  .main-nav {
    top: 70px;
    left: 13px;
    right: 13px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 68px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-text {
    font-size: .97rem;
  }

  .hero-actions,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 15px;
  }

  .property-visual {
    min-height: 360px;
  }

  .building {
    transform: translateX(-50%) scale(.82);
    transform-origin: bottom center;
  }

  .quick-contact a {
    font-size: 1.4rem;
  }

  .section {
    padding: 78px 0;
  }

  .service-card,
  .about-panel,
  .stats-card {
    padding: 28px;
  }

  .contact-box {
    padding: 30px 22px;
  }

  .contact-item {
    align-items: flex-start;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }
}
