/* ===================================================
   MUNONGO.COM – Premium Strategic IT Portfolio CSS
   ===================================================*/

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary:        #6366f1;
  --primary-light:  #818cf8;
  --primary-dark:   #4f46e5;
  --accent:         #06b6d4;
  --accent2:        #10b981;
  --bg:             #0a0b14;
  --bg-card:        #111220;
  --bg-card2:       #161728;
  --border:         rgba(99,102,241,0.18);
  --text:           #e2e8f0;
  --text-muted:     #94a3b8;
  --text-dim:       #64748b;
  --white:          #ffffff;

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --gradient-card:    linear-gradient(145deg, #111220 0%, #161728 100%);
  --gradient-hero:    radial-gradient(ellipse at 60% 40%, rgba(99,102,241,0.18) 0%, transparent 60%),
                      radial-gradient(ellipse at 20% 80%, rgba(6,182,212,0.10) 0%, transparent 50%),
                      #0a0b14;

  /* Fonts */
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-display: 'Syne', sans-serif;

  /* Sizes */
  --header-h:   4.5rem;
  --radius:     1rem;
  --radius-sm:  0.5rem;
  --radius-lg:  1.5rem;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 0.2s var(--ease);
  --med:  0.4s var(--ease);
  --slow: 0.7s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

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

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }

/* ===== LAYOUT ===== */
.bd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.l-main { overflow: hidden; }
.section { padding: 6rem 0; }

/* ===== SECTION HEADER ===== */
.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--med);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(99,102,241,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99,102,241,0.5);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(99,102,241,0.06);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER / NAV ===== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,11,20,0.85);
  border-bottom: 1px solid var(--border);
  transition: background var(--med);
}
.l-header.scrolled {
  background: rgba(10,11,20,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-accent {
  color: var(--primary-light);
}
.nav__list {
  display: flex;
  gap: 0.25rem;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--fast);
  position: relative;
}
.nav__link:hover,
.nav__link.active-link {
  color: var(--white);
  background: rgba(99,102,241,0.1);
}
.nav__link.active-link { color: var(--primary-light); }
.nav__toggle { display: none; font-size: 1.5rem; color: var(--text); cursor: pointer; }
.nav__close { display: none; }

/* ===== HOME ===== */
.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);   /* fallback si image absente */
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
}

/* Particles canvas */
.home__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Badge */
.home__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 1.2rem;
  width: fit-content;
}
.home__badge i { font-size: 1rem; }

.home__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.home__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 480px;
  line-height: 1.8;
}

/* Tags */
.home__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  color: var(--accent);
}

.home__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Stats */
.home__stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat span { color: var(--primary-light); font-size: 1.5rem; font-weight: 800; }
.stat p { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; }
.stat__divider { width: 1px; height: 40px; background: var(--border); }

/* Visual / Photo */
.home__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.home__img-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
}
.home__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(99,102,241,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}
/* Hero photo backdrop */
.home__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.home__backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.4) brightness(0.28);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.home:hover .home__backdrop-img {
  transform: scale(1.08);
}
.home__backdrop-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,11,20,0.88) 0%, rgba(10,11,20,0.55) 45%, rgba(10,11,20,0.82) 100%),
    radial-gradient(ellipse at 60% 40%, rgba(99,102,241,0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(6,182,212,0.08) 0%, transparent 50%);
}

.home__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  border: 3px solid rgba(99,102,241,0.5);
  position: relative;
  z-index: 1;
  filter: grayscale(10%);
}

/* Orbiting icons */
.home__orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  border-radius: 50%;
  border: 1px dashed rgba(99,102,241,0.2);
  animation: orbit-spin 12s linear infinite;
  z-index: 2;
}
.home__orbit--2 { animation-duration: 18s; animation-direction: reverse; border-color: rgba(6,182,212,0.2); }
.home__orbit--3 { width: 115%; height: 115%; top: -7.5%; left: -7.5%; animation-duration: 24s; border-color: rgba(16,185,129,0.2); }
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orbit__icon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1rem;
  animation: orbit-counter 12s linear infinite;
}
.home__orbit--2 .orbit__icon { animation-duration: 18s; animation-direction: reverse; color: var(--accent); }
.home__orbit--3 .orbit__icon { animation-duration: 24s; color: var(--accent2); }
@keyframes orbit-counter { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(-360deg); } }

