/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== VARIABLES ===== */
:root {
  --accent: #7c3aed;
  --accent2: #a855f7;
  --accent-glow: rgba(124, 58, 237, 0.35);
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #16161f;
  --card: #1a1a26;
  --card-border: rgba(124, 58, 237, 0.2);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #06b6d4 100%);
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-dark { background: var(--bg2); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  transition: background 0.3s;
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; flex-direction: column; }
.logo-main { font-size: 1.15rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.03em; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent2); }
.lang-toggle { background: rgba(124, 58, 237, 0.15); border: 1px solid var(--card-border); color: var(--accent2); padding: 0.3rem 0.8rem; border-radius: 6px; cursor: pointer; font-size: 0.8rem; font-weight: 600; transition: all 0.2s; }
.lang-toggle:hover { background: rgba(124, 58, 237, 0.3); }
.btn-nav { background: var(--gradient); color: #fff; padding: 0.5rem 1.2rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; transition: opacity 0.2s; }
.btn-nav:hover { opacity: 0.85; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; padding: 1rem 1.5rem; gap: 1rem; border-top: 1px solid var(--card-border); background: var(--bg); }
.mobile-menu a { color: var(--text-muted); font-size: 1rem; }
.mobile-menu.open { display: flex; }
.lang-toggle-mobile { background: none; border: 1px solid var(--card-border); color: var(--accent2); padding: 0.4rem 1rem; border-radius: 6px; cursor: pointer; font-size: 0.85rem; width: fit-content; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 7rem 0 4rem; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10, 10, 15, 0.88) 45%, rgba(10, 10, 15, 0.45) 100%),
    url('hero-bg.jpg') center right / cover no-repeat;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.badge { display: inline-block; background: rgba(124, 58, 237, 0.15); border: 1px solid var(--card-border); color: var(--accent2); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; color: var(--accent2); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1.25rem; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary { background: var(--gradient); color: #fff; padding: 0.85rem 2rem; border-radius: 10px; font-size: 1rem; font-weight: 700; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-secondary { background: rgba(124, 58, 237, 0.1); border: 1px solid var(--card-border); color: var(--text); padding: 0.85rem 2rem; border-radius: 10px; font-size: 1rem; font-weight: 600; transition: background 0.2s; display: inline-block; }
.btn-secondary:hover { background: rgba(124, 58, 237, 0.2); }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--accent2); box-shadow: 0 0 30px var(--accent-glow); }
.service-card.premium { border-color: var(--accent); background: linear-gradient(135deg, #1a1a26 0%, #1f1235 100%); }
.service-card.premium:hover { box-shadow: 0 0 40px rgba(124, 58, 237, 0.5); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.service-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.service-card ul li { color: var(--text-muted); font-size: 0.9rem; padding-left: 1rem; position: relative; }
.service-card ul li::before { content: "→"; position: absolute; left: 0; color: var(--accent2); font-size: 0.8rem; }
.premium-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gradient); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 20px; }

/* ===== WHY NOW ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; text-align: center; }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.price-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; text-align: center; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 0 25px var(--accent-glow); }
.price-card.premium { border-color: var(--accent); background: linear-gradient(135deg, #1a1a26 0%, #1f1235 100%); }
.price-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.price-card h3 { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; font-weight: 500; }
.price { font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price span { font-size: 1rem; font-weight: 500; }
.price-type { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; }
.price-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin: 0.6rem 0 0.8rem; }
.price-recommend { font-size: 0.78rem; color: #10b981; margin-top: 0.5rem; opacity: 0.85; }
.early-adopter-block { text-align: center; max-width: 620px; margin: 0 auto; padding: 2rem 0; }
.early-adopter-block h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.early-adopter-block p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.early-adopter-block .btn-primary { font-size: 1rem; padding: 0.9rem 2rem; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.95rem; padding: 1.25rem; background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 2rem; }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author strong { display: block; color: #fff; font-weight: 700; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; color: var(--text); padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 0.95rem; font-weight: 600; text-align: left; gap: 1rem; }
.faq-q:hover { color: var(--accent2); }
.faq-arrow { color: var(--accent2); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; }
.faq-a.open { display: block; }
.faq-a p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1.25rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.about-values { display: flex; flex-direction: column; gap: 0.75rem; }
.value { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--text-muted); font-size: 0.95rem; }
.value span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.about-badge-wrap { display: flex; justify-content: center; }
.about-badge { background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; min-width: 200px; box-shadow: 0 0 40px var(--accent-glow); }
.ab-year { font-size: 3.5rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.ab-line { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; margin: 0.3rem 0; }
.ab-line.small { font-size: 0.75rem; max-width: 160px; }
.ab-divider { height: 1px; background: var(--card-border); margin: 1rem 0; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 10px;
  color: var(--text); padding: 0.75rem 1rem; font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent2);
}
.form-group select option { background: var(--bg3); }
.form-success { color: #10b981; font-size: 0.9rem; font-weight: 600; margin-top: 0.5rem; min-height: 1.2em; }
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; min-width: 240px; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.contact-item a { color: var(--accent2); }
.contact-item a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--card-border); padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1rem; }
.footer-brand span { font-size: 0.75rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent2); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; bottom: 2rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(0,0,0,0.5); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.telegram { background: #0088cc; }

/* ===== SECTION PREMIUM OPENCLAW ===== */
.premium-section {
  position: relative;
  background: #07070e;
  overflow: hidden;
}
.premium-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(124, 58, 237, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.premium-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.premium-tag {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.premium-header h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.premium-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* SHOWCASE LAYOUT */
.premium-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* MASCOT */
.mascot-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.mascot-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* ===== MASCOT SPRITE ANIMATION ===== */
.mascot-sprite-container {
  width: 480px;
  height: 268px;
  background-image: url('mascotte-frames.jpg');
  background-size: 960px 536px;
  background-position: 0px 0px;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 2px solid rgba(124, 58, 237, 0.4);
  box-shadow:
    0 0 60px rgba(124, 58, 237, 0.4),
    0 0 120px rgba(124, 58, 237, 0.15),
    0 20px 60px rgba(0,0,0,0.6);
  transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: mascotFloat 4s ease-in-out infinite;
  will-change: transform;
}
.mascot-sprite-container.frame-0 { background-position: 0px 0px; }
.mascot-sprite-container.frame-1 { background-position: -480px 0px; }
.mascot-sprite-container.frame-2 { background-position: 0px -268px; }
.mascot-sprite-container.frame-3 { background-position: -480px -268px; }

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.mascot-sprite-container.tilt-forward {
  transform: translateY(-6px) rotateX(8deg) scale(1.03);
  animation-play-state: paused;
}
@media (max-width: 900px) {
  .mascot-sprite-container {
    width: 360px;
    height: 201px;
    background-size: 720px 402px;
  }
  .mascot-sprite-container.frame-0 { background-position: 0px 0px; }
  .mascot-sprite-container.frame-1 { background-position: -360px 0px; }
  .mascot-sprite-container.frame-2 { background-position: 0px -201px; }
  .mascot-sprite-container.frame-3 { background-position: -360px -201px; }
}
@media (max-width: 600px) {
  .mascot-sprite-container {
    width: 280px;
    height: 156px;
    background-size: 560px 312px;
  }
  .mascot-sprite-container.frame-0 { background-position: 0px 0px; }
  .mascot-sprite-container.frame-1 { background-position: -280px 0px; }
  .mascot-sprite-container.frame-2 { background-position: 0px -156px; }
  .mascot-sprite-container.frame-3 { background-position: -280px -156px; }
}

.mascot-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  border: 2px solid rgba(124, 58, 237, 0.4);
  box-shadow:
    0 0 60px rgba(124, 58, 237, 0.4),
    0 0 120px rgba(124, 58, 237, 0.15),
    0 20px 60px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mascot-img:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow:
    0 0 80px rgba(124, 58, 237, 0.55),
    0 0 150px rgba(124, 58, 237, 0.2),
    0 30px 80px rgba(0,0,0,0.7);
}
.mascot-caption {
  position: relative;
  z-index: 1;
  text-align: center;
}
.mascot-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mascot-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* PREMIUM FEATURES */
.premium-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.premium-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pf-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.pf-item:hover {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.06);
}
.pf-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pf-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pf-item strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.pf-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* PRICE BLOCK */
.premium-price-block {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.06) 100%);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ppb-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ppb-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ppb-amount {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ppb-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.ppb-monthly {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(124,58,237,0.15);
  padding-top: 0.75rem;
}
.ppb-m-price {
  font-weight: 700;
  color: var(--accent2);
}
.ppb-m-price em { font-style: normal; font-weight: 400; font-size: 0.8rem; }
.ppb-cta {
  margin-top: 0.5rem;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .premium-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .mascot-img { max-width: 380px; }
  .mascot-glow { width: 320px; height: 320px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge-wrap { justify-content: flex-start; }
  .contact-info { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .nav-right { display: none; }
  .hamburger { display: block; }
  .hero-stats { gap: 2rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}

/* ===== COMMENT CA FONCTIONNE ===== */
.howto-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.howto-step { background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 1.75rem 1.25rem; text-align: center; position: relative; }
.howto-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; font-size: 0.75rem; font-weight: 700; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.howto-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.howto-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.howto-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.howto-cta { text-align: center; }
.howto-cta p { color: var(--text-muted); margin-bottom: 1rem; }
@media (max-width: 900px) { .howto-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .howto-grid { grid-template-columns: 1fr; } }

/* ===== HERO SOURCE STAT ===== */
.hero-stat-source { font-size: 0.72rem; color: var(--text-muted); opacity: 0.6; margin-top: 0.5rem; }

/* ===== EARLY ADOPTER SUB ===== */
.early-cta-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ===== PHASE 2 — REFONTE VISUELLE ===== */

/* Trust Band */
.trust-band { background: rgba(124, 58, 237, 0.06); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); padding: 1.25rem 0; }
.trust-band-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.trust-badge svg { color: var(--accent2); width: 18px; height: 18px; }
@media (max-width: 600px) { .trust-band-inner { gap: 1.5rem; } .trust-badge { font-size: 0.8rem; } }

/* Mac Mini Mockup */
.macmini-mockup { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding: 2rem; }
.macmini-body { width: 180px; height: 36px; background: linear-gradient(180deg, #2a2a35 0%, #1a1a26 100%); border-radius: 8px; border: 1px solid rgba(124,58,237,0.3); display: flex; align-items: center; justify-content: space-between; padding: 0 16px; box-shadow: 0 0 30px rgba(124,58,237,0.2), 0 8px 32px rgba(0,0,0,0.4); }
.macmini-led { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: ledPulse 2s ease-in-out infinite; }
@keyframes ledPulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
.macmini-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.05em; }
.chat-bubbles { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; max-width: 300px; }
.chat-bubble { background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; border-bottom-left-radius: 4px; padding: 0.65rem 1rem; font-size: 0.82rem; color: var(--text); opacity: 0; transform: translateY(10px); animation: bubbleIn 0.5s ease forwards; }
.bubble-1 { animation-delay: 0.8s; animation-fill-mode: both; }
.bubble-2 { animation-delay: 3s; animation-fill-mode: both; }
.bubble-3 { animation-delay: 5.5s; animation-fill-mode: both; }
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Lucide Icons sizing */
.service-icon svg, .price-icon svg, .pf-icon svg { width: 28px; height: 28px; stroke: var(--accent2); stroke-width: 1.5; display: block; }
.howto-icon svg { width: 32px; height: 32px; stroke: var(--accent2); stroke-width: 1.5; display: block; }
.ci-icon svg { width: 20px; height: 20px; stroke: var(--accent2); stroke-width: 1.5; }
.value svg { width: 18px; height: 18px; stroke: var(--accent2); stroke-width: 1.5; }
.trust-badge svg { width: 18px; height: 18px; }

/* Contact Accroche */
.contact-accroche { margin-bottom: 2rem; padding: 1.5rem; background: rgba(124,58,237,0.08); border: 1px solid var(--card-border); border-radius: 12px; }
.contact-accroche-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.contact-accroche-sub { font-size: 0.9rem; color: var(--text-muted); }

/* Hero Stats Glassmorphism */
.hero-stats { background: rgba(255,255,255,0.04); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 1.25rem 2rem; display: inline-flex; gap: 3rem; margin-top: 2rem; }
@media (max-width: 600px) { .hero-stats { gap: 1.5rem; padding: 1rem 1.25rem; } }

/* CTA Pulse */
@keyframes ctaPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.4); } 50% { box-shadow: 0 0 0 10px rgba(124,58,237,0); } }
.hero-cta .btn-primary { animation: ctaPulse 3s ease-in-out infinite; }
.hero-cta .btn-primary:hover { transform: scale(1.03); animation: none; box-shadow: 0 0 24px rgba(124,58,237,0.5); }

/* Typography Upgrade */
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem) !important; font-weight: 800; letter-spacing: -0.02em; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem) !important; font-weight: 700; letter-spacing: -0.02em; }

