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

:root {
  --primary:       #9064F6;
  --primary-dark:  #5B21B6;
  --primary-mid:   #7C3AED;
  --text-dark:     #1E1B4B;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --surface:       #F9FAFB;
  --border:        #E5E7EB;
  --white:         #FFFFFF;
  --radius-sm:     10px;
  --radius:        16px;
  --radius-lg:     24px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:     0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.12);
  --shadow-xl:     0 32px 80px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 12px;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.45); }
.btn-primary:active { transform: translateY(0); }

.btn-slate {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  border-radius: 12px;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.btn-slate:hover { background: rgba(255,255,255,.24); }

.btn-white {
  background: #fff !important;
  color: var(--primary-dark) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.15) !important;
}
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.2) !important; }

.btn-ghost {
  background: transparent !important;
  border-color: rgba(255,255,255,.4) !important;
  color: rgba(255,255,255,.9) !important;
}
.btn-ghost:hover { background: rgba(255,255,255,.1) !important; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(124, 58, 237, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 4px 20px rgba(91,33,182,.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 40px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 34px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.btn-login {
  margin-left: 8px; padding: 9px 20px;
  background: rgba(255,255,255,.15);
  color: #fff; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: background .2s; white-space: nowrap;
}
.btn-login:hover { background: rgba(255,255,255,.28); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-mobile { display: none; flex-direction: column; background: rgba(91,33,182,.97); backdrop-filter: blur(16px); padding: 16px 24px 24px; }
.nav-mobile.open { display: flex; }
.mobile-link { color: rgba(255,255,255,.8); padding: 12px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-link:last-child { border-bottom: none; }
.mobile-cta { color: #fff; font-weight: 700; margin-top: 8px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 40%, #5B21B6 100%);
  padding: 130px 24px 80px;
  min-height: 100vh;
  display: flex; align-items: center;
}

/* Animated mesh background */
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-mesh::before {
  content: '';
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,181,253,.25) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: meshFloat1 12s ease-in-out infinite;
}
.hero-mesh::after {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.35) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: meshFloat2 15s ease-in-out infinite;
}
@keyframes meshFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-40px,40px) scale(1.12)} }
@keyframes meshFloat2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(30px,-30px) scale(.9)} }

/* Hero layout */
.hero-layout {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Hero text */
.hero-text { display: flex; flex-direction: column; gap: 0; }

.hero-pills { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }

.launch-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 5px 14px; font-size: 13px; font-weight: 500;
}

