/* ==========================================================================
   YASSIN — PRODUCTION DESIGN SYSTEM & EDITORIAL STYLES
   Dark, cinematic, minimal, editorial, premium video editor portfolio
   ========================================================================== */

:root {
  --bg-primary: #08080a;
  --bg-surface: #0f1013;
  --bg-surface-elevated: #15161b;
  --bg-card: #0d0e12;
  
  --text-main: #f3f3f5;
  --text-muted: #8b8f99;
  --text-faint: #4e525d;
  
  /* Electric Blue subtle accent */
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.2);
  --accent-soft: rgba(59, 130, 246, 0.08);

  /* WhatsApp Brand Green */
  --whatsapp: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.2);

  --border-subtle: #1c1e24;
  --border-medium: #272a34;
  --border-hover: #3b82f6;

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --container-max: 1200px;
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-main);
  position: relative;
}

/* Grain cinematic texture */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* TYPOGRAPHY HELPERS */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.1;
}

.mono, .font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.text-accent {
  color: var(--accent);
}

.w-full {
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

/* SECTION HEADERS */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-subtitle {
  max-width: 440px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* BUTTONS & LINKS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--text-main);
  color: var(--bg-primary);
  padding: 0.95rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  border: 1px solid var(--text-main);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--accent);
  box-shadow: 0 0 25px var(--accent-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: transparent;
  color: var(--text-main);
  padding: 0.95rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
  border: 1px solid rgba(37, 211, 102, 0.4);
  padding: 1.25rem 2.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp);
  color: #000;
  box-shadow: 0 0 30px var(--whatsapp-glow);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow,
.btn-outline:hover .btn-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 0.95rem;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}

/* 1. NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-main);
  border: 1px solid var(--border-medium);
  padding: 0.45rem 0.9rem;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.cta-arrow {
  transition: transform 0.25s ease;
}

.nav-cta:hover .cta-arrow {
  transform: translateX(3px);
}

/* 2. HERO */
.hero-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 0.35rem 0.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.hero-headline {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-main);
  margin-bottom: 1.75rem;
}

.hero-headline .text-emphasis {
  color: var(--text-muted);
  font-weight: 400;
  display: block;
}

.hero-subheading {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.75rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* HERO PREVIEW FRAME */
.hero-preview-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.preview-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  padding: 0 0.5rem 0.75rem 0.5rem;
}

.cinema-frame {
  position: relative;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.cinema-frame:hover {
  border-color: var(--accent);
  box-shadow: 0 0 35px var(--accent-glow);
}

.cinema-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.cinema-frame:hover .hero-media {
  opacity: 0.95;
}

.cinema-screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.4) 0%, rgba(8, 8, 10, 0.1) 40%, rgba(8, 8, 10, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  pointer-events: none;
}

.aspect-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.center-play-badge {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
  transition: transform 0.3s ease;
}

.cinema-frame:hover .center-play-badge {
  transform: scale(1.08);
}

.play-icon-triangle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(8px);
}

.play-icon-triangle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}

.cinema-frame:hover .play-icon-triangle {
  border-color: var(--accent);
  background: var(--accent);
}

.cinema-frame:hover .play-icon-triangle::after {
  border-left-color: #000;
}

.play-text {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.hero-screen-caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 5;
}

.caption-tag {
  font-size: 0.6rem;
  font-family: monospace;
  color: var(--accent);
  letter-spacing: 0.15em;
}

.caption-text {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
}

/* Corner crosses */
.frame-cross {
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 6;
}

.cross-tl { top: 10px; left: 10px; border-top: 1px solid #fff; border-left: 1px solid #fff; }
.cross-tr { top: 10px; right: 10px; border-top: 1px solid #fff; border-right: 1px solid #fff; }
.cross-bl { bottom: 10px; left: 10px; border-bottom: 1px solid #fff; border-left: 1px solid #fff; }
.cross-br { bottom: 10px; right: 10px; border-bottom: 1px solid #fff; border-right: 1px solid #fff; }

.preview-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding: 0.6rem 0.8rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

/* 3. SELECTED WORK (4 REAL VIDEOS) */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.work-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s var(--transition-smooth);
}

.card-video-wrap {
  width: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.card-preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition-smooth);
}

.card-aspect-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.4) 0%, transparent 40%, rgba(8, 8, 10, 0.7) 100%);
  pointer-events: none;
}

