:root {
  --blue: #0b6fd6;
  --blue-dark: #084a8f;
  --green: #8ed23a;
  --green-dark: #4a9d1f;
  --ink: #0b0f1a;
  --slate: #5d6674;
  --bg: #f5f7f4;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(10, 30, 60, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Archivo", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
  padding-top: 0;
}

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

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  z-index: 999;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background: linear-gradient(120deg, rgba(11, 111, 214, 0.18), rgba(142, 210, 58, 0.16), rgba(11, 111, 214, 0.12));
  background-size: 300% 300%;
  animation: pageGlow 18s ease-in-out infinite;
  z-index: -1;
}

.topbar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.85rem;
}

.topbar__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(142, 210, 58, 0.2);
}

.divider {
  opacity: 0.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  box-shadow: 0 12px 30px rgba(10, 30, 60, 0.08);
  width: 100%;
}

.nav {
  padding: 1.2rem 0;
}

.nav__content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  padding-left: 220px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-weight: 800;
  color: var(--white);
  background: transparent;
  overflow: visible;
}

.brand__mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  transform: none;
}

.brand--hero {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 200;
}

.brand--hero .brand__mark {
  width: 118px;
  height: 118px;
  position: absolute;
  left: 0;
  top: -2px;
}

.brand--hero .brand__mark--image img {
  width: 100%;
  height: 100%;
  transform: scale(1.05);
}

.brand--hero .brand__title {
  font-size: 1.5rem;
}

.brand--hero .brand__subtitle {
  font-size: 1.15rem;
}

.brand--hero > div {
  position: absolute;
  left: 125px;
  top: 0;
  white-space: nowrap;
}

.brand__title {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0b0f1a;
  text-shadow: none;
  white-space: nowrap;
}

.brand__subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #2bff88;
  text-shadow: 0 0 10px rgba(43, 255, 136, 0.6), 0 0 20px rgba(124, 255, 0, 0.4);
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  font-weight: 600;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(130deg, #7cff00, #2bff88);
  color: #06210f;
  box-shadow: 0 12px 28px rgba(124, 255, 0, 0.35), 0 0 16px rgba(43, 255, 136, 0.5);
}

.btn--light {
  background: var(--white);
  color: var(--blue-dark);
}

.btn--ghost {
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}

.hero .btn--ghost {
  border-color: rgba(120, 255, 170, 0.8);
  color: #eafff1;
}

.btn--outline-green {
  border: 2px solid #7cff00;
  color: #7cff00;
  background: transparent;
  box-shadow: 0 0 16px rgba(124, 255, 0, 0.35);
}

.btn--outline-green:hover {
  box-shadow: 0 0 22px rgba(124, 255, 0, 0.6);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(11, 111, 214, 0.25);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
}

.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  color: #f5f8ff;
  background: #000000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.95) 12%,
    rgba(0, 0, 0, 0.1) 22%,
    rgba(70, 255, 160, 0.8) 58%,
    rgba(0, 0, 0, 0.1) 80%,
    rgba(0, 0, 0, 0.95) 90%,
    rgba(0, 0, 0, 0.95) 100%
  );
  background-size: 200% 100%;
  animation: heroFlow 6.5s linear infinite;
  pointer-events: none;
  opacity: 0.85;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.45), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(0, 0, 0, 0.5), transparent 60%),
    radial-gradient(circle at 50% 85%, rgba(0, 0, 0, 0.6), transparent 60%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}


.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--blue-dark);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.5rem, 3vw + 1.5rem, 3.8rem);
  line-height: 1.1;
  margin: 1rem 0;
  color: #f3fff8;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.7);
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 520px;
}

.hero .eyebrow {
  color: #6bff9f;
  text-shadow: 0 0 10px rgba(60, 255, 150, 0.55), 0 0 18px rgba(40, 255, 140, 0.35);
  animation: heroTextShift 6.5s linear infinite;
}

.hero .lead {
  color: #eafff5;
  text-shadow: 0 0 10px rgba(60, 255, 150, 0.35), 0 0 18px rgba(40, 255, 140, 0.25);
  animation: heroTextShift 6.5s linear infinite;
}

.hero__stats p {
  color: #eafff5;
  text-shadow: 0 0 8px rgba(60, 255, 150, 0.3), 0 0 14px rgba(40, 255, 140, 0.2);
  animation: heroTextShift 6.5s linear infinite;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  align-items: center;
}

