/* ═══════════════════════════════════════════════════════════════════
   NAFA GLOBAL SERVICE V2 — style.css
   Inspiré de Delicefaso : clair, chaleureux, africain
   ════════════════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────────────────── */
:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #dcfce7;
  --orange: #ea580c;
  --orange-light: #ffedd5;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --cream: #fffbeb;
  --cream-2: #fef9ee;
  --dark: #1c1917;
  --dark-2: #292524;
  --text: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --ff: 'Outfit', sans-serif;
  --ff-display: 'Playfair Display', serif;
}

/* ─── RESET ───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--ff);
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .84rem;
  transition: var(--transition);
  border: 2px solid transparent;
  line-height: 1.2;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, .3);
}

.btn--call {
  background: var(--orange-light);
  color: var(--orange);
  border-color: var(--orange);
  font-weight: 700;
}

.btn--call:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--wa {
  background: #25d366;
  color: var(--white);
}

.btn--wa:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

/* ─── HEADER ──────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-weight: 800;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.logo__name em {
  font-style: normal;
  color: var(--green);
}

.logo__sub {
  font-size: .62rem;
  letter-spacing: .54em;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 850;
  margin-top: 4px;
  display: block;
  width: 100%;
  text-align: center;
}

/* .logo--footer .logo__badge override removed for uniformity */

.logo--footer .logo__name {
  color: var(--white);
}

.logo--footer .logo__sub {
  color: rgba(255, 255, 255, .4);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 7px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: .88rem;
  transition: color .2s, background .2s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--green);
  background: var(--green-light);
}

.nav__wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: #25d366;
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
  margin-left: 8px;
  transition: background .2s, transform .2s;
}

.nav__wa:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

.nav__wa i {
  font-size: 1.05rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 34px;
}

.burger span {
  display: block;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, #ecfdf5 50%, var(--cream-2) 100%);
  padding: 80px 0 0;
  overflow: hidden;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  margin-bottom: 60px;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 1;
  pointer-events: none;
}

.hero__blob--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #bbf7d0, transparent);
  top: -100px;
  right: -60px;
}

.hero__blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #fde68a, transparent);
  bottom: 60px;
  left: -60px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__title--accent {
  color: var(--green);
  display: block;
}