.work-card:hover .card-preview-video {
  transform: scale(1.05);
}

.work-card:hover .card-video-wrap {
  border-color: var(--border-hover);
  box-shadow: 0 0 25px var(--accent-glow);
}

.card-badge {
  align-self: flex-start;
  font-size: 0.6rem;
  font-family: monospace;
  letter-spacing: 0.15em;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.55rem;
  color: var(--text-muted);
}

.card-overlay-info {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 10, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .card-overlay-info {
  opacity: 1;
}

.hover-play-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--text-main);
  color: var(--bg-primary);
  padding: 0.6rem 1.1rem;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.work-card:hover .hover-play-btn {
  transform: translateY(0);
}

.sub-caption-mock {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(4px);
}

.sub-caption-mock.highlight {
  border-left: 2px solid var(--accent);
  color: #93c5fd;
}

.card-footer {
  margin-top: 1.25rem;
}

.card-header-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.card-number {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--text-faint);
  font-weight: 600;
}

.card-type-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 4. RESULTS SECTION */
.results-section {
  background-color: var(--bg-surface);
}

.results-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4.5rem;
}

.massive-number {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--text-main);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.stat-caption {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.stat-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.client-badge-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  padding: 1.75rem;
}

.client-meta-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.client-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.client-socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.client-social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.client-social-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.ext-arrow {
  color: var(--text-faint);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.client-social-pill:hover .ext-arrow {
  transform: translate(2px, -2px);
  color: var(--accent);
}

.proof-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  padding: 1.5rem;
}

.proof-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.proof-tag {
  color: var(--accent);
  font-family: monospace;
}

.proof-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 12;
  overflow: hidden;
  background: #000;
  margin-bottom: 1.25rem;
}

.proof-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-card:hover .proof-showcase-image {
  transform: scale(1.03);
}

.proof-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 12;
  overflow: hidden;
  background: #000;
  margin-bottom: 1.25rem;
}

.proof-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.proof-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(8, 8, 10, 0.95) 0%, transparent 100%);
}

.proof-overlay-text span {
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.proof-overlay-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.proof-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.m-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 0.2rem;
}

.m-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
}

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

.menu-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.menu-card:hover {
  border-color: var(--border-medium);
}

.featured-menu-card {
  border-color: rgba(59, 130, 246, 0.4);
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.06) 0%, var(--bg-surface) 70%);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.menu-index {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--text-faint);
}

.menu-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-muted);
}

.menu-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.menu-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 2rem;
  min-height: 3.2rem;
}

.menu-pricing-table {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.85rem;
}

.price-row.highlight .cost {
  color: var(--accent);
}

.dash-line {
  flex-grow: 1;
  margin: 0 0.75rem;
  border-bottom: 1px dashed var(--border-subtle);
}

.price-row .qty {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.price-row .cost {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

.menu-add-btn {
  width: 100%;
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-medium);
  padding: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-add-btn:hover,
.active-add {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}

/* 6. CALCULATOR & PLAN BUILDER */
.calculator-section {
  padding: 7rem 0;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-row {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: border-color 0.25s ease;
}

.calc-row:hover {
  border-color: var(--border-medium);
}

.calc-row-info {
  flex: 1;
}

.calc-service-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.calc-service-rates {
  font-size: 0.72rem;
  font-family: monospace;
  color: var(--text-muted);
}

.calc-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-medium);
  background: var(--bg-primary);
}

.step-btn {
  background: transparent;
  border: none;
  color: var(--text-main);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-btn:hover {
  background: var(--border-subtle);
  color: var(--accent);
}

.step-input {
  width: 50px;
  height: 36px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-heading);
  -moz-appearance: textfield;
}

.step-input::-webkit-outer-spin-button,
.step-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-row-subtotal {
  min-width: 80px;
  text-align: right;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent);
}

.calc-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0.5rem 0.25rem;
}

.note-bullet {
  color: var(--accent);
}

.calculator-summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  padding: 2.25rem;
  position: sticky;
  top: 6rem;
}

.summary-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.summary-line-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  min-height: 80px;
}

.summary-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.summary-item-row span:last-child {
  color: var(--text-main);
  font-family: monospace;
  font-weight: 600;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.75rem;
}

.total-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  display: block;
}

.total-sub {
  font-size: 0.68rem;
  color: var(--text-faint);
}