/* Social links */
.home__social { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--fast);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.social-link--wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}

/* Scroll down */
.home__scroll {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 0 1.5rem;
}
.scroll-down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: bounce-scroll 2s ease-in-out infinite;
}
.scroll-down i { font-size: 1.4rem; }
@keyframes bounce-scroll {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ===== ABOUT ===== */
.about { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about__container {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
}
.about__img-side { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.about__img-frame {
  position: relative;
  width: 260px;
}
.about__img-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  filter: grayscale(20%);
}
.about__img-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.about__card-info {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.info-item i { color: var(--primary-light); font-size: 1.1rem; }

.about__name { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.25rem; }
.about__role {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.about__text { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.97rem; line-height: 1.85; }

.about__highlights { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
.highlight-item i { color: var(--accent2); font-size: 1.1rem; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services { background: var(--bg); }

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

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--med);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--med);
  border-radius: var(--radius);
  z-index: 0;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(99,102,241,0.2); }
.service-card:hover::before { opacity: 0.04; }
.service-card > * { position: relative; z-index: 1; }

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.service-card__icon--blue   { background: rgba(99,102,241,0.15); color: var(--primary-light); }
.service-card__icon--purple { background: rgba(168,85,247,0.15); color: #c084fc; }
.service-card__icon--green  { background: rgba(16,185,129,0.15); color: var(--accent2); }
.service-card__icon--orange { background: rgba(249,115,22,0.15); color: #fb923c; }
.service-card__icon--teal   { background: rgba(6,182,212,0.15);  color: var(--accent); }
.service-card__icon--pink   { background: rgba(236,72,153,0.15); color: #f472b6; }
.service-card__icon--indigo { background: rgba(79,70,229,0.15);  color: #818cf8; }
.service-card__icon--red    { background: rgba(239,68,68,0.15);  color: #f87171; }

.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.7rem; color: var(--white); }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.service-card__list { display: flex; flex-direction: column; gap: 0.4rem; }
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.service-card__list i { color: var(--accent2); font-size: 0.9rem; }

/* CTA card */
.service-card--cta {
  background: linear-gradient(135deg, rgba(99,102,241,0.15) 0%, rgba(6,182,212,0.1) 100%);
  border-color: rgba(99,102,241,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__cta-inner { text-align: center; }
.service-card__cta-inner i { font-size: 2.5rem; color: var(--primary-light); margin-bottom: 1rem; }
.service-card__cta-inner h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card__cta-inner p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ===== SKILLS ===== */
.skills { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.skills__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.skills__category { margin-bottom: 2rem; }
.skills__category-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}

.skill-bar { margin-bottom: 1rem; }
.skill-bar__head {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.skill-bar__head span:last-child { color: var(--primary-light); }
.skill-bar__track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  overflow: hidden;
}
.skill-bar__fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: var(--gradient-primary);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.skill-bar__fill.animated { width: var(--w); }

/* Tech Badges */
.tech-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tech-badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  color: var(--primary-light);
  transition: all var(--fast);
}
.tech-badge:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ===== WORK ===== */
.work { background: var(--bg); }

.work__filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--fast);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--med);
}
.work-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 16px 50px rgba(99,102,241,0.2); }

.work-card__img,
.work-card__svg { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--bg-card2); }

.work-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--slow); }
.work-card:hover .work-card__img img { transform: scale(1.08); }

.work-card__svg svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform var(--slow);
}
.work-card:hover .work-card__svg svg { transform: scale(1.03); }


.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,11,20,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--fast);
}
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--fast);
}
.work-card__link:hover { transform: scale(1.1); }

