:root {
  --blue-1: #0e4fb5;
  --blue-2: #1f8ee6;
  --green-1: #67a61a;
  --green-2: #83be2d;
  --dark: #0e1a2b;
  --text: #314156;
  --muted: #708199;
  --bg: #f5f9fc;
  --white: #ffffff;
  --line: rgba(14, 79, 181, 0.12);
  --shadow: 0 16px 45px rgba(10, 39, 84, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
  --header-h: 84px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbff 0%, #f4f8fb 100%);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 142, 230, 0.08);
  color: var(--blue-1);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-1), var(--blue-2));
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.03em;
  max-width: 620px;
}

.section p.lead,
.section-head p,
.text-muted {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 650px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(14, 79, 181, 0.08);
}

.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--dark);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.96rem;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--blue-1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: rgba(14, 79, 181, 0.08);
  border: 1px solid rgba(14, 79, 181, 0.12);
  gap: 6px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--blue-1);
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(31, 142, 230, 0.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-1), var(--blue-1));
  box-shadow: 0 16px 26px rgba(23, 106, 61, 0.18);
}

.btn-secondary {
  color: var(--blue-1);
  background: rgba(14, 79, 181, 0.08);
  border: 1px solid rgba(14, 79, 181, 0.12);
}

.btn-white {
  color: var(--dark);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.18);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(14, 79, 181, 0.12);
  background: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--dark);
}

.hero {
  padding: 46px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.45;
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(31, 142, 230, 0.14);
  top: -90px;
  left: -80px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: rgba(131, 190, 45, 0.12);
  right: -120px;
  bottom: -160px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--dark);
  margin-bottom: 18px;
  max-width: 800px;
}

.hero-copy p {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-point {
  background: var(--white);
  border: 1px solid rgba(14, 79, 181, 0.08);
  color: var(--dark);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  box-shadow: 0 10px 24px rgba(10, 39, 84, 0.06);
}

.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #dbefff;
  box-shadow: var(--shadow);
  min-height: 620px;
  isolation: isolate;
}

.hero-card video,
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 19, 38, 0.04), rgba(8, 19, 38, 0.55));
  z-index: 1;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(5, 33, 71, 0.18);
  padding: 18px 18px;
  border: 1px solid rgba(14, 79, 181, 0.1);
}

.floating-badge.top {
  top: 24px;
  left: 24px;
}

.floating-badge.bottom {
  right: 24px;
  bottom: 24px;
}

.floating-badge strong {
  display: block;
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.floating-badge span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 28px rgba(10, 39, 84, 0.08);
  border: 1px solid rgba(14, 79, 181, 0.08);
}

.stat-card strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--blue-1);
  display: block;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
  font-size: 0.95rem;
}

.trust-strip {
  padding-top: 10px;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f1f8ff);
  border: 1px solid rgba(14, 79, 181, 0.08);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 16px 35px rgba(10, 39, 84, 0.08);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  background: var(--white);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(14, 79, 181, 0.08);
  font-weight: 700;
  color: var(--dark);
}

.services-grid,
.why-grid,
.gallery-grid,
.contact-grid,
.about-grid,
.video-grid,
.results-grid,
.testimonials-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.why-card,
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(10, 39, 84, 0.08);
  border: 1px solid rgba(14, 79, 181, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.why-card:hover,
.testimonial-card:hover,
.before-card:hover,
.gallery-item:hover,
.video-card:hover,
.contact-box:hover,
.about-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(10, 39, 84, 0.12);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img,
.gallery-item:hover img,
.about-photo:hover img,
.video-card:hover img {
  transform: scale(1.06);
}

.service-body {
  padding: 22px;
}

.service-body h3,
.why-card h3,
.contact-box h3,
.video-content h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.service-body p,
.why-card p,
.gallery-overlay p,
.contact-box p,
.video-content p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.before-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.before-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(14, 79, 181, 0.08);
  box-shadow: 0 16px 35px rgba(10, 39, 84, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.before-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.before-body {
  padding: 20px 22px 22px;
}

.before-body h3 {
  color: var(--dark);
  font-size: 1.18rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.mini-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(103, 166, 26, 0.1);
  color: var(--green-1);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
  padding: 26px 24px;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 142, 230, 0.12), rgba(103, 166, 26, 0.12));
  color: var(--blue-1);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-photo {
  border-radius: 24px;
  overflow: hidden;
  min-height: 250px;
  box-shadow: 0 16px 35px rgba(10, 39, 84, 0.08);
  border: 1px solid rgba(14, 79, 181, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-copy ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}

.about-copy li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 600;
}

.about-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-1), var(--blue-2));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
}