.hero__desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 28px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 24px;
  display: inline-flex;
  border: 1px solid var(--border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.hero__stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.hero__stat sup {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  vertical-align: super;
  line-height: 0;
}

.hero__stat span {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.hero__stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 460px;
}

.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.hero__card--main {
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__card-icon {
  font-size: 2rem;
}

.hero__card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__card-text strong {
  font-weight: 700;
  color: var(--dark);
  font-size: .92rem;
}

.hero__card-text span {
  font-size: .78rem;
  color: var(--text-muted);
}

.hero__card--float {
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero__card--float span {
  font-size: 1.1rem;
}

.hero__card--a {
  top: 0;
  left: 0;
  animation: float 3.5s ease-in-out infinite;
}

.hero__card--b {
  top: 40px;
  right: 0;
  animation: float 4s 1s ease-in-out infinite;
}

.hero__card--c {
  top: 120px;
  left: 40px;
  animation: float 3s .5s ease-in-out infinite;
}

.hero__card--d {
  top: 180px;
  right: 20px;
  animation: float 3.8s .8s ease-in-out infinite;
}

.hero__card--e {
  top: 290px;
  left: 10px;
  animation: float 4.2s .3s ease-in-out infinite;
}

.hero__card--f {
  top: 340px;
  right: 30px;
  animation: float 3.2s 1.2s ease-in-out infinite;
}

/* Hero wave */
.hero__wave {
  margin-top: 40px;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ─── FEATURES ────────────────────────────────────────────────────── */
.features {
  padding: 0 0 60px;
}

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

.feature {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  transition: transform .3s;
}

.feature:hover .feature__icon {
  transform: scale(1.15);
}

.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.feature p {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ─── SECTIONS COMMON ─────────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section--cream {
  background: var(--cream);
}

.section__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}

.section__pill {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section__sub {
  color: var(--text-muted);
  font-size: .95rem;
}

/* ─── SERVICES ────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-md);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c, var(--green));
}

.svc-card__image {
  height: 180px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.svc-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.svc-card:hover .svc-card__image img {
  transform: scale(1.1);
}

.svc-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.svc-card__body p {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c, var(--green));
  font-weight: 600;
  font-size: .83rem;
  margin-top: auto;
  transition: gap .2s;
}

.svc-card__cta:hover {
  gap: 10px;
}

.svc-card__cta i {
  font-size: .7rem;
}

/* ─── HOW TO ──────────────────────────────────────────────────────── */
.howto .section__header {
  margin-bottom: 48px;
}

.howto__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  background: var(--cream);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1.5px solid rgba(22, 163, 74, .15);
}

.howto__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.howto__step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, .3);
  transition: transform .3s;
}

.howto__step:hover .howto__step-num {
  transform: scale(1.1);
}

.howto__step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.howto__step p {
  font-size: .86rem;
  color: var(--text-muted);
}

.howto__step a {
  color: var(--green);
  font-weight: 600;
}

.howto__arrow {
  color: var(--green);
  font-size: 1.2rem;
  opacity: .4;
  padding-top: 14px;
  flex-shrink: 0;
}

/* ─── ABOUT ───────────────────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__left>.section__pill {
  margin-bottom: 12px;
}

.about__left .section__title {
  text-align: left;
  margin-bottom: 16px;
}

.about__text {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: .96rem;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.about__tags span {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 4px;
  border: 1px solid rgba(22, 163, 74, .2);
}

/* About card */
.about__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}

.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about__card-header {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.about__card-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about__card-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.about__card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about__card-row i {
  color: var(--green);
  font-size: .85rem;
  width: 16px;
}

.about__card-row a {
  color: var(--green);
  font-weight: 600;
}

.about__card-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 14px;
  border-radius: 4px;
  margin-top: 8px;
}

.about__services-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.about__svc-mini {
  background: var(--cream);
  border: 1px solid rgba(22, 163, 74, .15);
  border-radius: 10px;
  padding: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: background .2s, transform .2s;
}

.about__svc-mini:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────── */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.testi__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.testi__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi__card p {
  font-style: italic;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi__author strong {
  font-size: .88rem;
  color: var(--dark);
  display: block;
}

.testi__author span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ─── CONTACT ─────────────────────────────────────────────────────── */
.contact {
  background: var(--dark);
}

.contact .section__pill {
  background: rgba(22, 163, 74, .2);
  color: #86efac;
}

.contact .section__title {
  color: var(--white);
  text-align: left;
}

.contact>.container {
  padding: 0 24px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact__text>p {
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  margin-bottom: 28px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.contact__row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
}

.contact__row i {
  color: var(--green);
  font-size: .85rem;
  width: 18px;
}

.contact__row a {
  color: #86efac;
  font-weight: 600;
}

.contact__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Map placeholder */
.contact__map-placeholder {
  background: linear-gradient(135deg, #1e3a2f, #182d1f);
  border: 1.5px solid rgba(22, 163, 74, .25);
  border-radius: 20px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.contact__map-placeholder::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(22, 163, 74, .2);
  animation: ping 3s ease-in-out infinite;
}

.contact__map-placeholder::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed rgba(22, 163, 74, .35);
  animation: ping 3s .5s ease-in-out infinite;
}

@keyframes ping {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: .5;
  }
}

.map__pin {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(22, 163, 74, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.map__label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
}

.map__sub {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .4);
  font-size: .8rem;
}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  color: rgba(255, 255, 255, .6);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-top: 4px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}

.footer__socials a:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul li {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
}

.footer__info {
  gap: 12px;
}

.footer__info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer__info i {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__info a {
  color: #86efac;
}

.footer__info a:hover {
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
  padding: 20px 24px;
}

.footer__bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .25);
}

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: scale(.3);
  transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
}

.wa-float.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.wa-float:hover {
  transform: scale(1.1) !important;
}

/* ─── BACK TO TOP ─────────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 36px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(22, 163, 74, .3);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: scale(.3);
  transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
  border: none;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  animation: btBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes btBounce {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.back-top:hover {
  background: var(--green-dark);
  transform: scale(1.08) !important;
}

/* ─── TOAST ───────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--dark);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--green);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast i {
  color: var(--green);
}

/* ─── PARTICLES ───────────────────────────────────────────────────── */
.particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9000;
  animation: fly-away 1s ease-out forwards;
}

@keyframes fly-away {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }

  100% {
    transform: scale(0) translate(var(--tx), var(--ty));
    opacity: 0;
  }
}

/* ─── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ─── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero__visual {
    height: 200px;
    display: none;
  }

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

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

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

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

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

  .contact__map-placeholder {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav.open {
    display: flex;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    z-index: 999;
  }

  .nav__link {
    padding: 10px 14px;
    font-size: .95rem;
    width: 100%;
  }

  .nav__wa {
    margin: 8px 0 0;
    width: 100%;
    justify-content: center;
  }

  .burger {
    display: flex;
  }

  .hero {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .hero__title {
    font-size: 1.9rem;
  }

  .hero__stats {
    flex-direction: row;
    justify-content: space-around;
    padding: 14px 10px;
    width: 100%;
  }

  .hero__stat {
    padding: 0 10px;
  }

  .hero__stat strong {
    font-size: 1.3rem;
  }

  .hero__stat-sep {
    width: 1px;
    height: 30px;
  }

  .howto__steps {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }

  .howto__arrow {
    display: none;
  }

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    margin-bottom: 30px;
  }

  .contact__btns {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__ctas {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero__ctas .btn {
    width: 50%;
    padding: 10px 6px;
    font-size: .76rem;
    white-space: nowrap;
  }

  .contact__btns .btn {
    width: 50%;
    font-size: .74rem;
    padding: 10px 4px;
    white-space: nowrap;
  }
}