:root {
  --bg: #f4fbf9;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #0f766e;
  --brand-2: #1d4ed8;
  --accent: #f97316;
  --line: #e2e8f0;
  --shadow-sm: 0 4px 14px rgba(15, 26, 50, 0.08);
  --shadow: 0 16px 44px rgba(10, 20, 60, 0.12);
  --shadow-lg: 0 28px 64px rgba(10, 20, 60, 0.18);
  --gradient: linear-gradient(135deg, var(--brand), var(--brand-2));
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Animated Blobs ── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  animation: floatBlob 10s ease-in-out infinite;
}
.blob-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.2), transparent 70%);
  top: -130px;
  left: -90px;
  animation-delay: 0s;
}
.blob-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.15), transparent 70%);
  bottom: -100px;
  right: -80px;
  animation-delay: -4s;
}
.blob-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.14),
    transparent 70%
  );
  top: 42%;
  left: 52%;
  animation-delay: -7s;
}
@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.06);
  }
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  background: rgba(247, 248, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(10, 20, 60, 0.1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo {
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.logo img {
  height: 52px;
  width: auto;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.28);
}
.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 1.06rem;
  line-height: 1;
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}
.nav-link {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.93rem;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.nav-link:hover {
  color: var(--brand);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--brand);
}

.nav-cta {
  background: var(--gradient);
  color: #fff;
  padding: 0.52rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    opacity 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.32);
}
.nav-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 118, 110, 0.42);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* ── Shared Utilities ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #115e59;
  background: linear-gradient(135deg, #ccfbf1, #dbeafe);
  border: 1px solid rgba(15, 118, 110, 0.22);
}
.center {
  text-align: center;
}
p.eyebrow.center {
  display: block;
  text-align: center;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}
h3 {
  margin-top: 0;
}
.section-lead {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 1.8rem;
  line-height: 1.75;
  font-size: 1rem;
}
.section {
  padding: 5.5rem 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 12px;
  padding: 0.84rem 1.35rem;
  font-weight: 700;
  font-size: 0.94rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.2s;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.44);
}
.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4);
}
.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
}
.btn-accent:hover {
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.48);
}
.btn-light {
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
}
.btn-light:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-light-dark {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn-light-dark:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ── Banner Slider ── */
.banner-slider {
  position: relative;
}

.slider-viewport {
  position: relative;
  overflow: hidden;
  height: 620px;
}
@media (max-width: 768px) {
  .slider-viewport {
    height: 520px;
  }
}
@media (max-width: 480px) {
  .slider-viewport {
    height: 480px;
  }
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Individual slide */
.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Ken Burns zoom on active slide bg */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease-out;
}
.slide.active .slide-bg {
  transform: scale(1);
}

/* Dark gradient overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.65) 0%,
    rgba(4, 47, 46, 0.55) 100%
  );
}

/* Slide content */
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.slide-copy {
  max-width: 680px;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease 0.35s,
    transform 0.65s ease 0.35s;
}
.slide.active .slide-copy {
  opacity: 1;
  transform: translateY(0);
}

.slide-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.38rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ccfbf1;
  margin-bottom: 1rem;
}
.slide-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}
.slide-highlight {
  background: linear-gradient(135deg, #67e8f9, #fdba74);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.slide-copy p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(240, 230, 235, 0.88);
  margin: 0 auto 1.8rem;
  max-width: 480px;
}
.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Glass button for slider */
.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 12px;
  padding: 0.84rem 1.35rem;
  font-weight: 700;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.1);
}
.slider-prev {
  left: 18px;
}
.slider-next {
  right: 18px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.55rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.3s ease;
  padding: 0;
}
.dot.active {
  background: #fff;
  width: 28px;
}

