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

/* ===========================
   THEME : DARK (défaut)
=========================== */
:root,
[data-theme="dark"] {
  --bg:       #050508;
  --bg2:      #0a0a12;
  --surface:  #0f0f1a;
  --surface2: #13131f;
  --border:   rgba(255,255,255,0.07);
  --text:     #e8e8f0;
  --text-muted: #7a7a9a;
  --nav-bg:   rgba(5,5,8,0.88);
  --input-bg: #0f0f1a;
  --shadow-card: 0 20px 40px rgba(0,0,0,0.4);
  --grid-line: rgba(255,255,255,0.02);
  --blob-opacity: 0.15;
  --primary:  #6c63ff;
  --secondary:#00d2ff;
  --gradient: linear-gradient(135deg, #6c63ff, #00d2ff);
}

/* ===========================
   THEME : LIGHT (beige clair)
=========================== */
[data-theme="light"] {
  --bg:       #f5f0e8;
  --bg2:      #ede7d9;
  --surface:  #ffffff;
  --surface2: #faf7f2;
  --border:   rgba(0,0,0,0.09);
  --text:     #1a1a2e;
  --text-muted: #6b6580;
  --nav-bg:   rgba(245,240,232,0.92);
  --input-bg: #ffffff;
  --shadow-card: 0 8px 30px rgba(0,0,0,0.08);
  --grid-line: rgba(0,0,0,0.03);
  --blob-opacity: 0.1;
  --primary:  #5b54e8;
  --secondary:#0099cc;
  --gradient: linear-gradient(135deg, #5b54e8, #0099cc);
}

/* ===========================
   BASE
=========================== */
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  transition: background 0.4s, color 0.4s;
}

@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 100px 0; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(108,99,255,0.3);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  background: rgba(108,99,255,0.06);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.2;
}

/* ===========================
   CURSOR
=========================== */
.cursor {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(108,99,255,0.5);
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-follower.hovered {
  width: 56px; height: 56px;
  border-color: var(--secondary);
  background: rgba(0,210,255,0.05);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: all 0.4s;
}
.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2.5rem;
}

.nav-left { display: flex; align-items: center; gap: 1rem; }

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gradient);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* Theme toggle */
.nav-right { display: flex; align-items: center; gap: 1rem; }

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}
.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.theme-toggle i { font-size: 0.85rem; transition: transform 0.5s; }
.theme-toggle:hover i { transform: rotate(20deg); }
.theme-toggle .toggle-label { font-size: 0.78rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}

/* Mobile nav menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.8rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.nav-mobile-close:hover { color: var(--primary); }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: var(--blob-opacity);
  pointer-events: none;
}
.blob-1 { width: 600px; height: 600px; background: var(--primary); top: -150px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -50px; }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary);
  border: 1px solid rgba(0,210,255,0.25);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  background: rgba(0,210,255,0.06);
  opacity: 0;
}
.hero-badge i { font-size: 0.6rem; animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.hero-title .line { opacity: 0; transform: translateY(60px); }

.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-muted); }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 30px rgba(108,99,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(108,99,255,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   ABOUT
=========================== */
.about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.image-frame { position: relative; display: inline-block; overflow: visible; }

.image-placeholder {
  width: 300px; height: 360px;
  background: linear-gradient(135deg, var(--surface), var(--bg2));
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  overflow: hidden;
}
.profil-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.image-frame:hover .profil-img { transform: scale(1.04); }

.frame-deco {
  position: absolute;
  bottom: -14px; right: -14px;
  width: 100%; height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(108,99,255,0.25);
  z-index: -1;
}

.about-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  flex: 1;
  box-shadow: var(--shadow-card);
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.2rem; text-align: center; }

.about-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about-badges { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  box-shadow: var(--shadow-card);
}
.badge i { color: var(--primary); font-size: 0.72rem; }

/* ===========================
   SKILLS
=========================== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: var(--shadow-card);
}
.skill-card:hover {
  border-color: rgba(108,99,255,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(108,99,255,0.15);
}
.skill-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.skill-icon i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.skill-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.skill-items { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.skill-items span {
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.18);
  border-radius: 999px;
  color: var(--primary);
}
.skill-bar { height: 4px; background: var(--border); border-radius: 999px; overflow: hidden; }
.skill-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 999px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* ===========================
   PROJECTS
=========================== */
.projects { background: var(--bg2); }

