/* =========================================================
   JUMORA EVENTOS — styles.css v3.0
   Mobile-first, modern, premium design
   ========================================================= */

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --primary:      #ff6b6b;
  --primary-dark: #e55a5a;
  --secondary:    #ffa94d;
  --accent:       #ffd93d;
  --grad-main:    linear-gradient(135deg, #ff6b6b 0%, #ffa94d 100%);
  --grad-warm:    linear-gradient(135deg, #ffd93d 0%, #ffa94d 100%);
  --grad-hero:    linear-gradient(135deg, #fff4e6 0%, #ffe8cc 50%, #ffd6b3 100%);

  --bg-body:      #ffffff;
  --bg-section:   #fafafa;
  --bg-alt:       #fff8f0;
  --bg-card:      #ffffff;

  --text:         #1a1a2e;
  --text-2:       #4a4a6a;
  --text-muted:   #8888aa;

  --border:       rgba(0,0,0,0.08);
  --border-card:  rgba(255,107,107,0.15);

  --shadow-xs:    0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:    0 4px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 40px rgba(0,0,0,0.12);
  --shadow-xl:    0 24px 60px rgba(0,0,0,0.15);
  --shadow-color: 0 8px 32px rgba(255,107,107,0.20);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --nav-h: 68px;
  --container: 1160px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-body);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,107,107,0.10);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-2);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section { padding: 80px 0; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: var(--shadow-color);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,107,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-full  { width: 100%; justify-content: center; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo-link { display: flex; align-items: center; }
.logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s ease;
}
.nav-link:hover { color: var(--primary); background: rgba(255,107,107,0.07); }

.nav-cta {
  background: var(--grad-main);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-left: 8px;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-color);
  background: var(--grad-main);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 60px) 0 100px;
  background: var(--grad-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.orb1 { width: 500px; height: 500px; background: rgba(255,107,107,0.18); top: -100px; right: -100px; }
.orb2 { width: 350px; height: 350px; background: rgba(255,169,77,0.15); bottom: 50px; left: -80px; }
.orb3 { width: 200px; height: 200px; background: rgba(255,217,61,0.20); top: 40%; left: 30%; }

.hero .container { position: relative; z-index: 1; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(255,107,107,0.25);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}
.chip-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.stat-sep { width: 1px; height: 32px; background: var(--border); }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-phone-wrap {
  position: relative;
  max-width: 300px;
  width: 100%;
  border: 10px solid #1a1a2e;
  border-radius: 40px;
  background: #000;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
}
.hero-phone-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(ellipse, rgba(255,107,107,0.35), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: hero-glow-pulse 3s ease-in-out infinite;
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.1); }
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg { width: 100%; height: 60px; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-section { background: var(--bg-body); }

/* Invitation block */
.invite-block {
  display: block;
  background: linear-gradient(135deg, #fff8f0 0%, #fff0dd 100%);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  margin-bottom: 72px;
  border: 1px solid rgba(255,169,77,0.2);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.invite-text {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  text-align: left;
}

.invite-text > p {
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.fl-icon { font-size: 1.3rem; flex-shrink: 0; }
.invite-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}

/* Steps header */
.steps-header { text-align: center; margin-bottom: 48px; }

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

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,107,0.25);
}

.step-badge-num {
  width: 36px; height: 36px;
  background: var(--grad-main);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-icon-wrap { font-size: 1.8rem; }

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}

.step-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 4px;
}
.step-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.step-card:hover .step-img-wrap img { transform: scale(1.04); }

.step-img-proyector img { object-position: center top; }

.step-imgs-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.step-imgs-stack img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.step-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--grad-warm);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
  align-self: flex-start;
}

/* =========================================================
   THEME SECTION
   ========================================================= */
.theme-section { background: var(--bg-alt); text-align: center; }
.theme-inner { display: flex; flex-direction: column; align-items: center; }

.theme-img-wrap {
  margin-top: 32px;
  max-width: 800px;
  width: 100%;
}
.theme-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}
.theme-img-wrap img:hover { transform: scale(1.02); }

/* =========================================================
   PROMOTIONAL VIDEOS
   ========================================================= */
.promo-section { background: var(--bg-body); }

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

.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,107,0.25);
}

.video-thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #000;
}
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-text { padding: 16px 18px; }
.video-card-text h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.video-card-text p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* =========================================================
   VIDEO DEMO SECTION
   ========================================================= */
.video-demo-section { background: var(--bg-alt); }

.video-demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-demo-text > p {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
}

.vd-features { display: flex; flex-direction: column; gap: 14px; }
.vd-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.vd-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.vd-feat strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.vd-feat p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.video-demo-media { display: flex; justify-content: center; }
.vd-video-frame {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 9/16;
}
.vd-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   MEMORIES
   ========================================================= */
.memories-section { background: var(--bg-body); }

.memories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.memory-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.memory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.memory-card:hover img { transform: scale(1.05); }

.memory-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.memory-card:hover .memory-overlay { opacity: 1; }
.memory-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.memory-overlay p { font-size: 0.88rem; opacity: 0.9; }

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

.benefit-card {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,107,0.2);
}
.benefit-icon { font-size: 2.8rem; margin-bottom: 14px; }
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.benefit-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* =========================================================
   WHY CHOOSE
   ========================================================= */