/* Slide progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width linear;
}

/* Stats bar */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(10, 20, 60, 0.07);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
}
.stats-inner article {
  text-align: center;
  flex: 1;
}
.stats-inner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 0.18rem;
  line-height: 1;
}
.stats-inner p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}
.stats-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── About ── */
.about {
  background: var(--surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about p {
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 1rem;
}
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.feature-card {
  border: 1px solid var(--line);
  background: linear-gradient(148deg, #f0fdfa, #eff6ff);
  border-radius: 18px;
  padding: 1.25rem;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 118, 110, 0.28);
}
.feature-icon {
  font-size: 1.7rem;
  margin-bottom: 0.55rem;
  display: block;
}
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.38rem;
}
.feature-card p {
  font-size: 0.91rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ── Services ── */
.services {
  background: linear-gradient(172deg, #ecfeff 0%, #eff6ff 100%);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2rem;
}
.service-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-img-wrap {
  position: relative;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}
.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.service-body {
  padding: 1.3rem;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}
.service-card p {
  color: var(--muted);
  line-height: 1.67;
  margin-bottom: 0.85rem;
  font-size: 0.93rem;
}
.service-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}
.service-btns .btn {
  flex: 1;
  justify-content: center;
  padding: 0.68rem 0.8rem;
  font-size: 0.88rem;
}
.btn-outline {
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: transparent;
  border-radius: 12px;
  font-weight: 700;
  transition:
    background 0.22s,
    color 0.22s,
    transform 0.22s;
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Process ── */
.process {
  background: var(--surface);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 2.6rem;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 1.8rem 1.1rem;
  background: linear-gradient(155deg, #f0fdfa, #eff6ff);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.process-step:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.step-num {
  font-family: "Inter", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 0.65rem;
}
.process-step h3 {
  font-size: 1.04rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}
.process-connector {
  flex: 0 0 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  margin-top: 4.8rem;
  position: relative;
  opacity: 0.5;
}
.process-connector::after {
  content: "›";
  position: absolute;
  right: -8px;
  top: -9px;
  color: var(--brand-2);
  font-size: 1rem;
  font-weight: 700;
}

/* ── Advantage / Why Us ── */
.advantage {
  background: linear-gradient(162deg, #eff6ff 0%, #ecfeff 100%);
}
.advantage h2 {
  margin-bottom: 2rem;
}
.advantage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Left column — checklist */
.advantage-text {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.check-list li {
  color: var(--muted);
  line-height: 1.65;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  margin-top: 0.15rem;
}

/* Centre column — image */
.advantage-img {
}
.advantage-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.advantage-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.advantage-img-wrap:hover img {
  transform: scale(1.04);
}
.advantage-img-tag {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.advantage-img-tag span {
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Right column — trust badges */
.advantage-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.trust-badge {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.trust-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.38rem;
}
.trust-badge strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}
.trust-badge p {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
}

/* ── Testimonials Slider ── */
.testimonials {
  background: linear-gradient(160deg, #ecfeff 0%, #eff6ff 100%);
}
.testimonials h2 {
  margin-bottom: 2.2rem;
}

.tslider-wrap {
  position: relative;
  padding: 0 56px;
}
.tslider-viewport {
  overflow: hidden;
  border-radius: 24px;
}
.tslider-track {
  display: flex;
  gap: 1.4rem;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Each card */
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 1.8rem 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.tc-quote {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.18;
  font-family: Georgia, serif;
  margin-bottom: -0.6rem;
}
.stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 0.9rem;
}
.testimonial-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.94rem;
  margin-bottom: 1.3rem;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.32);
}
.reviewer strong {
  display: block;
  font-size: 0.9rem;
}
.reviewer span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Testimonial slider arrows */
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
  z-index: 5;
}
.ts-arrow:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.36);
  transform: translateY(-50%) scale(1.1);
}
.ts-prev {
  left: 0;
}
.ts-next {
  right: 0;
}

/* Testimonial dots */
.ts-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.8rem;
}
.ts-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  padding: 0;
}
.ts-dot.active {
  background: var(--brand);
  width: 28px;
}

/* ── Gallery ── */
.gallery {
  background: linear-gradient(165deg, #f0fdfa 0%, #eff6ff 100%);
}

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  grid-column: span 4;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-video {
  grid-column: span 6;
}

.gallery-item video {
  background: #000;
}

/* ── CTA ── */
.cta-wrap {
  border-radius: 28px;
  background:
    radial-gradient(
      ellipse at top right,
      rgba(249, 115, 22, 0.24),
      transparent 48%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(15, 118, 110, 0.28),
      transparent 50%
    ),
    #052e2b;
  color: #eef2ff;
  padding: 3rem;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 32px 80px rgba(10, 20, 50, 0.35);
}
.cta-wrap h2 {
  color: #fff;
  margin-bottom: 0.6rem;
}
.cta-wrap .eyebrow {
  background: rgba(249, 115, 22, 0.2);
  color: #fed7aa;
  border-color: rgba(249, 115, 22, 0.35);
}
.cta-wrap p {
  color: rgba(200, 210, 240, 0.85);
  line-height: 1.72;
  margin-bottom: 0;
  font-size: 0.97rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ── Footer ── */
.site-footer {
  background: #042f2e;
  color: #cdeee9;
  padding: 3.2rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 0.85rem;
  font-size: 1rem;
}
.site-footer p {
  font-size: 0.9rem;
  line-height: 1.72;
  color: #99d8d0;
}
.footer-contact-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.footer-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d8f3ef;
  transition: background 0.2s;
}
.footer-pill:hover {
  background: rgba(255, 255, 255, 0.14);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  color: #99d8d0;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.copy {
  text-align: center;
  margin-top: 1.3rem;
  font-size: 0.84rem;
  color: #6cb2a8;
}

/* ── Floating Group ── */
.floating-group {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease;
}
.floating-btn:hover {
  transform: scale(1.13);
}
.floating-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.38);
}
.floating-call {
  background: var(--gradient);
  box-shadow: 0 8px 26px rgba(15, 118, 110, 0.42);
  animation: callRing 2.8s ease-in-out infinite;
}
@keyframes callRing {
  0%,
  100% {
    box-shadow: 0 8px 26px rgba(15, 118, 110, 0.42);
  }
  50% {
    box-shadow:
      0 8px 32px rgba(15, 118, 110, 0.68),
      0 0 0 10px rgba(15, 118, 110, 0.12);
  }
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.68s ease,
    transform 0.68s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1020px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.7rem);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    grid-column: span 6;
  }
  .gallery-video {
    grid-column: span 6;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .advantage-inner {
    grid-template-columns: 1fr;
  }
  .advantage-img-wrap img {
    height: 320px;
  }
  .advantage-badges {
    grid-template-columns: repeat(4, 1fr);
  }
  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-steps {
    flex-direction: column;
  }
  .process-connector {
    width: 2px;
    height: 2.2rem;
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
    flex: 0 0 2.2rem;
    margin: 0 auto;
  }
  .process-connector::after {
    content: "↓";
    bottom: -12px;
    top: auto;
    right: auto;
    left: -4px;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 72px;
    right: 4%;
    width: min(300px, 94%);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }
  .logo {
    gap: 0.48rem;
  }
  .logo-mark {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }
  .logo-text {
    font-size: 0.94rem;
  }
  .nav.open {
    display: flex;
  }
  .nav-link {
    padding: 0.62rem 0.6rem;
  }
  .nav-cta {
    text-align: center;
    padding: 0.72rem;
    border-radius: 12px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .gallery-item,
  .gallery-video {
    grid-column: span 1;
  }
  .gallery-item img,
  .gallery-item video {
    height: 220px;
  }
  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .advantage-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-img-wrap img {
    height: 260px;
  }
  .cta-wrap {
    padding: 2rem 1.5rem;
  }
  .section {
    padding: 4rem 0;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .advantage-inner {
    padding: 1.8rem;
  }
  /* Slider mobile tweaks */
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-prev {
    left: 10px;
  }
  .slider-next {
    right: 10px;
  }
  .slide-copy h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 600px) {
  .stats-inner {
    flex-wrap: wrap;
    gap: 0;
  }
  .stats-inner article {
    flex: 1 1 40%;
    padding: 1rem 0.5rem;
  }
  .stats-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .slide-copy h1 {
    font-size: 1.65rem;
  }
  .slide-eyebrow {
    font-size: 0.7rem;
  }
  .slide-copy p {
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-actions {
    gap: 0.6rem;
  }
  .btn {
    padding: 0.74rem 1.1rem;
    font-size: 0.88rem;
  }
}