.work-card__info { padding: 1.25rem; }
.work-card__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  background: rgba(99,102,241,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  margin-bottom: 0.6rem;
}
.work-card__info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.work-card__info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Placeholder cards */
.work-card--placeholder { display: flex; }
.work-card__placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, rgba(6,182,212,0.04) 100%);
  min-height: 240px;
}
.work-card__placeholder i { font-size: 2.5rem; color: var(--primary-light); opacity: 0.6; margin-bottom: 0.75rem; }
.work-card__placeholder h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.work-card__placeholder p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1rem; }
.work-card__status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-card); border-top: 1px solid var(--border); }

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 1rem; }

.contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent2);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 0.5rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent2);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(16,185,129, 0.4);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129, 0); }
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: border-color var(--fast);
}
.contact__info-card:hover { border-color: var(--primary); }
.contact__info-card > i { font-size: 1.4rem; color: var(--primary-light); margin-top: 2px; }
.contact__info-card h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact__info-card a, .contact__info-card span { font-size: 0.9rem; color: var(--text); }
.contact__info-card a:hover { color: var(--primary-light); }

.contact__social { padding: 0.5rem 0; }
.contact__social p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.contact__social-links { display: flex; gap: 0.5rem; }

/* Form Container & Mode Switcher */
.contact__form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card2);
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  gap: 0.35rem;
}
.form__type-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: calc(var(--radius-sm) - 2px);
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--fast);
}
.form__type-btn i { font-size: 1.1rem; }
.form__type-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}

.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__group label { font-size: 0.83rem; font-weight: 600; color: var(--text-muted); }

.form__input {
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--fast), box-shadow var(--fast);
  width: 100%;
  outline: none;
}
.form__input::placeholder { color: var(--text-dim); }
.form__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.form__select { -webkit-appearance: none; appearance: none; cursor: pointer; }
textarea.form__input { resize: vertical; min-height: 110px; }

/* RDV Box */
.form__rdv-box {
  background: rgba(99,102,241,0.05);
  border: 1px dashed rgba(99,102,241,0.3);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

.form__time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.slot-btn {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--fast);
}
.slot-btn:hover, .slot-btn.active {
  border-color: var(--primary-light);
  color: var(--white);
  background: rgba(99,102,241,0.2);
}
.slot-btn.active {
  background: var(--primary);
  border-color: var(--primary);
}

.form__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.btn--wa {
  border-color: rgba(37,211,102,0.4);
  color: #25d366;
}
.btn--wa:hover {
  background: rgba(37,211,102,0.1);
  border-color: #25d366;
  color: #25d366;
}

