/* ============================================================
   MARKKETING.NAT — Design System & Funnel Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

/* ── TOKENS ── */
:root {
  --bg-gray:    #eaeae9;
  --navy:       #16243d;
  --sky:        #dceaff;
  --purple:     #6479fe;
  --purple-dark:#4d60e8;
  --lime:       #d0eb0c;
  --white:      #ffffff;
  --text-muted: #5a6a85;
  --border:     rgba(22,36,61,0.1);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;
  --shadow-sm:  0 2px 12px rgba(22,36,61,0.07);
  --shadow-md:  0 8px 32px rgba(22,36,61,0.12);
  --shadow-lg:  0 20px 60px rgba(100,121,254,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-body:  'Inter', sans-serif;
  --font-head:  'Syne', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-gray);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-gray); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid var(--border); color: var(--text-muted); background: var(--white);
}
.tag.accent { background: var(--lime); color: var(--navy); border-color: var(--lime); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-xl);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: var(--transition); white-space: nowrap; font-family: var(--font-body);
}
.btn-primary {
  background: var(--purple); color: var(--white);
  box-shadow: 0 4px 24px rgba(100,121,254,0.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(100,121,254,0.45);
}
.btn-secondary {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--border);
}
.btn-secondary:hover { background: var(--sky); border-color: var(--purple); transform: translateY(-2px); }
.btn-lime {
  background: var(--lime); color: var(--navy);
  box-shadow: 0 4px 20px rgba(208,235,12,0.3);
}
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(208,235,12,0.45); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .tag { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(234,234,233,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: 40px; border-radius: 8px; }
.nav-logo-text { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--navy); transition: var(--transition); }
.nav-links a:hover { color: var(--purple); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); padding: 24px; z-index: 999;
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  flex-direction: column; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 600; font-size: 1rem; color: var(--navy); padding: 8px 0; border-bottom: 1px solid var(--border); }

/* ── HERO ── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--navy);
  padding-top: 72px;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--purple); top: -200px; right: -150px; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--lime); bottom: -100px; left: -100px; }
.hero-orb-3 { width: 300px; height: 300px; background: #dceaff; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
  padding-top: 40px; padding-bottom: 80px;
}
.hero-text .tag { background: rgba(208,235,12,0.15); border-color: var(--lime); color: var(--lime); margin-bottom: 28px; }
.hero-text h1 { color: var(--white); margin-bottom: 24px; }
.hero-text h1 span { color: var(--lime); }
.hero-text p { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust { margin-top: 56px; display: flex; align-items: center; gap: 32px; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-item span { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.hero-trust-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--lime); }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px;
  backdrop-filter: blur(20px); color: var(--white);
}
.hero-card-main { padding: 32px; }
.hero-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.hero-metric {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.hero-metric .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--lime); }
.hero-metric .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.hero-card-floating {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--lime); border-radius: var(--radius-md); padding: 18px 22px;
  color: var(--navy); min-width: 180px; box-shadow: var(--shadow-lg);
}
.hero-card-floating .hcf-label { font-size: 0.8rem; font-weight: 600; opacity: 0.7; }
.hero-card-floating .hcf-val { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; }
.hero-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-top: 16px; }
.hero-chart-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,0.18);
  transition: height 1s ease;
}
.hero-chart-bar.active { background: var(--purple); }
.hero-chart-bar.highlight { background: var(--lime); }

/* ── LOGOS / TRUST STRIP ── */
#trust-strip {
  background: var(--navy); padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 16px; }
.trust-strip-label { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 500; white-space: nowrap; }
.trust-strip-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.12); }
.trust-badges { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; font-weight: 600;
}
.trust-badge svg { color: rgba(255,255,255,0.3); }

/* ── PAIN SECTION ── */
#pain { background: var(--white); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.pain-item {
  padding: 40px 32px; border: 1px solid var(--border);
  transition: var(--transition); background: var(--white);
}
.pain-item:hover { background: var(--sky); }
.pain-item:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.pain-item:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.pain-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--purple); }
.pain-item h3 { margin-bottom: 12px; }

/* ── SOLUTION ── */
#solution { background: var(--bg-gray); }
.solution-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.solution-text .tag { margin-bottom: 20px; }
.solution-text h2 { margin-bottom: 20px; }
.solution-check { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.solution-check-item { display: flex; align-items: flex-start; gap: 14px; }
.solution-check-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--lime);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.solution-check-icon svg { width: 14px; height: 14px; color: var(--navy); }
.solution-visual {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 40px; position: relative; overflow: hidden;
}
.solution-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; background: var(--purple);
  border-radius: 50%; filter: blur(60px); opacity: 0.5;
}
.sol-flow { display: flex; flex-direction: column; gap: 0; }
.sol-flow-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; position: relative;
}
.sol-flow-item:not(:last-child)::after {
  content: ''; position: absolute; left: 20px; top: 52px;
  width: 2px; height: calc(100% - 16px);
  background: repeating-linear-gradient(to bottom, var(--purple) 0, var(--purple) 4px, transparent 4px, transparent 8px);
}
.sol-flow-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(100,121,254,0.2); border: 2px solid var(--purple);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-weight: 800; font-size: 0.85rem;
  font-family: var(--font-head);
}
.sol-flow-text h4 { color: var(--white); margin-bottom: 4px; }
.sol-flow-text p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 56px; flex-wrap: wrap; }
.service-tab {
  padding: 10px 22px; border-radius: 100px;
  font-weight: 600; font-size: 0.88rem;
  border: 1.5px solid var(--border); color: var(--text-muted);
  transition: var(--transition); cursor: pointer;
}
.service-tab.active, .service-tab:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }
.services-panel { display: none; }
.services-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 36px 28px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--sky) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: var(--purple); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--bg-gray); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition); color: var(--purple);
}
.service-card:hover .service-card-icon { background: var(--purple); color: var(--white); }
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p  { font-size: 0.92rem; }
.service-card-tag {
  display: inline-block; margin-top: 16px; padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; background: var(--lime); color: var(--navy);
}