.projects-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: var(--shadow-card);
}
.project-card:hover {
  border-color: rgba(108,99,255,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(108,99,255,0.15);
}
.project-img { position: relative; overflow: hidden; }
.project-img-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  transition: transform 0.4s;
  color: rgba(255,255,255,0.3);
}
.project-card:hover .project-img-placeholder { transform: scale(1.05); }
.p1 { background: linear-gradient(135deg, #1a1a4e, #0d2137); }
.p2 { background: linear-gradient(135deg, #1a2e1a, #0d1a2e); }
.p3 { background: linear-gradient(135deg, #2e1a1a, #1a0d2e); }
.project-overlay {
  position: absolute; inset: 0;
  background: rgba(108,99,255,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.project-info { padding: 1.4rem; }
.project-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.project-tags span {
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  background: rgba(0,210,255,0.08);
  border: 1px solid rgba(0,210,255,0.2);
  border-radius: 999px;
  color: var(--secondary);
}
.project-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.project-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   SERVICES
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(108,99,255,0.1);
}
.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(108,99,255,0.15);
  margin-bottom: 0.8rem;
  line-height: 1;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--bg2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-icon { color: var(--primary); width: 20px; text-align: center; font-size: 0.95rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { position: relative; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.4s;
  -webkit-appearance: none;
}
.form-group select option { background: var(--input-bg); color: var(--text); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.footer-logo span { color: var(--primary); }
.footer p { font-size: 0.83rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary); }

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

/* ===========================
   HERO — TRUST STRIP
=========================== */
.hero-badge--green {
  color: #22c55e;
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.07);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  list-style: none;
  opacity: 0;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
}

/* ===========================
   POURQUOI — PILLAR CARDS
=========================== */
.pourquoi { background: var(--bg); }

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

.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover {
  border-color: rgba(108,99,255,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(108,99,255,0.15);
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  margin-bottom: 1rem;
}
.pillar-icon i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pillar-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pillar-card code {
  font-family: 'Space Grotesk', sans-serif;
  background: rgba(108,99,255,0.1);
  color: var(--primary);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
  font-size: 0.78rem;
}

/* ===========================
   FORMULES — PLAN CARDS
=========================== */
.formules { background: var(--bg2); }

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: -2rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

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

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: var(--shadow-card);
  transition: all 0.4s;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.plan-card:hover::before { transform: scaleX(1); }
.plan-card:hover {
  border-color: rgba(108,99,255,0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(108,99,255,0.18);
}

/* Popular variant — la translation -12px est appliquée par GSAP au reveal */
.plan-popular {
  border-color: rgba(108,99,255,0.45);
  box-shadow: 0 20px 50px rgba(108,99,255,0.2), 0 0 0 1px rgba(108,99,255,0.1) inset;
}
.plan-popular::before { transform: scaleX(1); height: 3px; }

.plan-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(108,99,255,0.4);
}
.plan-badge i { font-size: 0.65rem; }

.plan-head { margin-bottom: 1.4rem; }
.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.plan-prefix {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  width: 100%;
  margin-bottom: 0.2rem;
}
.plan-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.plan-zero {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 0.9rem;
}
.plan-zero--alt { color: var(--text-muted); font-weight: 500; }
.plan-zero--alt i { color: var(--primary); }

.plan-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0 0 1.8rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--border);
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.5;
}
.plan-features li i {
  color: var(--primary);
  font-size: 0.78rem;
  margin-top: 0.32rem;
  flex-shrink: 0;
}

.plan-foot { margin-top: auto; }
.plan-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
}

/* ===========================
   COMPARAISON
=========================== */
.comparaison { background: var(--bg); }

.compare-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table thead th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  padding: 1.4rem 1.5rem;
  background: var(--surface2);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.compare-table thead th.compare-criteria { width: 30%; }
.compare-table thead th.compare-recommended {
  background: linear-gradient(135deg, rgba(108,99,255,0.08), rgba(0,210,255,0.04));
  color: var(--primary);
  position: relative;
}
.compare-recommended-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  margin-right: 0.6rem;
  vertical-align: middle;
}
.compare-table tbody tr {
  transition: background 0.3s;
  opacity: 0;
}
.compare-table tbody tr:hover { background: var(--surface2); }
.compare-table tbody tr:not(:last-child) { border-bottom: 1px solid var(--border); }
.compare-table td {
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
  vertical-align: middle;
  color: var(--text-muted);
}
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table td:nth-child(2) {
  background: linear-gradient(135deg, rgba(108,99,255,0.04), rgba(0,210,255,0.02));
  color: var(--text);
}
.compare-good i {
  color: #22c55e;
  margin-right: 0.4rem;
}
.compare-bad i {
  color: rgba(239,68,68,0.7);
  margin-right: 0.4rem;
}
.compare-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.compare-mobile { display: none; padding: 1.2rem; gap: 1rem; flex-direction: column; }
.compare-mcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
}
.compare-mcard--reco {
  border-color: rgba(108,99,255,0.3);
  background: linear-gradient(135deg, rgba(108,99,255,0.05), rgba(0,210,255,0.02));
}
.compare-mcard-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.compare-mcard h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.compare-mcard ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.compare-mcard li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.compare-mcard li strong { color: var(--text); font-weight: 600; }

/* ===========================
   TÉMOIGNAGES
=========================== */
.temoignages { background: var(--bg2); }

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(108,99,255,0.12);
}
.testimonial-card.is-hidden { display: none; }

/* Stars */
.testimonial-stars {
  display: flex;
  gap: 0.18rem;
  font-size: 0.82rem;
  color: #f59e0b;
}
.testimonial-stars .fa-regular { color: rgba(245,158,11,0.3); }

/* Quote text */
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  font-style: normal;
  flex: 1;
  position: relative;
  padding-left: 1.4rem;
  margin: 0;
}
.testimonial-text::before {
  content: '\201C';
  position: absolute;
  left: -0.1rem;
  top: -0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}
.testimonial-text em {
  font-style: italic;
  color: var(--primary);
}

/* Author footer */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(108,99,255,0.25);
  background: var(--gradient);
  flex-shrink: 0;
}
.testimonial-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.testimonial-meta strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}
.testimonial-meta small {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-when {
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
  align-self: flex-start;
}

.testimonials-more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.testimonials-more .btn {
  min-width: 240px;
}

/* ===========================
   PROJECTS — Featured refonte
=========================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.project-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 0;
  align-items: stretch;
}
.project-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.project-featured-img .project-img-placeholder {
  height: 100%;
  width: 100%;
}
.project-featured-info {
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-featured-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0.6rem 0 0.8rem;
  line-height: 1.3;
}
.project-featured-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.project-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(108,99,255,0.12), rgba(0,210,255,0.08));
  border: 1px solid rgba(108,99,255,0.28);
  color: var(--primary);
  margin-bottom: 0.8rem;
  align-self: flex-start;
}
.project-highlight i { color: #f59e0b; }
.project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.project-stats li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.project-stats i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.project-img-placeholder {
  position: relative;
  flex-direction: column;
  gap: 0.6rem;
}
.project-img-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===========================
   FAQ
=========================== */
.faq { background: var(--bg); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.faq-item[open] {
  border-color: rgba(108,99,255,0.35);
  box-shadow: 0 12px 30px rgba(108,99,255,0.12);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-chevron {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform 0.4s ease, color 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}
.faq-answer p { margin-bottom: 0.6rem; }
.faq-answer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.5rem 0 0.8rem;
}
.faq-answer ul li {
  position: relative;
  padding-left: 1.2rem;
}
.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}
.faq-answer strong { color: var(--text); }

/* ===========================
   FORFAIT (alternative discrète)
=========================== */
.forfait { background: var(--bg2); padding: 60px 0; }

.forfait-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: var(--shadow-card);
}
.forfait-head { text-align: center; }
.forfait-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.forfait-head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
}
.forfait-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.forfait-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 2rem;
  flex: 1;
  min-width: 140px;
  text-align: center;
}
.forfait-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.forfait-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.forfait-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.forfait-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.forfait-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ===========================
   CONTACT — actions