.form__feedback {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}
.form__feedback.success { display: block; color: var(--accent2); background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); }
.form__feedback.error   { display: block; color: #f87171; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); }

/* ===== FOOTER ===== */
.footer {
  background: #07080f;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 1.25rem;
}
.footer__social { display: flex; gap: 0.5rem; }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer__col h5 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a { font-size: 0.88rem; color: var(--text-dim); transition: color var(--fast); }
.footer__col a:hover { color: var(--primary-light); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
  :root { --header-h: 4rem; }

  /* Nav mobile */
  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #0d0e1c;
    border-left: 1px solid var(--border);
    padding: 6rem 2rem 2rem;
    transition: right var(--med);
    z-index: 101;
    display: flex;
    flex-direction: column;
  }
  .nav__menu.show { right: 0; }
  .nav__list { flex-direction: column; gap: 0.25rem; }
  .nav__link { font-size: 1rem; display: block; padding: 0.75rem 1rem; }
  .nav__toggle { display: flex; }
  .nav__close {
    display: flex;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
  }

  /* Home */
  .home__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-top: 3rem;
    justify-items: center;
  }
  .home__data {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .home__badge, .home__cta, .home__tags { justify-content: center; }
  .home__title {
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    width: 100%;
  }
  .home__subtitle { margin: 0 auto 1.5rem; text-align: center; max-width: 100%; }
  .home__stats { justify-content: center; flex-wrap: wrap; }
  .home__visual { order: -1; align-items: center; }
  .home__img-wrapper { width: 220px; height: 220px; }
  .home__social { justify-content: center; }
  .home__cta { justify-content: center; }

  /* About */
  .about__container { grid-template-columns: 1fr; gap: 2rem; }
  .about__img-side { width: 100%; }

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

  /* Skills */
  .skills__container { grid-template-columns: 1fr; }

  /* Work */
  .work__grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact__container { grid-template-columns: 1fr; gap: 2rem; }
  .form__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media screen and (max-width: 480px) {
  .section { padding: 4rem 0; }
  .home__container { padding-top: 2rem; gap: 1.5rem; }
  .home__img-wrapper { width: 180px; height: 180px; }
  .home__title {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
    text-align: center;
    line-height: 1.25;
  }
  .home__subtitle { font-size: 0.95rem; }
  .home__stats { flex-direction: row; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .home__cta { flex-direction: column; align-items: center; gap: 0.75rem; }
  .home__cta .btn { width: 100%; max-width: 280px; justify-content: center; }
  .stat__divider { display: none; }
  .footer__links { grid-template-columns: 1fr; }
  .clients__track { gap: 1rem; }
  .clients__card { min-width: 140px; padding: 1rem; }
}

/* ===== CLIENTS / REFERENCES ===== */
.clients {
  background: var(--bg);
  padding: 5rem 0;
  overflow: hidden;
}
.clients .section__header { margin-bottom: 3rem; }

.clients__marquee-wrapper {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-bottom: 3rem;
}

.clients__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.clients__track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clients__card {
  min-width: 180px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--med);
  flex-shrink: 0;
  cursor: default;
  text-align: center;
}
.clients__card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99,102,241,0.18);
  background: linear-gradient(145deg, rgba(99,102,241,0.08) 0%, rgba(6,182,212,0.05) 100%);
}
.clients__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.clients__card-icon--green  { background: rgba(16,185,129,0.15);  color: var(--accent2); }
.clients__card-icon--blue   { background: rgba(99,102,241,0.15);  color: var(--primary-light); }
.clients__card-icon--teal   { background: rgba(6,182,212,0.15);   color: var(--accent); }
.clients__card-icon--orange { background: rgba(249,115,22,0.15);  color: #fb923c; }
.clients__card-icon--pink   { background: rgba(236,72,153,0.15);  color: #f472b6; }
.clients__card-icon--purple { background: rgba(168,85,247,0.15);  color: #c084fc; }
.clients__card-icon--indigo { background: rgba(79,70,229,0.15);   color: #818cf8; }
.clients__card-icon--red    { background: rgba(239,68,68,0.15);   color: #f87171; }

.clients__card-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.clients__card-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.clients__card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  color: var(--primary-light);
}

/* Featured client grid */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.clients__featured-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--med);
}
.clients__featured-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99,102,241,0.15);
}
.clients__featured-card .clients__card-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.clients__featured-card .clients__card-content { flex: 1; }
.clients__featured-card .clients__card-name {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.clients__featured-card .clients__card-desc {
  font-size: 0.83rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}
.clients__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.clients__module-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  color: var(--accent);
}

.clients__cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(6,182,212,0.05) 100%);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-lg);
}
.clients__cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 768px) {
  .clients__grid { grid-template-columns: 1fr; }
  .clients__featured-card { flex-direction: row; }
}
@media screen and (max-width: 480px) {
  .clients__grid { gap: 1rem; }
  .clients__featured-card { flex-direction: column; }
  .clients__featured-card .clients__card-icon { margin-top: 0; }
}

/* ===== ANIMATIONS (ScrollReveal fallback) ===== */
.sr-hidden {
  opacity: 0;
  transform: translateY(30px);
}

/* ===== CONSULTATION B2B SECTION ===== */
.consultation {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Full-bleed photo backdrop */
.consultation__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.consultation__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.6) brightness(0.45);
  transform: scale(1.04);
}
.consultation__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,11,20,0.92) 0%, rgba(10,11,20,0.70) 50%, rgba(10,11,20,0.88) 100%),
    linear-gradient(to right, rgba(99,102,241,0.12) 0%, transparent 60%);
}