.visitor-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 5px 12px; font-size: 12px; font-weight: 500;
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-gradient {
  background: linear-gradient(90deg, #e9d5ff, #c4b5fd, #a5b4fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; align-items: center; gap: 12px; }
.trust-avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  color: #fff; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.4);
  margin-left: -8px;
}
.trust-avatars .avatar:first-child { margin-left: 0; }
.hero-trust p { color: rgba(255,255,255,.65); font-size: 13px; font-weight: 500; }

/* ── Hero visual / mockup ── */
.hero-visual { position: relative; }

/* Floating stat cards */
.float-card {
  position: absolute; z-index: 10;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: floatCard 6s ease-in-out infinite;
}
.fc-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-num { font-size: 15px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.fc-label { font-size: 11px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

.fc-revenue { top: -20px; left: -30px; animation-delay: 0s; }
.fc-events  { bottom: 60px; right: -30px; animation-delay: 2s; }
.fc-inq     { bottom: -10px; left: 20px; animation-delay: 4s; }

@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}

/* Mockup window */
.mockup-window {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.12);
}
.mockup-bar {
  background: #F3F4F6;
  border-bottom: 1px solid #E5E7EB;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 7px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #22C55E; }
.mockup-url {
  margin-left: 10px; font-size: 11px; color: #9CA3AF;
  background: #E9EAEC; padding: 2px 12px; border-radius: 6px; font-family: monospace;
}
.mockup-body { display: flex; }

/* Sidebar */
.mockup-sidebar {
  width: 130px; flex-shrink: 0;
  background: #FAF5FF; border-right: 1px solid #EDE9FE;
  padding: 10px 6px;
  display: flex; flex-direction: column; gap: 2px;
}
.sb-logo { padding: 8px 10px 12px; }
.sb-item {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 10px; border-radius: 8px;
  font-size: 11px; color: #6B7280; cursor: default;
  transition: background .15s;
}
.sb-item:hover, .sb-item.active {
  background: #EDE9FE; color: var(--primary-dark); font-weight: 600;
}

/* Main content */
.mockup-content { flex: 1; padding: 12px 16px; overflow: hidden; }
.mc-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mc-title { font-size: 12px; font-weight: 700; color: var(--text-dark); }
.mc-btn {
  font-size: 10px; font-weight: 600; color: var(--primary-mid);
  background: #EDE9FE; padding: 4px 10px; border-radius: 6px; cursor: default;
}

/* Mini calendar in mockup */
.mini-cal { margin-bottom: 10px; }
.cal-days-row {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 1px; margin-bottom: 3px;
}
.cal-days-row span { text-align: center; font-size: 9px; color: #9CA3AF; font-weight: 600; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 500; color: #374151;
  border-radius: 4px; cursor: default;
}
.cal-day.muted { color: #D1D5DB; }
.cal-day.today { background: var(--primary-mid); color: #fff; font-weight: 700; }
.cal-day.ev { font-weight: 700; border-radius: 4px; }
.cal-day.ev-purple { background: #EDE9FE; color: #7C3AED; }
.cal-day.ev-pink   { background: #FCE7F3; color: #BE185D; }
.cal-day.ev-indigo { background: #E0E7FF; color: #4338CA; }

/* Event list in mockup */
.mc-events { display: flex; flex-direction: column; gap: 5px; }
.mc-event {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 8px; background: #FAFAFA;
  border: 1px solid #F3F4F6; border-radius: 8px;
}
.mc-ev-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mc-ev-info { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.mc-ev-name { font-size: 10px; font-weight: 600; color: var(--text-dark); }
.mc-ev-time { font-size: 9px; color: var(--text-muted); }
.mc-ev-badge { font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 5px; flex-shrink: 0; }
.mc-ev-badge.confirmed { background: #DCFCE7; color: #15803D; }
.mc-ev-badge.pending   { background: #FEF9C3; color: #A16207; }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 0 48px; }
.stat-n {
  display: block;
  font-size: 2.8rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; letter-spacing: -1px;
}
.stat-l { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ══════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════ */
.section-header { margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary-mid); background: #EDE9FE;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  color: var(--text-dark); line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub { font-size: 17px; color: var(--text-muted); line-height: 1.65; max-width: 520px; }

/* ══════════════════════════════════════════
   FEATURES — BENTO GRID
══════════════════════════════════════════ */
.features { padding: 96px 0; }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(124,58,237,.12);
  border-color: #DDD6FE;
}

/* Large card — Calendar */
.bento-lg {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 420px;
}

/* Default cards */
.bento-card:not(.bento-lg) { grid-column: span 2; }

.bento-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bento-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.bento-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Bento calendar preview */
.bento-cal-preview { margin-top: auto; }
.bcp-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px; font-size: 12px; font-weight: 600; color: var(--text-dark);
}
.bcp-dots { display: flex; gap: 5px; }
.bcp-dots span { width: 8px; height: 8px; border-radius: 50%; }
.bcp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.bcp-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: var(--text-body);
  border-radius: 6px;
}
.bcp-day.head { font-size: 10px; color: var(--text-muted); font-weight: 600; }
.bcp-day.today { background: var(--primary-mid); color: #fff; font-weight: 700; }
.bcp-day.ev { font-weight: 700; }

/* Bento property pills */
.bento-prop-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.bento-prop-pills span {
  font-size: 12px; font-weight: 500;
  background: #F3F4F6; color: #374151;
  padding: 4px 10px; border-radius: 8px;
}

/* Bento status row */
.bento-status-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.bst { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 8px; }
.bst.open     { background: #EDE9FE; color: #7C3AED; }
.bst.followup { background: #FEF9C3; color: #A16207; }
.bst.closed   { background: #DCFCE7; color: #15803D; }

/* Bento roles */
.bento-roles { display: flex; gap: 5px; flex-wrap: wrap; margin-top: auto; }
.bento-roles span {
  font-size: 11px; font-weight: 600;
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
  color: var(--primary-dark);
  padding: 3px 9px; border-radius: 6px;
}

/* Mini bar chart */
.mini-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 56px; margin-top: auto;
  padding: 8px 0 0;
}
.bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #7C3AED, #A78BFA);
  opacity: .75; transition: opacity .2s;
}
.bento-card:hover .bar { opacity: 1; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how { padding: 96px 0; background: var(--surface); }

.steps-h {
  display: flex; align-items: flex-start; gap: 0;
}
.step-h { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.step-line {
  flex: 0 0 60px; height: 2px;
  background: linear-gradient(to right, #DDD6FE, #C4B5FD);
  margin-top: 36px; flex-shrink: 0;
}
.step-num-h {
  font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--primary-mid);
  text-transform: uppercase; margin-bottom: -4px;
}
.step-icon-h {
  width: 64px; height: 64px; border-radius: 20px;
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(124,58,237,.2);
}
.step-h h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); }
.step-h p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 220px; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact { padding: 96px 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

/* Contact info cards */
.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #DDD6FE; }
.whatsapp-card:hover { border-color: #BBF7D0; box-shadow: 0 8px 24px rgba(34,197,94,.12); }

.cc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cc-body { display: flex; flex-direction: column; gap: 2px; }
.cc-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.cc-value { font-size: 15px; font-weight: 700; color: var(--text-dark); }

/* Contact form */
.contact-form-wrap { }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.req { color: #EF4444; }
.optional { color: var(--text-muted); font-weight: 400; font-size: 12px; }

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px; font-family: inherit;
  color: var(--text-dark); background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(144,100,246,.12);
}
.form-group input.has-error,
.form-group textarea.has-error { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }

.field-error { font-size: 12px; color: #EF4444; min-height: 16px; font-weight: 500; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-error-global { font-size: 13px; color: #EF4444; font-weight: 500; }
.btn-submit { display: inline-flex; align-items: center; gap: 8px; min-width: 160px; justify-content: center; }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none !important; }
.spinner { width: 18px; height: 18px; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Contact success */
.contact-success { text-align: center; padding: 52px 32px; background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: var(--radius); }
.success-icon {
  width: 60px; height: 60px; background: #22C55E; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.contact-success h3 { font-size: 20px; font-weight: 700; color: #15803D; margin-bottom: 8px; }
.contact-success p  { color: #166534; font-size: 15px; line-height: 1.6; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 96px 24px; text-align: center;
}
.cta-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.cta-orb-1 { width: 400px; height: 400px; background: rgba(255,255,255,.06); top: -150px; right: -80px; }
.cta-orb-2 { width: 300px; height: 300px; background: rgba(124,58,237,.4); bottom: -120px; left: -60px; }
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  color: #fff; letter-spacing: -1px; margin-bottom: 14px;
}
.cta-inner p  { font-size: 17px; color: rgba(255,255,255,.75); margin: 0 auto 36px; max-width: 440px; line-height: 1.6; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: #0F0B1F; padding: 64px 0 0; }
.footer-inner { display: flex; gap: 64px; align-items: flex-start; flex-wrap: wrap; }
.footer-brand { max-width: 280px; }
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s;
}
.footer-contact a:hover { color: rgba(255,255,255,.9); }
.footer-links { display: flex; gap: 48px; margin-left: auto; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.06); padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.25); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento-lg { grid-column: span 4; grid-row: span 1; }
  .bento-card:not(.bento-lg) { grid-column: span 2; }
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { align-items: center; text-align: center; }
  .hero-sub { max-width: 520px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .fc-revenue { left: -10px; }
  .fc-events  { right: -10px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-login { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 120px 24px 64px; min-height: auto; }
  .hero-visual { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-lg, .bento-card:not(.bento-lg) { grid-column: span 1; grid-row: span 1; }
  .steps-h { flex-direction: column; align-items: center; gap: 32px; }
  .step-line { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { margin-left: 0; }
  .stats-grid { gap: 24px; justify-content: space-around; }
  .stat-item { padding: 0 12px; }
  .stat-divider { display: none; }
}

@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