/* Spacing Upgrade */
.section { padding: 6rem 0; }
@media (max-width: 768px) { .section { padding: 4rem 0; } }
.services-grid { gap: 2rem; }
.pricing-grid { gap: 2rem; }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  .hero-cta .btn-primary { animation: none; }
  .chat-bubble { animation: none; opacity: 1; transform: none; }
  .macmini-led { animation: none; }
}

/* Services blob */
#services { position: relative; overflow: hidden; }
.services-blob { position: absolute; top: -100px; left: -100px; width: 600px; height: 600px; pointer-events: none; z-index: 0; }
#services .container { position: relative; z-index: 1; }

/* Form success animation */
.form-success { opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.4s ease, max-height 0.4s ease; color: #22c55e; font-weight: 600; font-size: 0.95rem; margin-top: 1rem; }
.form-success-visible { opacity: 1 !important; max-height: 60px !important; }
.form-check { display: inline-block; background: #22c55e; color: #fff; border-radius: 50%; width: 20px; height: 20px; text-align: center; line-height: 20px; font-size: 0.75rem; margin-right: 0.4rem; }

/* ===== RESPONSIVE MOBILE FIXES ===== */
@media (max-width: 768px) {
  /* Premium section stack vertical */
  .premium-showcase { flex-direction: column; align-items: center; }
  .macmini-mockup { width: 100%; }
  .premium-details { width: 100%; }

  /* Hero CTA stack */
  .hero-cta { flex-direction: column; gap: 0.75rem; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; text-align: center; }

  /* Hero stats wrap */
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; justify-content: center; }

  /* Pricing grid single col */
  .pricing-grid { grid-template-columns: 1fr; }

  /* About grid stack */
  .about-grid { grid-template-columns: 1fr; }

  /* Contact grid stack */
  .contact-grid { grid-template-columns: 1fr; }

  /* Floating buttons — ne pas bloquer le contenu */
  .floating-btns { bottom: 1.5rem; right: 1rem; gap: 0.5rem; }
  .float-btn { width: 44px; height: 44px; }

  /* Howto grid — 2 col sur tablette, 1 col sur mobile */
  .howto-grid { grid-template-columns: 1fr; }

  /* Nav links cachés sur mobile — hamburger déjà géré */
  .nav-right { gap: 1rem; }

  /* Trust band wrap */
  .trust-band-inner { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1rem; padding: 0.875rem 1rem; }
  .stat-num { font-size: 1.5rem; }
  .macmini-body { width: 140px; }
  .chat-bubbles { max-width: 240px; }
}
