:root {
  --ink: #172033;
  --muted: #687084;
  --paper: #fffaf4;
  --white: #ffffff;
  --sun: #ffd43d;
  --orange: #ff7a1a;
  --purple: #7c3cff;
  --pink: #f0448f;
  --teal: #16b7a6;
  --blue: #3569ff;
  --brand-gradient: linear-gradient(135deg, var(--orange), var(--pink), var(--purple), var(--blue), var(--teal));
  --shadow: 0 20px 45px rgba(22, 32, 51, 0.13);
  --soft-shadow: 0 14px 30px rgba(22, 32, 51, 0.09);
  --radius: 24px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 212, 61, 0.2), transparent 28rem),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 46%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(16px);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(23, 32, 51, 0.06);
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.08);
  backdrop-filter: blur(20px);
}

.navbar {
  width: min(1160px, calc(100% - 36px));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.28s ease;
}

.site-header.is-scrolled .navbar {
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 260px;
  height: 72px;
  object-fit: contain;
  transition: width 0.28s ease, height 0.28s ease, transform 0.28s ease;
}

.site-header.is-scrolled .brand img {
  width: 220px;
  height: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #26314a;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-gradient);
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: center;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue);
  background: rgba(53, 105, 255, 0.08);
  transform: translateY(-1px);
}

.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 14px;
  background: #f3f6fb;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

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

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

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: 34px 0 56px;
}

.hero-media {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.18), 0 0 45px rgba(240, 68, 143, 0.12);
  isolation: isolate;
  transform: translateX(-28px) rotate(-1deg);
  animation: heroFloat 6.5s ease-in-out infinite;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 122, 26, 0.13), rgba(22, 183, 166, 0.11));
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transform: scale(1.045);
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-content > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.about-text p,
.service-card p,
.step p,
.footer-brand p {
  color: var(--muted);
}

.hero-content > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(22, 32, 51, 0.16);
  filter: saturate(1.08);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #19c37d, var(--teal), var(--blue));
}

.btn-call {
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
}

.about,
.services,
.approach,
.contact {
  padding: 62px 0;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.section-heading {
  max-width: 670px;
}

.section-heading.centered {
  margin: 0 auto 30px;
  text-align: center;
}

.about-text {
  padding: 26px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
}

.about-text p {
  margin-bottom: 22px;
  font-size: 1.04rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 244, 0.88));
  box-shadow: 0 12px 24px rgba(22, 32, 51, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 68, 143, 0.2);
  box-shadow: var(--shadow);
}

.stat-card span {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: var(--brand-gradient);
  font-weight: 900;
}

.stat-card strong {
  display: block;
  line-height: 1.25;
}

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

.service-card,
.step,
.contact-card {
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--brand-gradient);
}

.service-card:hover,
.contact-card:hover {
  transform: translateY(-7px);
  border-color: rgba(53, 105, 255, 0.22);
  box-shadow: 0 24px 48px rgba(22, 32, 51, 0.15);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-size: 1.35rem;
  font-weight: 900;
}

.service-number {
  color: transparent;
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.service-card:nth-child(2n) .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: #42210b;
}

.service-card:nth-child(3n) .service-icon {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.service-card p,
.step p {
  margin-bottom: 0;
}

.approach {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 212, 61, 0.18), transparent 26rem),
    radial-gradient(circle at 90% 80%, rgba(240, 68, 143, 0.2), transparent 24rem),
    linear-gradient(135deg, #17345d, #12383d);
  color: #ffffff;
}

.approach-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.approach .eyebrow {
  color: var(--sun);
}

.approach .section-heading p:not(.eyebrow),
.approach .step p {
  color: rgba(255, 255, 255, 0.76);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.step {
  min-height: 244px;
  height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.step:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 48px rgba(0, 0, 0, 0.18);
}

.step span {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  color: #172033;
  font-size: 1.28rem;
  font-weight: 900;
}

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

.contact-card {
  min-height: 136px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.contact-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: var(--brand-gradient);
  font-style: normal;
}

.contact-card strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.contact-cta {
  justify-content: center;
  margin-top: 24px;
}

.site-footer {
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 122, 26, 0.16), transparent 22rem),
    radial-gradient(circle at 92% 20%, rgba(53, 105, 255, 0.18), transparent 20rem),
    #111827;
  color: #ffffff;
  padding: 42px 0 22px;
}

.map-section {
  width: 100%;
  height: 40vh;
  min-height: 300px;
  overflow: hidden;
  background: #eef2f7;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(1.08) contrast(1.02);
}

.footer-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand img {
  width: 188px;
  height: 68px;
  margin-bottom: 14px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
}

.footer-brand p {
  max-width: 370px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.24s ease, background 0.24s ease;
}

.social-links a:nth-child(1) {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
}

.social-links a:nth-child(2) {
  background: #1877f2;
}

.social-links a:nth-child(3) {
  background: #ff0033;
}

.social-links a:hover {
  transform: translateY(-3px);
  filter: saturate(1.1) brightness(1.04);
}

.social-links svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: #ffffff;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  width: min(1160px, calc(100% - 36px));
  margin: 28px auto 0;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-actions a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(22, 32, 51, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.floating-actions a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(22, 32, 51, 0.22);
}

.floating-actions img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateX(-28px) translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateX(-28px) translateY(-10px) rotate(-0.3deg);
  }
}

@media (max-width: 980px) {
  .hero,
  .about,
  .approach-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-media {
    min-height: 360px;
    order: 2;
    transform: none;
    animation: none;
  }

  .hero-media img {
    min-height: 360px;
  }

  .hero-content {
    order: 1;
  }

  .service-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .step {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .navbar,
  .section,
  .approach-inner,
  .footer-inner {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 176px;
    height: 58px;
  }

  .site-header.is-scrolled .brand img {
    width: 154px;
    height: 50px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(23, 32, 51, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .hero {
    gap: 28px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .hero-actions,
  .contact-cta {
    align-items: center;
    justify-content: flex-start;
  }

  .btn {
    width: auto;
    min-width: min(230px, 100%);
    max-width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 280px;
  }

  .about,
  .services,
  .approach,
  .contact {
    padding: 45px 0;
  }

  .about-text,
  .service-card,
  .contact-card {
    padding: 22px;
  }

  .service-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .floating-actions {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 8px;
  }

  .floating-actions a {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .floating-actions img {
    width: 26px;
    height: 26px;
  }

  .footer-bottom {
    width: min(100% - 28px, 1160px);
    flex-direction: column;
    gap: 4px;
  }

  .map-section {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 420px) {
  .navbar,
  .section,
  .approach-inner,
  .footer-inner {
    width: min(100% - 22px, 1160px);
  }

  .hero-media,
  .hero-media img {
    min-height: 235px;
  }

  .brand img {
    width: 150px;
    height: 54px;
  }

  .site-header.is-scrolled .brand img {
    width: 136px;
    height: 48px;
  }

  .contact-card strong {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