=========================== */
.contact-intro {
  font-size: 1rem;
  line-height: 1.7;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.6rem 0 1.8rem;
}
.contact-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}
.contact-action:hover {
  border-color: rgba(108,99,255,0.4);
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(108,99,255,0.12);
}
.contact-action--primary {
  background: linear-gradient(135deg, rgba(108,99,255,0.08), rgba(0,210,255,0.04));
  border-color: rgba(108,99,255,0.3);
}
.contact-action-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  flex-shrink: 0;
}
.contact-action-icon i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-action-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-action-body strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
}
.contact-action-body small {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.contact-action-arrow {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: transform 0.3s, color 0.3s;
}
.contact-action:hover .contact-action-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* ===========================
   FOOTER (3 cols)
=========================== */
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-col-title {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text) !important;
  margin-bottom: 0.8rem;
}
.footer-baseline { font-size: 0.8rem; color: var(--text-muted); margin: 0.4rem 0 0.2rem; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links--legal a { font-size: 0.78rem; }

/* ===========================
   WHATSAPP FLOATING (mobile only)
=========================== */
.wa-float {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5);
  animation: waPulse 2.4s infinite;
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%   { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===========================
   RESPONSIVE — TABLET (≤1024px)
=========================== */
@media (max-width: 1024px) {
  .skills-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .projects-grid   { grid-template-columns: 1fr; }
  .pillars-grid    { grid-template-columns: repeat(2, 1fr); }
  .plans-grid      { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .plan-popular    { transform: translateY(0); }
  .plan-popular:hover { transform: translateY(-6px); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .about-grid      { gap: 3rem; }
  .nav-links       { gap: 1rem; font-size: 0.85rem; }
  .nav-links a     { font-size: 0.85rem; }
  .project-featured { grid-template-columns: 1fr; }
  .project-featured-img { min-height: 220px; }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤768px)
=========================== */
@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Nav */
  .nav-links                { display: none !important; }
  .nav-burger               { display: flex; }
  .navbar                   { padding: 1rem 1.5rem; }
  .navbar.scrolled          { padding: 0.8rem 1.5rem; }
  .nav-right .theme-toggle  { display: none; }

  /* Hero */
  .hero { padding: 6rem 1.2rem 3rem; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-trust {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 0.8rem;
    margin-top: 1.8rem;
  }
  .hero-trust li { font-size: 0.78rem; justify-content: flex-start; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .image-placeholder { width: 100%; max-width: 280px; height: 320px; }
  .about-image { display: flex; flex-direction: column; align-items: center; }
  .about-stats { width: 100%; max-width: 340px; }
  .frame-deco { display: none; }

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

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }

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

  /* Pourquoi */
  .pillars-grid { grid-template-columns: 1fr; }

  /* Comparaison : table → cards */
  .compare-table { display: none; }
  .compare-mobile { display: flex; }
  .compare-wrapper { background: transparent; border: none; box-shadow: none; }

  /* Forfait */
  .forfait-card { padding: 1.6rem 1.2rem; }
  .forfait-strip { flex-direction: column; gap: 0.4rem; padding: 0.6rem 0; }
  .forfait-divider { width: 60%; height: 1px; }
  .forfait-item { padding: 0.6rem 0; }

  /* FAQ */
  .faq-item summary { padding: 1rem 1.2rem; font-size: 0.92rem; }
  .faq-answer { padding: 0 1.2rem 1.2rem; font-size: 0.88rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 1.6rem; }
  .footer-links { justify-content: center; align-items: center; }
  .footer-col-title { text-align: center; }

  /* WhatsApp float visible on mobile */
  .wa-float { display: flex; }
}

/* ===========================
   RESPONSIVE — SMALL (≤480px)
=========================== */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .about-stats { flex-direction: column; align-items: center; }
  .about-stats .stat { width: 100%; max-width: 200px; }
  .hero-badge { font-size: 0.72rem; text-align: center; }
  .section-title { margin-bottom: 2rem; }
  .plan-amount { font-size: 2.2rem; }
  .plan-card { padding: 1.8rem 1.4rem; }
  .compare-mcard { padding: 1.2rem; }
  .contact-action { padding: 0.85rem 1rem; }
  .contact-action-icon { width: 38px; height: 38px; }
  .wa-float { width: 52px; height: 52px; font-size: 1.5rem; }
}