/* ── HOW IT WORKS ── */
#process { background: var(--sky); }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: calc(100%/6); right: calc(100%/6);
  height: 2px; background: repeating-linear-gradient(to right, var(--purple) 0, var(--purple) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 28px; position: relative; z-index: 1; }
.process-num {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--purple); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--purple);
  box-shadow: var(--shadow-sm);
}
.process-step h3 { margin-bottom: 12px; }
.process-step p { font-size: 0.92rem; }

/* ── RESULTS / STATS ── */
#results { background: var(--navy); }
.results-inner { text-align: center; }
.results-inner h2 { color: var(--white); margin-bottom: 16px; }
.results-inner > p { color: rgba(255,255,255,0.6); margin-bottom: 64px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.stat-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 24px; text-align: center; transition: var(--transition);
}
.stat-card:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.stat-card:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.stat-card:hover { background: rgba(100,121,254,0.15); border-color: var(--purple); }
.stat-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--lime); display: block; }
.stat-suffix { color: var(--lime); font-family: var(--font-head); font-size: 2rem; font-weight: 800; }
.stat-label { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 8px; }
.results-cta { margin-top: 64px; }
.results-highlight {
  background: rgba(208,235,12,0.08); border: 1px solid rgba(208,235,12,0.2);
  border-radius: var(--radius-lg); padding: 48px; margin-top: 56px; text-align: center;
}
.results-highlight h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.results-highlight p  { color: rgba(255,255,255,0.6); margin-bottom: 28px; }

/* ── LEAD CAPTURE ── */
#contacto { background: var(--bg-gray); }
.capture-wrapper {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.capture-text .tag { margin-bottom: 20px; }
.capture-text h2 { margin-bottom: 16px; }
.capture-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.capture-perk { display: flex; align-items: center; gap: 14px; }
.capture-perk-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--sky);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.capture-perk span { font-weight: 600; font-size: 0.95rem; }
.capture-form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.capture-form-box h3 { margin-bottom: 8px; }
.capture-form-box .form-subtitle { font-size: 0.92rem; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
input, select, textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--bg-gray);
  color: var(--navy); font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--purple); background: var(--white); box-shadow: 0 0 0 3px rgba(100,121,254,0.12); }
textarea { resize: vertical; min-height: 100px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6a85' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; }
.form-submit { width: 100%; padding: 16px; border-radius: var(--radius-xl); font-size: 1rem; font-weight: 700; background: var(--purple); color: var(--white); transition: var(--transition); font-family: var(--font-body); }
.form-submit:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.form-footer { text-align: center; margin-top: 16px; font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-success {
  display: none; text-align: center; padding: 40px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; text-align: left; font-weight: 600; font-size: 1.05rem;
  color: var(--navy); cursor: pointer; font-family: var(--font-body);
  transition: var(--transition);
}
.faq-question:hover { color: var(--purple); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--text-muted); }
.faq-item.open .faq-icon { background: var(--purple); border-color: var(--purple); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer-inner { padding-bottom: 24px; color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── FOOTER ── */
#footer { background: var(--navy); color: rgba(255,255,255,0.6); }
.footer-main { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9rem; max-width: 260px; line-height: 1.7; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--lime); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: rgba(255,255,255,0.6);
}
.footer-social a:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.85rem; }
.footer-bottom a { font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--lime); }

/* ── FLOATING ELEMENTS ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: var(--transition); animation: pulse-wa 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.float-wa svg { width: 30px; height: 30px; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes float-hero { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.anim-float { animation: float-hero 5s ease-in-out infinite; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── VIDEO/DEMO MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(22,36,61,0.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); padding: 36px; max-width: 580px; width: 90%; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-gray); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; transition: var(--transition); }
.modal-close:hover { background: var(--purple); color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-card:nth-child(1) { border-radius: var(--radius-md) 0 0 0; }
  .stat-card:nth-child(2) { border-radius: 0 var(--radius-md) 0 0; }
  .stat-card:nth-child(3) { border-radius: 0 0 0 var(--radius-md); }
  .stat-card:nth-child(4) { border-radius: 0 0 var(--radius-md) 0; }
}
@media (max-width:768px) {
  .section { padding: 72px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding-top: 20px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-item:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .pain-item:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .solution-inner, .capture-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .services-panel.active { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .capture-form-box { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .float-wa { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