.results-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 300px;
  box-shadow: 0 16px 35px rgba(10, 39, 84, 0.08);
  border: 1px solid rgba(14, 79, 181, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 79, 181, 0.08);
}

.gallery-overlay strong {
  display: block;
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 1rem;
}

.video-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.video-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 16px 35px rgba(10, 39, 84, 0.08);
  border: 1px solid rgba(14, 79, 181, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-card video,
.video-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.video-content {
  padding: 28px;
  background: linear-gradient(135deg, #ffffff, #f3f8ff);
  border-radius: 28px;
  box-shadow: 0 16px 35px rgba(10, 39, 84, 0.08);
  border: 1px solid rgba(14, 79, 181, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 28px;
}

.stars {
  color: #f5b301;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--dark);
  font-size: 1rem;
}

.cta {
  position: relative;
  overflow: hidden;
}

.cta-box {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-1), var(--green-1));
  box-shadow: 0 22px 50px rgba(10, 39, 84, 0.18);
  min-height: 420px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 36, 0.72), rgba(8, 18, 36, 0.28));
  z-index: 1;
}

.cta-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 48px;
  max-width: 760px;
}

.cta-content h2 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 18px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 26px;
  font-size: 1.05rem;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.contact-box,
.map-box {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 35px rgba(10, 39, 84, 0.08);
  border: 1px solid rgba(14, 79, 181, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(14, 79, 181, 0.04);
  border-radius: 18px;
  border: 1px solid rgba(14, 79, 181, 0.08);
}

.contact-list span.icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 142, 230, 0.16), rgba(103, 166, 26, 0.16));
  font-size: 1.1rem;
}

.contact-list strong {
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}

.contact-list a,
.contact-list p {
  color: var(--muted);
  line-height: 1.6;
  word-break: break-word;
}

.map-box iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 20px;
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f5faff, #eef6ff);
  border: 1px solid rgba(14, 79, 181, 0.08);
  box-shadow: 0 16px 35px rgba(10, 39, 84, 0.06);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(14, 79, 181, 0.08);
  color: var(--blue-1);
  font-weight: 700;
  transition: all var(--transition);
}

.footer-links a:hover {
  background: linear-gradient(135deg, var(--blue-1), var(--green-1));
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 240;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #17a74a);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 16px 32px rgba(26, 161, 77, 0.34);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35), 0 16px 32px rgba(26, 161, 77, 0.34); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 16px 32px rgba(26, 161, 77, 0.34); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 16px 32px rgba(26, 161, 77, 0.34); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-animate].show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .services-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .trust-panel,
  .about-grid,
  .results-grid,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(10, 39, 84, 0.12);
    border: 1px solid rgba(14, 79, 181, 0.08);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all var(--transition);
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-actions .btn {
    display: none;
  }

  .hero-stats,
  .trust-list,
  .gallery-grid,
  .before-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 76px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 26px 0 60px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .hero-card {
    min-height: 440px;
    border-radius: 26px;
  }

  .floating-badge {
    padding: 14px;
  }

  .services-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-photos {
    grid-template-columns: 1fr;
  }

  .cta-content,
  .contact-box,
  .map-box,
  .video-content,
  .trust-panel {
    padding: 24px;
  }

  .footer-box {
    padding: 22px;
  }
}