.why-section { background: var(--bg-alt); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,107,0.25);
}
.fc-icon { font-size: 2.4rem; margin-bottom: 14px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* =========================================================
   USE CASES
   ========================================================= */
.usecases-section { background: var(--bg-body); }

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.uc-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.uc-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-xl); }

.uc-1 { background: linear-gradient(135deg, #ff6b6b 0%, #ffa94d 100%); }
.uc-2 { background: linear-gradient(135deg, #ffa94d 0%, #ffd93d 100%); color: #333; }
.uc-3 { background: linear-gradient(135deg, #ff8787 0%, #ff6b6b 100%); }
.uc-4 { background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%); }
.uc-5 { background: linear-gradient(135deg, #c0392b 0%, #ff6b6b 100%); }
.uc-6 { background: linear-gradient(135deg, #ffd93d 0%, #ffa94d 100%); color: #333; }

.uc-icon { font-size: 2.8rem; margin-bottom: 14px; }
.uc-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.uc-card p { font-size: 0.88rem; opacity: 0.92; line-height: 1.6; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section { background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.testimonial-card > p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.t-author span { font-size: 0.8rem; color: var(--text-muted); }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  position: relative;
  background: var(--grad-main);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-orb1 { width: 400px; height: 400px; background: rgba(255,255,255,0.12); top: -100px; left: -50px; }
.cta-orb2 { width: 300px; height: 300px; background: rgba(255,255,255,0.10); bottom: -80px; right: -40px; }

.cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-badge { font-size: 2.5rem; margin-bottom: 20px; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-note { margin-top: 16px; font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section { background: var(--bg-body); }

.contact-info-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-centered .section-heading {
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
}

.contact-channels-horizontal {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
  max-width: 740px;
}

@media (max-width: 768px) {
  .contact-channels-horizontal {
    flex-direction: column;
    gap: 16px;
  }
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-channel:hover {
  transform: translateX(4px);
  border-color: rgba(255,107,107,0.35);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.contact-channel-wa:hover { border-color: rgba(37,211,102,0.4); }

.channel-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-channel strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.contact-channel span { font-size: 0.85rem; color: var(--text-muted); }

/* Contact form */
.contact-form {
  background: var(--bg-section);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  margin-bottom: 14px;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(81,207,102,0.12);
  color: #2d7a3a;
  border: 1px solid rgba(81,207,102,0.3);
}
.form-message.error {
  display: block;
  background: rgba(255,107,107,0.12);
  color: #c0392b;
  border: 1px solid rgba(255,107,107,0.3);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-email-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--primary);
  transition: color 0.2s ease;
}
.footer-email-link:hover { color: var(--secondary); }

.footer-links h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-links ul a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* WhatsApp float button */
.wa-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  background: var(--bg-section);
  padding: 80px 0;
}

.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
}

.faq { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item.open { border-color: rgba(255,107,107,0.3); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--primary); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-muted); }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--primary); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fadeUp"] { transform: translateY(30px); }
[data-animate="fadeLeft"] { transform: translateX(-30px); }
[data-animate="fadeRight"] { transform: translateX(30px); }
[data-animate].visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { justify-content: center; }
  .hero-phone-wrap { max-width: 260px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

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

  .invite-block { grid-template-columns: 1fr; padding: 36px 32px; gap: 32px; }
  .invite-img img { max-width: 260px; }

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

  .video-demo-inner { grid-template-columns: 1fr; gap: 40px; }
  .video-demo-text { order: 1; }
  .video-demo-media { order: 2; }
  .vd-video-frame { max-width: 100%; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =========================================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================================= */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section { padding: 56px 0; }

  /* Nav */
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: 12px 16px; font-size: 0.95rem; border-radius: var(--radius-md); }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; padding: 13px; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px; min-height: auto; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-phone-wrap { max-width: 200px; }

  /* Invite block */
  .invite-block { padding: 28px 20px; gap: 24px; }
  .invite-img img { max-width: 220px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-img-wrap img { height: 200px; }

  /* Videos */
  .videos-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .video-card-text { padding: 12px 14px; }
  .video-card-text h3 { font-size: 0.85rem; }
  .video-card-text p { display: none; }

  /* Memories */
  .memories-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-card { padding: 22px 18px; }

  /* Features/Usecases */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card { padding: 22px 16px; }
  .fc-icon { font-size: 2rem; }
  .usecases-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .uc-card { padding: 24px 16px; }
  .uc-icon { font-size: 2rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* CTA */
  .cta-section { padding: 72px 0; }
  .cta-inner h2 { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* Footer */
  .footer { padding-top: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  /* FAQ */
  .faq-section { padding: 56px 0; }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(1.5rem, 8vw, 1.9rem); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .videos-grid { grid-template-columns: 1fr; }
  .video-thumb { aspect-ratio: 16/9; }

  .features-grid { grid-template-columns: 1fr; }
  .usecases-grid { grid-template-columns: 1fr; }

  .invite-block { border-radius: var(--radius-lg); }

  .section-title { font-size: clamp(1.4rem, 7vw, 1.8rem); }
}