.hero__call {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-weight: 700;
  color: #7cff00;
}

.hero__call span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7cff00;
}

.hero__call a {
  color: #7cff00;
  text-shadow: 0 0 12px rgba(124, 255, 0, 0.6), 0 0 24px rgba(43, 255, 136, 0.45);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.hero__stats h3 {
  font-size: 1.6rem;
  color: #9bffbf;
  text-shadow: 0 0 12px rgba(60, 255, 150, 0.6), 0 0 24px rgba(40, 255, 140, 0.4);
  animation: heroTextShift 6.5s linear infinite;
}

.hero__visual {
  position: relative;
}

.hero__mobile-visual {
  display: none;
  margin: -3.2rem 0 -0.2rem;
}

.hero__mobile-visual img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  animation: floatFront 6s ease-in-out infinite;
  transform: translateY(-92px);
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__collage {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: radial-gradient(circle at 20% 20%, #eef5ff, transparent 55%),
    radial-gradient(circle at 85% 10%, #f0ffe9, transparent 45%);
  z-index: 1;
}

.hero__solo {
  height: 600px;
  border: 2px solid rgba(90, 255, 170, 0.35);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6), 0 0 24px rgba(70, 255, 160, 0.35);
}

.hero__solo img {
  transform: scale(1.05);
}

.hero__slider {
  display: grid;
  place-items: center;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 0.8s ease;
  z-index: 1;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero__layer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__layer--front {
  animation: floatFront 6s ease-in-out infinite;
}

.hero__dots {
  position: absolute;
  bottom: 16px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(11, 111, 214, 0.3);
  cursor: pointer;
}

.hero__dot.is-active {
  width: 26px;
  background: var(--blue);
}

.hero__card {
  position: absolute;
  top: -24px;
  left: -20px;
  background: #0D4C90;
  color: #eafff5;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 3;
}

.hero__card span {
  display: block;
  color: rgba(200, 255, 230, 0.7);
  font-weight: 400;
  font-size: 0.9rem;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--green);
  color: var(--white);
  padding: 1rem 1.6rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(74, 157, 31, 0.25);
  z-index: 3;
}

.hero__badge span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
}

.hero__wave {
  display: none;
}

.quote {
  padding: 4rem 0;
  background: var(--white);
}

.quote__content {
  border-left: 6px solid var(--blue);
  padding-left: 2rem;
}

.quote__text {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-style: italic;
}

.quote__author {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.callout {
  padding: 4.5rem 0;
  background: linear-gradient(120deg, #f4f9ff, #f6fff0);
}

.callout__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.callout__title h2 {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  color: var(--blue-dark);
}

.callout__copy p {
  margin-bottom: 1rem;
  color: var(--slate);
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  margin-top: 0.8rem;
}

.services {
  padding: 5rem 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.step:hover,
.highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(10, 30, 60, 0.16);
}

.choose {
  padding: 5rem 0;
  background: linear-gradient(110deg, #f1f6ff, #f4fff0);
}

.choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: center;
}

.choose__visual {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.choose__copy h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.choose__list {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0;
}

.process {
  padding: 5rem 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
}

.cta {
  padding: 4rem 0;
  background: linear-gradient(120deg, var(--blue), var(--green));
  color: var(--white);
}

.cta__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.highlights {
  padding: 5rem 0;
}

.alt-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.alt-highlight {
  background: rgba(8, 14, 18, 0.75);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(120, 255, 180, 0.15);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alt-highlight__media {
  position: relative;
}

.alt-highlight__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.alt-highlight__media span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(12, 20, 26, 0.8);
  color: #eafff5;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(120, 255, 180, 0.2);
}

.alt-highlight__copy {
  padding: 1.8rem;
  color: #e8fff2;
}

.alt-highlight__copy h3 {
  margin-bottom: 0.6rem;
}

.alt-highlight__copy p {
  color: rgba(220, 255, 235, 0.7);
  margin-bottom: 1rem;
}

.alt-highlight__copy ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: #eafff5;
  font-weight: 600;
}

.alt-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.gallery {
  padding: 5rem 0;
  background: var(--white);
}

.clients {
  padding: 5rem 0 6rem;
  background: linear-gradient(120deg, #f7fbff, #f6fff0);
}

.clients__slider {
  overflow: hidden;
  padding: 1.5rem 0;
  position: relative;
}

.clients__slider::before,
.clients__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients__slider::before {
  left: 0;
  background: linear-gradient(90deg, #f7fbff, transparent);
}

.clients__slider::after {
  right: 0;
  background: linear-gradient(270deg, #f7fbff, transparent);
}

.clients__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.clients__logo {
  background: transparent;
  border-radius: 18px;
  padding: 2.4rem 2.8rem;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-width: 640px;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
}

.clients__logo img {
  height: 270px;
  width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.clients__logo:hover {
  transform: translateY(-6px);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery__item {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(10, 30, 60, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  display: block;
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery__item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 48px rgba(10, 30, 60, 0.2);
}

.gallery__pagination {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.gallery__btn,
.gallery__page {
  border: none;
  background: var(--white);
  color: var(--blue-dark);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery__ellipsis {
  color: var(--blue-dark);
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.gallery__page.is-active {
  background: linear-gradient(130deg, var(--blue), var(--green));
  color: var(--white);
}

.gallery__btn:hover,
.gallery__page:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(10, 30, 60, 0.18);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.85);
  backdrop-filter: blur(6px);
}

.lightbox__content {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(90vw, 960px);
  height: min(90vh, 720px);
  display: grid;
  place-items: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.contact {
  padding: 5rem 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.contact__info h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.contact__details {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact__form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__form:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(10, 30, 60, 0.16);
}

.contact__card p {
  color: var(--slate);
}

.contact__pill {
  display: grid;
  gap: 0.6rem;
  font-weight: 600;
}

.contact__pill span {
  background: #f1f6ff;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
}

.contact__form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

input,
textarea {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #d6dee8;
  font-family: inherit;
}

.form__note {
  font-size: 0.9rem;
  color: var(--slate);
}

.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wa-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.55);
  backdrop-filter: blur(6px);
}

.wa-modal__panel {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(720px, 92vw);
  background: var(--white);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  height: max-content;
}

.wa-modal__content h2 {
  margin: 0.4rem 0 1rem;
  font-size: 2.2rem;
}

.wa-modal__grid {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}

.wa-modal__grid h4 {
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
}

.wa-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: #f1f3f7;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .wa-modal__panel {
    padding: 1.8rem;
  }
}

.footer {
  background: #0b1e2e;
  color: var(--white);
  padding: 2.5rem 0;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.7);
}

.section--watermark {
  position: relative;
  overflow: hidden;
}

.section--dark {
  background: #0a0f14;
  color: #eef6ff;
}

.section--dark .section-head h2,
.section--dark h3,
.section--dark h4 {
  color: #e9fff2;
}

.section--dark .eyebrow {
  color: rgba(120, 255, 180, 0.9);
}

.section--dark .service-card,
.section--dark .step,
.section--dark .highlight,
.section--dark .contact__form,
.section--dark .clients__logo {
  background: #101923;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.section--dark .contact__pill span {
  background: rgba(120, 255, 180, 0.08);
}

.section--dark .clients__slider::before {
  background: linear-gradient(90deg, #0a0f14, transparent);
}

.section--dark .clients__slider::after {
  background: linear-gradient(270deg, #0a0f14, transparent);
}

.section--watermark::before {
  content: "";
  position: absolute;
  width: min(420px, 65vw);
  height: min(420px, 65vw);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: url("assets/images/logo.png") center/contain no-repeat;
  opacity: 0.08;
  filter: saturate(1.1);
  transform: rotate(-6deg);
  animation: watermarkFloat 12s ease-in-out infinite;
  pointer-events: none;
}

.section--watermark > * {
  position: relative;
  z-index: 1;
}

.social-links {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.scroll-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(11, 111, 214, 0.15);
  color: var(--blue-dark);
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.scroll-top:hover {
  transform: translateY(-2px);
  background: rgba(11, 111, 214, 0.25);
}

.whatsapp-trigger {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  line-height: 0;
}

.whatsapp-trigger svg {
  width: 34px;
  height: 34px;
  display: block;
}

.whatsapp-chat {
  width: min(320px, 85vw);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  right: 0;
  bottom: 80px;
}

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

.whatsapp-chat__header {
  background: linear-gradient(120deg, #25d366, #1f9f50);
  color: var(--white);
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-chat__header h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.whatsapp-chat__header p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.whatsapp-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.whatsapp-chat__body {
  padding: 1.2rem;
  color: var(--slate);
  display: grid;
  gap: 0.8rem;
}

.whatsapp-chat__body ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--ink);
}

.whatsapp-chat__footer {
  padding: 1rem 1.2rem 1.4rem;
}

@media (max-width: 960px) {
  .nav__content {
    grid-template-columns: 1fr auto;
  }

  .nav__links,
  .nav .btn.btn--primary {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links.active {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(320px, 92vw);
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 220px;
    animation: menuDrop 0.35s ease;
    z-index: 300;
  }

  .nav__links.active::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(11, 111, 214, 0.15), rgba(142, 210, 58, 0.18));
    z-index: -1;
  }

  .nav__links.active a {
    font-weight: 700;
    padding: 0.35rem 0.2rem;
    text-align: center;
    width: 100%;
  }

  .hero__collage {
    height: 380px;
  }

  .hero__solo {
    height: 420px;
  }

  .hero__card {
    position: static;
    margin-bottom: 1rem;
  }

  .hero__badge {
    position: static;
    margin-top: 1rem;
  }

  .hero__visual {
    display: grid;
    gap: 1rem;
  }

  .choose__copy h2 {
    font-size: 2rem;
  }
}

@keyframes floatFront {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(12px) translateX(-8px);
  }
}

@keyframes heroGlow {
  0% {
    background-position: 0% 50%;
    opacity: 0.15;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.45;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.15;
  }
}

@keyframes heroSweep {
  0% {
    background-position: 100% 50%;
    opacity: 0.5;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.9;
  }
}

@keyframes heroFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: -200% 50%;
  }
}

@keyframes heroTextShift {
  0%,
  35%,
  100% {
    color: #7bffb5;
    text-shadow: 0 0 10px rgba(90, 255, 170, 0.45), 0 0 22px rgba(40, 255, 140, 0.35);
  }
  45%,
  70% {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.85);
  }
}

@keyframes pageGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes menuDrop {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes clientsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--track-shift, 50%)));
  }
}

@keyframes watermarkFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(12px) rotate(-6deg);
  }
}