.total-figure {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.form-input, .form-textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 0.9rem;
  color: var(--text-main);
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.form-status-notice {
  padding: 0.85rem;
  font-size: 0.8rem;
  line-height: 1.45;
  border: 1px solid var(--border-medium);
  background: var(--bg-primary);
}

.form-status-notice.success {
  border-color: var(--whatsapp);
  color: #bbf7d0;
}

/* 7. BRAND STATEMENT */
.statement-section {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
  border-top: 1px solid var(--border-subtle);
}

.statement-container {
  max-width: 900px;
}

.statement-lead {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.statement-headline {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.statement-sub {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 5rem;
}

.sequence-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 1.5rem;
}

.seq-step {
  flex: 1;
  text-align: left;
}

.seq-number {
  font-size: 0.65rem;
  font-family: monospace;
  color: var(--text-faint);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.seq-word {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.seq-rule {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.seq-divider {
  font-size: 1.25rem;
  color: var(--text-faint);
}

/* 8. PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.process-card {
  border: 1px solid var(--border-subtle);
  padding: 2.25rem 1.75rem;
  background: var(--bg-surface);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.process-card:hover {
  border-color: var(--border-medium);
}

.process-step-num {
  font-size: 0.8rem;
  font-family: monospace;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2rem;
}

.process-step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-step-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.process-step-meta {
  font-size: 0.62rem;
  font-family: monospace;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.85rem;
}

/* 9. FINAL CTA */
.final-cta-section {
  padding: 10rem 0 8rem 0;
  border-top: 1px solid var(--border-subtle);
}

.cta-inner {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.cta-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 1.5rem;
}

.cta-statement {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 3.5rem;
}

.cta-statement span {
  color: var(--text-muted);
  display: block;
}

.cta-actions-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.cta-direct-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-label {
  font-size: 0.68rem;
  color: var(--text-faint);
  letter-spacing: 0.12em;
}

.contact-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--accent);
}

.email-placeholder {
  color: var(--text-muted);
  font-style: italic;
}

/* 10. FOOTER */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0;
  background-color: var(--bg-surface);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-brand {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 0.35rem;
}

.footer-role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text-main);
}

.footer-sep {
  color: var(--border-medium);
  font-size: 0.75rem;
}

.footer-copy {
  font-size: 0.68rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  font-family: monospace;
}

/* ==========================================================================
   VIDEO MODAL VIEWER
   ========================================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  z-index: 10;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  max-height: 90vh;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.modal-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-fs-btn, .modal-close-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.modal-fs-btn:hover, .modal-close-btn:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.modal-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-element {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.modal-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  flex: 1;
}

/* ==========================================================================
   FAQ SECTION & PAYMENT CARD HIGHLIGHT
   ========================================================================== */
.faq-section {
  background-color: var(--bg-surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.faq-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.faq-card:hover {
  border-color: var(--border-medium);
}

.faq-number {
  font-size: 0.8rem;
  font-family: monospace;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 4th Payment FAQ Item: Red highlight / border from the outside */
.faq-card-payment-highlight {
  border: 1px solid rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25), 0 0 25px rgba(239, 68, 68, 0.12);
  background: radial-gradient(circle at 100% 0%, rgba(239, 68, 68, 0.08) 0%, var(--bg-primary) 70%);
}

.faq-card-payment-highlight:hover {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.5), 0 0 35px rgba(239, 68, 68, 0.2);
}

.faq-header-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.text-payment-alert {
  color: #ef4444;
  margin-bottom: 0;
}

.payment-badge {
  font-size: 0.62rem;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 0.25rem 0.6rem;
}

.footer-email-direct {
  margin-top: 0.5rem;
}

/* Form notice states */
.form-status-notice.error {
  border-color: #ef4444;
  color: #fca5a5;
}

.form-status-notice.info {
  border-color: var(--accent);
  color: #93c5fd;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-preview-wrapper {
    max-width: 360px;
  }

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

  .results-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

  .calculator-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .services-menu-grid {
    grid-template-columns: 1fr;
  }

  .sequence-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .seq-divider {
    transform: rotate(90deg);
  }

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

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

  .cta-actions-wrap {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary.btn-large,
  .btn-whatsapp.btn-large {
    width: 100%;
    justify-content: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }

  .video-modal {
    padding: 1rem;
  }

  .modal-dialog {
    max-height: 95vh;
  }

  .modal-media-frame {
    max-height: 55vh;
  }

  .modal-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