/* Inner container */
.consultation__inner {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Exclusive badge */
.consultation__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.35);
  border-radius: 2rem;
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
}
.consultation__badge i { font-size: 1rem; }

/* Two-column layout */
.consultation__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left text */
.consultation__header { text-align: left; margin-bottom: 2rem; }
.consultation__header .section__tag { margin-left: 0; }

.consultation__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.consult-feat {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: rgba(17,18,32,0.6);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: all var(--med);
}
.consult-feat:hover {
  border-color: rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.08);
  transform: translateY(-3px);
}

.consult-feat__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.consult-feat__icon--purple { background: rgba(99,102,241,0.2);  color: #818cf8; }
.consult-feat__icon--blue   { background: rgba(59,130,246,0.2);  color: #60a5fa; }
.consult-feat__icon--teal   { background: rgba(6,182,212,0.2);   color: #22d3ee; }
.consult-feat__icon--green  { background: rgba(16,185,129,0.2);  color: #34d399; }

.consult-feat h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.consult-feat p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.consultation__cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.consultation__cta-row .btn--wa {
  width: auto;
  flex: 1;
  min-width: 180px;
}
.consultation__cta-row .btn--primary {
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

/* Right photo side */
.consultation__photo-side {
  position: relative;
}

.consultation__photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.consultation__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(99,102,241,0.25);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(99,102,241,0.1),
    inset 0 1px 0 rgba(255,255,255,0.05);
  display: block;
}

/* Badge on the photo */
.consultation__photo-badge {
  position: absolute;
  bottom: -1.2rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: rgba(17,18,32,0.92);
  border: 1px solid rgba(99,102,241,0.35);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.consultation__photo-badge > i {
  font-size: 1.5rem;
  color: var(--primary-light);
}
.consultation__photo-badge .badge-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.consultation__photo-badge .badge-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Floating stat chips */
.consultation__stat {
  position: absolute;
  right: -1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 1.3rem;
  background: rgba(17,18,32,0.9);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  text-align: center;
  min-width: 110px;
}
.consultation__stat--top    { top: 2.5rem; }
.consultation__stat--bottom { bottom: 5rem; }
.consultation__stat .stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.consultation__stat .stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Responsive */
@media screen and (max-width: 968px) {
  .consultation__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .consultation__photo-side { order: -1; }
  .consultation__photo { height: 380px; }
  .consultation__stat--top    { right: -0.5rem; }
  .consultation__stat--bottom { right: -0.5rem; }
  .consultation__features { grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width: 600px) {
  .consultation__features { grid-template-columns: 1fr; }
  .consultation__stat { right: 0.5rem; }
  .consultation__photo { height: 280px; }
  .consultation__cta-row { flex-direction: column; }
  .consultation__cta-row .btn--wa,
  .consultation__cta-row .btn--primary { min-width: unset; width: 100%; }
  .consultation__photo-badge { left: 0.75rem; right: 0.75rem; }
}

/* ===== WHATSAPP BUTTON VARIANTS ===== */
.btn--wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--med);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  width: 100%;
}
.btn--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  color: #ffffff;
  background: linear-gradient(135deg, #20ba5a 0%, #0e7a6e 100%);
}
.btn--wa i { font-size: 1.25rem; }

.btn--wa-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(37, 211, 102, 0.08);
  color: #25d366;
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--med);
  width: 100%;
}
.btn--wa-outline:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25d366;
  color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}
.btn--wa-outline i { font-size: 1.2rem; }

/* WhatsApp tab button */
.form__type-btn--wa { }
.form__type-btn--wa.active,
.form__type-btn[data-mode="whatsapp"].active {
  background: rgba(37, 211, 102, 0.15) !important;
  border-color: rgba(37, 211, 102, 0.5) !important;
  color: #25d366 !important;
}
.form__type-btn--wa i,
.form__type-btn[data-mode="whatsapp"] i { color: #25d366; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--med);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
  background: #20ba5a;
}
@media screen and (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}