/* =========================================
   OLIVIER | VIDEO EDITOR — STYLESHEET
   ========================================= */

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

:root {
  --bg:        #0b0b0b;
  --bg2:       #111111;
  --bg3:       #161616;
  --text:      #ffffff;
  --muted:     #a0a0a0;
  --accent:    #6c63ff;
  --accent2:   #ff6b6b;
  --border:    rgba(255,255,255,0.07);
  --card-bg:   rgba(255,255,255,0.03);
  --glow:      rgba(108, 99, 255, 0.25);

  --ff-head:   'Syne', sans-serif;
  --ff-body:   'DM Sans', sans-serif;

  --radius:    16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(108,99,255,0.6);
  transition: width 0.25s, height 0.25s, border-color 0.25s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 48px; height: 48px;
  border-color: var(--accent);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ---------- NOISE OVERLAY ---------- */
.noise-overlay {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

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

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION SHARED ---------- */
section { padding: 120px 0; position: relative; }

.section-header { text-align: center; margin-bottom: 72px; }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 100px;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* =========================================
   NAVIGATION
   ========================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  color: var(--text);
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover {
  background: #7b73ff;
  transform: translateY(-1px);
}

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

/* =========================================
   HERO
   ========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0;
  overflow: hidden;
}

#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
}
.dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: flex; flex-direction: column;
}
.hero-title .line { display: block; }
.accent-word {
  background: linear-gradient(90deg, #6c63ff, #8b7cff, #fc0000);
  background-size: 200%;
  animation: gradientMove 4s ease infinite;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes gradientMove {
  0% { background-position: 0%; }
  50% { background-position: 100%; }
  100% { background-position: 0%; }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
  max-width: 500px;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgb(174, 174, 174);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  cursor: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px var(--glow);
}
.btn-primary:hover {
  background: #7b73ff;
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(108,99,255,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  width: 100%; justify-content: center;
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

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

/* =========================================
   PORTFOLIO
   ========================================= */
#portfolio { background: var(--bg2); }

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

.video-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: none;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,99,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.card-thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
}

.card-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.thumb-placeholder {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.thumb-gradient {
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
}


.video-card:hover .thumb-gradient { transform: scale(1.05); }

.g1 { background: linear-gradient(145deg, #1a0533 0%, #6c63ff 60%, #0b0b0b 100%); }
.g2 { background: linear-gradient(145deg, #03001e 0%, #7303c0 50%, #ff6b6b 100%); }
.g3 { background: linear-gradient(145deg, #0f0c29 0%, #302b63 50%, #24243e 100%); }
.g4 { background: linear-gradient(145deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%); }
.g5 { background: linear-gradient(145deg, #200122 0%, #6f0000 50%, #200122 100%); }
.g6 { background: linear-gradient(145deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }

.thumb-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(108,99,255,0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  z-index: 3;
}
.video-card:hover .play-overlay { background: rgba(0,0,0,0.4); }

.play-btn {
  width: 52px; height: 52px;
  background: rgba(108,99,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 0 30px rgba(108,99,255,0.6);
}
.video-card:hover .play-btn {
  opacity: 1; transform: scale(1);
}
.play-btn svg {
  width: 18px; height: 18px;
  fill: #fff; stroke: none;
  margin-left: 3px;
}

.card-info { padding: 14px 16px; }
.card-info h4 {
  font-family: var(--ff-head);
  font-size: 0.88rem; font-weight: 700;
  margin-bottom: 4px;
}
.card-info p {
  font-size: 0.72rem; color: var(--muted);
}

/* =========================================
   BEFORE / AFTER
   ========================================= */
#before-after { background: var(--bg); }

.ba-grid {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 900px; margin: 0 auto;
}

.ba-card { flex: 1; }

.ba-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.ba-dot {
  width: 8px; height: 8px;
  background: var(--muted);
  border-radius: 50%;
}
.ba-dot.accent { background: var(--accent); box-shadow: 0 0 8px var(--accent); }

.ba-thumb {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.ba-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.ba-before {
  background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
  filter: grayscale(1);
}
.ba-after {
  background: linear-gradient(145deg, #1a0533 0%, #6c63ff 100%);
}
.ba-placeholder .film-icon {
  width: 48px; height: 48px;
  color: rgba(255,255,255,0.3);
}
.ba-placeholder p {
  font-family: var(--ff-head);
  font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.ba-placeholder span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.ba-tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
}
.ba-tags li {
  font-size: 0.75rem; font-weight: 400;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.ba-tags .accent-tag {
  color: var(--accent);
  border-color: rgba(108,99,255,0.3);
  background: rgba(108,99,255,0.08);
}

.ba-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.ba-arrow svg { width: 20px; height: 20px; }

/* =========================================
   SERVICES
   ========================================= */
#services { background: var(--bg2); }

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(108,99,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-icon svg { width: 22px; height: 22px; }

.service-number {
  font-family: var(--ff-head);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(108,99,255,0.5);
  display: block;
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  font-size: 0.72rem; font-weight: 500;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 100px;
  background: rgba(108,99,255,0.06);
}

/* =========================================
   PRICING
   ========================================= */
#pricing { background: var(--bg); }

/* Main 3-card row */
.pricing-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

/* Monthly packages divider label */
.pricing-packages-label {
  text-align: center;
  margin-bottom: 32px;
}

/* 2-card packages row */
.pricing-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}

/* Package cards — slightly more compact */
.package-card {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
}
.package-card .pricing-header { margin-bottom: 20px; }
.package-card .pricing-features { margin-bottom: 24px; }

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(108,99,255,0.2);
}

.pricing-card.featured {
  background: rgba(108,99,255,0.08);
  border-color: rgba(108,99,255,0.4);
  box-shadow: 0 0 60px rgba(108,99,255,0.12);
}
.pricing-card.featured:hover {
  box-shadow: 0 20px 80px rgba(108,99,255,0.25);
  border-color: rgba(108,99,255,0.6);
}

.popular-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 28px; text-align: center; }
.pricing-header h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 10px;
}

.price-from {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.price {
  font-family: var(--ff-head);
  font-size: 2.8rem; font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
}
.price-max { font-size: 1.4rem; color: var(--muted); }
.pricing-header p { font-size: 0.85rem; color: var(--muted); }

.pricing-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 11px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--muted);
}
.check {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* "Ideal for" line below features */
.pricing-ideal {
  font-size: 0.8rem;
  color: rgba(160,160,160,0.6);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pricing-ideal span {
  color: var(--accent);
  font-weight: 500;
  margin-right: 4px;
}

/* =========================================
   WHY WORK WITH ME
   ========================================= */
#why {
  background: var(--bg2);
  overflow: hidden;
}

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

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,99,255,0.3);
}
.stat-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover::after { opacity: 1; }

.stat-number {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: inline;
  letter-spacing: -0.04em;
}
.stat-symbol {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  display: inline;
}
.stat-label {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 12px;
  margin-bottom: 20px;
  font-weight: 400;
}
.stat-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.stat-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), #a89bff);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* =========================================
   CONTACT
   ========================================= */
#contact {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  text-align: center;
  max-width: 640px; margin: 0 auto;
}
.contact-inner .section-label { margin-bottom: 20px; }
.contact-inner .section-title { margin-bottom: 20px; }

.contact-desc {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.8;
}

.contact-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}

.contact-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem; font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  cursor: none;
  border: 1.5px solid transparent;
}
.contact-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.contact-btn.instagram {
  background: rgba(225,48,108,0.1);
  color: #e1306c;
  border-color: rgba(225,48,108,0.3);
}
.contact-btn.instagram:hover { background: #e1306c; color: #fff; border-color: #e1306c; transform: translateY(-2px); }

.contact-btn.email {
  background: rgba(108,99,255,0.1);
  color: var(--accent);
  border-color: rgba(108,99,255,0.3);
}


.contact-btn.whatsapp {
  background: rgba(37,211,102,0.1);
  color: #25d366;
  border-color: rgba(37,211,102,0.3);
}
.contact-btn.whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; transform: translateY(-2px); }

.contact-btn.tiktok {
  background: rgba(0,0,0,0.3);
  color: #ffffff;
  border-color: rgba(255,255,255,0.2);
}
.contact-btn.tiktok:hover { background: #111; color: #fff; border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
}
footer p { font-size: 0.82rem; color: var(--muted); }
.footer-sub { color: rgba(160,160,160,0.5); }

/* =========================================
   RESPONSIVE — TABLET (≤900px)
   ========================================= */
@media (max-width: 900px) {
  section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .ba-grid { flex-direction: column; gap: 20px; }
  .ba-arrow { transform: rotate(90deg); }
}

/* =========================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================= */
@media (max-width: 768px) {
  /* Navigation */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(11,11,11,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; gap: 32px;
    align-items: center; justify-content: center;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; color: var(--text); }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero */
  .hero-content { padding: 0 20px; padding-top: 90px; padding-bottom: 40px; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 5rem); }
  .hero-sub { max-width: 100%; }
  .hero-desc { max-width: 100%; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }

  /* Before/After */
  .ba-card { width: 100%; max-width: 340px; margin: 0 auto; }
  .ba-thumb { position: relative; padding-top: 177%; }
  .ba-thumb iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

  /* Stats */
  .stat-card { padding: 32px 24px; }

  /* Contact buttons */
  .contact-btns { gap: 12px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }

  /* Cursor off on touch */
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

/* =========================================
   RESPONSIVE — SMALL PHONE (≤480px)
   ========================================= */
@media (max-width: 480px) {
  /* Global */
  .container { padding: 0 16px; }
  section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  /* Hero */
  .hero-content { padding: 0 16px; padding-top: 80px; padding-bottom: 40px; }
  .hero-tag { font-size: 0.7rem; padding: 6px 12px; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.5rem); margin-bottom: 16px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 14px; }
  .hero-desc { font-size: 0.88rem; margin-bottom: 32px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 14px 24px; }

  /* Portfolio */
  .portfolio-grid { gap: 14px; }
  .card-info { padding: 12px 14px; }
  .card-info h4 { font-size: 0.88rem; }
  .card-info p { font-size: 0.72rem; }

  /* Before / After */
  .ba-grid { gap: 16px; }
  .ba-card { max-width: 100%; }
  .ba-thumb { padding-top: 177%; position: relative; }
  .ba-thumb iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
  .ba-arrow {
    width: 36px; height: 36px;
    transform: rotate(90deg);
  }
  .ba-tags { gap: 6px; }
  .ba-tags li { font-size: 0.7rem; padding: 3px 8px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; gap: 32px; }
  .pricing-card { padding: 28px 20px; }
  .price { font-size: 2.4rem; }
  .pricing-features li { font-size: 0.82rem; }
  .btn-outline { padding: 12px 20px; font-size: 0.88rem; }

  /* Stats */
  .stats-grid { gap: 12px; }
  .stat-card { padding: 28px 20px; }
  .stat-label { font-size: 0.88rem; }

  /* Contact */
  .contact-desc { font-size: 0.92rem; margin-bottom: 32px; }
  .contact-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .contact-btn { justify-content: center; padding: 13px 20px; font-size: 0.85rem; }
  .contact-btn svg { width: 16px; height: 16px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 8px; }
  footer { padding: 28px 0; }
  footer p { font-size: 0.78rem; }
}