* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --text: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --primary: #113f67;
  --primary-2: #1f5f8b;
  --accent: #d9e6f2;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228,231,236,0.8);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px var(--accent);
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover,
.mobile-menu a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-menu.open {
  display: flex;
}

.mobile-btn {
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(17, 63, 103, 0.22);
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 54px 0 36px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 38px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.hero h1,
.section h2 {
  margin: 0 0 18px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.9rem);
  max-width: 11ch;
}

.hero p,
.section-header p,
.section p,
.contact-card p,
.feature-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.point-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.point-title {
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}

.point-text {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.8);
}

.hero-card img,
.gallery-item img,
.feature-image img,
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 30px 0 0 90px;
}

.hero-card-small {
  width: 250px;
  height: 190px;
}

.hero-card-small.top {
  top: 0;
  left: 0;
}

.hero-card-small.bottom {
  right: 0;
  bottom: 30px;
}

.stats {
  padding: 20px 0 22px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--muted);
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.section-header {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-header h2,
.section h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.about-panel {
  display: grid;
  gap: 16px;
}

.about-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-item h3,
.service-card h3,
.contact-panel h3 {
  margin: 0 0 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  min-height: 250px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #eef5fb);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  grid-auto-rows: 250px;
}

.gallery-item {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-row: span 2;
}

.feature-strip-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.feature-image,
.contact-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.feature-image img,
.contact-image img {
  min-height: 420px;
}

.contact-card,
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.footer {
  padding: 28px 0 90px;
  border-top: 1px solid var(--line);
  background: #fff;
}

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

.footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #15a34a, #22c55e);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.35);
  z-index: 1001;
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .feature-strip-grid,
  .contact-grid,
  .services-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .hero-card-main {
    inset: 40px 0 0 40px;
  }
}

@media (max-width: 820px) {
  .nav,
  .topbar .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .two-col,
  .feature-strip-grid,
  .contact-grid,
  .stats-grid,
  .hero-points,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .hero-card-small {
    height: 220px;
  }

  .hero-card-main img {
    height: 340px;
    object-fit: cover;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item.large {
    grid-row: span 1;
  }

  .gallery-item img {
    height: 280px;
    object-fit: cover;
  }

  .feature-image,
  .contact-image,
  .feature-image img,
  .contact-image img {
    min-height: 280px;
  }

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


.desktop-wa { display: inline-flex; }

@media (max-width: 820px) {
  .desktop-wa { display: none; }
}