@media (max-width: 640px) {
  .topbar__grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__content {
    padding-left: 0;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    overflow: visible;
  }

  .brand--hero {
    position: static;
    transform: none;
  }

  .brand--hero .brand__mark {
    width: 64px;
    height: 64px;
    position: static;
  }

  .brand--hero .brand__mark--image img {
    transform: none;
  }

  .brand--hero > div {
    position: static;
    white-space: normal;
    max-width: 60vw;
  }

  .brand--hero .brand__title {
    font-size: 1rem;
  }

  .brand--hero .brand__subtitle {
    font-size: 0.9rem;
  }

  .brand__title {
    white-space: normal;
    font-size: 0.9rem;
  }

  .nav__toggle {
    justify-self: end;
  }

  .hero {
    padding: 3.5rem 0 4rem;
  }

  .hero__actions {
    flex-direction: column;
  }

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

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

  .hero__collage {
    display: block;
    height: 320px;
  }

  .hero__solo {
    height: 360px;
  }

  .hero__mobile-visual {
    display: none;
  }

  .hero__dots {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__card,
  .hero__badge {
    display: none;
  }

  .quote__text {
    font-size: 1.05rem;
  }

  .section-head h2 {
    font-size: 1.8rem;
  }

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

  .contact__grid {
    gap: 2rem;
  }

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

  .gallery__pagination {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .gallery__btn,
  .gallery__page {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .clients__logo {
    min-width: 260px;
    padding: 1.2rem 1.4rem;
  }

  .clients__logo img {
    height: 120px;
  }

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }

  .scroll-top {
    display: flex;
  }

  .whatsapp-chat {
    bottom: 74px;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav__links.active {
    position: fixed;
    left: 0;
    right: 0;
    top: 88px;
    transform: none;
    width: 100%;
    text-align: center;
    justify-items: center;
  }

  .hero__card {
    padding: 0.9rem 1.1rem;
  }

  .hero__badge {
    padding: 0.8rem 1.2rem;
  }

  .service-card,
  .step,
  .highlight div,
  .contact__form {
    padding: 1.6rem;
  }

  .wa-modal__panel {
    border-radius: 18px;
  }
}
  .services__grid {
    grid-template-columns: 1fr;
  }
