/* ─────────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────────── */
:root {
  --brand: #00A1DC;
  --brand-hover: #0089BB;
  --brand-light: #39C4F0;
  --brand-glow: rgba(0,161,220,0.18);
  --brand-glow-md: rgba(0,161,220,0.12);
  --brand-glow-sm: rgba(0,161,220,0.07);
  --gradient: linear-gradient(135deg, #00A1DC 0%, #0089BB 50%, #39C4F0 100%);
  --gradient-text: linear-gradient(135deg, #39C4F0 0%, #00A1DC 60%, #0089BB 100%);
  --bg: #04313D;
  --bg-secondary: #0A3F4D;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --border: rgba(0,161,220,0.18);
  --border-bright: rgba(0,161,220,0.35);
  --border-subtle: rgba(255,255,255,0.06);
  --text: #FFFFFF;
  --text-secondary: #C7D6DB;
  --text-muted: rgba(199,214,219,0.55);
  --nav-bg: rgba(4,49,61,0.92);
  --shadow-glow: 0 0 60px rgba(0,161,220,0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.35);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-full: 100px;
}

[data-theme="light"] {
  --bg: #F0FAFF;
  --bg-secondary: #FFFFFF;
  --bg-card: rgba(255,255,255,0.85);
  --bg-card-hover: #FFFFFF;
  --border: rgba(0,161,220,0.2);
  --border-bright: rgba(0,161,220,0.4);
  --border-subtle: rgba(0,161,220,0.1);
  --text: #04313D;
  --text-secondary: #2E6070;
  --text-muted: rgba(46,96,112,0.6);
  --nav-bg: rgba(240,250,255,0.92);
  --shadow-glow: 0 0 60px rgba(0,161,220,0.1);
  --shadow-card: 0 4px 30px rgba(0,161,220,0.08);
  --bg-card: rgba(255,255,255,0.7);
}

/* ─────────────────────────────────────────────────
   LOADING SCREEN
───────────────────────────────────────────────── */
#loading-screen {
  position: fixed; inset: 0; z-index: 10000;
  background: #04313D;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loading-screen.fade-out { opacity: 0; visibility: hidden; }
.loading-logo {
  display: flex; align-items: center; gap: 0.75rem;
  animation: loadPulse 1.2s ease-in-out infinite;
}
.loading-mark {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #00A1DC, #39C4F0);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 0 40px rgba(0,161,220,0.5), 0 0 80px rgba(0,161,220,0.2);
}
.loading-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.loading-text span { color: #39C4F0; }
.loading-bar-wrap {
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.loading-bar {
  height: 100%;
  background: linear-gradient(90deg, #00A1DC, #39C4F0);
  border-radius: 2px;
  animation: loadBar 1.4s ease-in-out forwards;
}
@keyframes loadBar { from{width:0} to{width:100%} }
@keyframes loadPulse { 0%,100%{opacity:1} 50%{opacity:0.7} }

/* ─────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.3s ease;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: none; }
img { max-width: 100%; }

/* ─── CUSTOM CURSOR ─── */
#cur, #cur-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: transform;
}
#cur {
  width: 8px; height: 8px;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
#cur-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(0,161,220,0.5);
  transition: width 0.25s ease, height 0.25s ease;
}
body.cursor-hover #cur { width: 16px; height: 16px; opacity: 0.7; }
body.cursor-hover #cur-ring { width: 44px; height: 44px; }

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

/* ─── UTILITIES ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.75rem; }
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,161,220,0.1);
  border: 1px solid rgba(0,161,220,0.25);
  color: var(--brand);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
}
.tag-dot {
  width: 5px; height: 5px;
  background: var(--brand); border-radius: 50%;
  box-shadow: 0 0 6px var(--brand);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.section { padding: 6rem 0; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.15; margin: 1rem 0 0.9rem;
}
.section-sub {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 520px; margin: 0 auto;
  line-height: 1.75; font-weight: 400;
}

/* ─────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; padding: 1.1rem 0;
  transition: all 0.35s ease;
}
#nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.nav-wrap {
  display: flex; align-items: center; gap: 1.5rem;
  max-width: 1160px; margin: 0 auto; padding: 0 1.75rem;
}
.logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--gradient); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.8rem; color: #fff;
  box-shadow: 0 0 20px rgba(0,161,220,0.35);
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--text); }
.logo-text span { color: var(--brand); }

nav ul {
  display: flex; align-items: center; gap: 0.15rem;
  list-style: none; flex: 1; justify-content: center;
}
nav ul a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  padding: 0.45rem 0.9rem; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
nav ul a:hover { color: var(--text); background: var(--brand-glow-sm); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.theme-toggle {
  width: 38px; height: 38px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: none; transition: all 0.2s; color: var(--text-secondary);
}
.theme-toggle:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost {
  background: transparent; border: 1px solid var(--border); color: var(--text-secondary);
  padding: 0.45rem 1.1rem; border-radius: 9px; font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--brand); color: var(--text); }
.btn-brand {
  background: var(--gradient); color: #fff;
  padding: 0.5rem 1.3rem; border-radius: 9px;
  font-size: 0.875rem; font-weight: 600; border: none;
  transition: all 0.25s; box-shadow: 0 0 20px rgba(0,161,220,0.25);
  white-space: nowrap;
}
.btn-brand:hover { transform: translateY(-1px); box-shadow: 0 0 35px rgba(0,161,220,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text-secondary); border-radius: 2px; transition: all 0.3s; }
.mobile-nav {
  position: fixed; inset: 0; z-index: 300; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.75rem; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--text); }
.mobile-nav a:hover { color: var(--brand); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.75rem; background: none; border: none; font-size: 1.4rem; color: var(--text-secondary); }

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 0 5rem; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,161,220,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,161,220,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
}
.bg-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.bg-orb-1 { width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(0,161,220,0.09) 0%, transparent 70%); top: -100px; left: -200px; animation: orbDrift 12s ease-in-out infinite; }
.bg-orb-2 { width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(57,196,240,0.06) 0%, transparent 70%); top: 30%; right: -100px; animation: orbDrift 15s ease-in-out infinite reverse; }
@keyframes orbDrift { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(20px,-30px) scale(1.04)} }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(0,161,220,0.08); border: 1px solid rgba(0,161,220,0.22);
  border-radius: var(--radius-full); padding: 0.35rem 1rem 0.35rem 0.5rem;
  font-size: 0.78rem; font-weight: 600; color: var(--brand);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.75rem; animation: fadeUp 0.7s ease both;
}
.badge-icon { width: 22px; height: 22px; background: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: #fff; }
.hero-h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 1.4rem; animation: fadeUp 0.7s ease 0.08s both; }
.hero-p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; font-weight: 400; max-width: 480px; margin-bottom: 2.25rem; animation: fadeUp 0.7s ease 0.16s both; }
.hero-btns { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.24s both; }
.btn-hero-primary {
  background: var(--gradient); color: #fff; padding: 0.8rem 2rem;
  border-radius: 11px; font-size: 0.95rem; font-weight: 600; border: none;
  box-shadow: 0 0 35px rgba(0,161,220,0.3);
  display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 0 55px rgba(0,161,220,0.45); }
.btn-hero-secondary {
  background: transparent; border: 1px solid var(--border); color: var(--text);
  padding: 0.8rem 2rem; border-radius: 11px; font-size: 0.95rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
}
.btn-hero-secondary:hover { border-color: var(--brand); background: var(--brand-glow-sm); transform: translateY(-2px); }
.hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; animation: fadeUp 0.7s ease 0.32s both; }
.trust-avatars { display: flex; }
.trust-avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -8px; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; background: var(--bg-secondary); }
.trust-avatars .trust-avatar:first-child { margin-left: 0; }
.trust-text { font-size: 0.8rem; color: var(--text-secondary); }
.trust-text strong { color: var(--text); font-weight: 600; }
.hero-right { position: relative; animation: fadeUp 0.7s ease 0.2s both; }
.dash-wrapper { position: relative; padding: 1.5rem 1rem 1rem; }
.dash-frame {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 80px rgba(0,161,220,0.1), 0 30px 80px rgba(0,0,0,0.3);
  position: relative;
}
[data-theme="light"] .dash-frame { background: #ffffff; box-shadow: 0 0 40px rgba(0,161,220,0.08), 0 20px 60px rgba(0,100,150,0.1); }
.dash-frame::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,161,220,0.5), transparent); }
.dash-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-subtle); background: rgba(0,0,0,0.08); }
[data-theme="light"] .dash-bar { background: rgba(0,161,220,0.04); }
.dash-dot { width: 9px; height: 9px; border-radius: 50%; }
.dash-dot:nth-child(1) { background: #FF5F57; }
.dash-dot:nth-child(2) { background: #FEBC2E; }
.dash-dot:nth-child(3) { background: #28C840; }
.dash-url { flex: 1; margin: 0 0.75rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle); border-radius: 5px; padding: 0.25rem 0.75rem; font-size: 0.7rem; color: var(--text-muted); text-align: center; }
.dash-content { display: flex; }
.dash-sidebar { width: 160px; flex-shrink: 0; padding: 1rem 0.75rem; border-right: 1px solid var(--border-subtle); }
.dash-logo-small { display: flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.5rem; margin-bottom: 1rem; }
.dlm { width: 22px; height: 22px; background: var(--gradient); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 800; color: #fff; }
.dlt { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; color: var(--text); }
.dash-nav-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.42rem 0.6rem; border-radius: 7px; font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 0.15rem; transition: all 0.2s; }
.dash-nav-item.active { background: rgba(0,161,220,0.12); color: var(--brand); font-weight: 600; }
.dash-nav-item:hover:not(.active) { background: var(--bg-card); color: var(--text); }
.dash-main-area { flex: 1; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.dash-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.dash-stat { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 9px; padding: 0.7rem 0.8rem; }
.ds-label { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.3rem; }
.ds-val { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--brand); line-height: 1; }
.ds-change { font-size: 0.62rem; color: #4ade80; margin-top: 0.2rem; }
.dash-chart-row { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 9px; padding: 0.8rem; }
.dc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.dc-title { font-size: 0.7rem; font-weight: 600; color: var(--text); }
.dc-badge { font-size: 0.6rem; color: var(--brand); background: rgba(0,161,220,0.1); padding: 0.15rem 0.4rem; border-radius: 4px; }
.mini-bars { display: flex; align-items: flex-end; gap: 3px; height: 50px; }
.mini-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(0,161,220,0.25); min-height: 4px; }
.mini-bar.hi { background: var(--brand); }
.dash-items-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.dash-item { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 9px; padding: 0.7rem 0.8rem; display: flex; align-items: center; gap: 0.55rem; }
.di-emoji { font-size: 1.1rem; }
.di-name { font-size: 0.68rem; font-weight: 600; color: var(--text); }
.di-sub { font-size: 0.6rem; color: var(--text-muted); }
.di-views { font-size: 0.62rem; color: var(--brand); font-weight: 600; margin-left: auto; flex-shrink: 0; }
.float-card {
  position: absolute; background: var(--bg-secondary); border: 1px solid var(--border-bright);
  border-radius: 12px; padding: 0.8rem 1rem;
  backdrop-filter: blur(20px); box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 0 20px rgba(0,161,220,0.08);
  font-size: 0.78rem; z-index: 10;
}
[data-theme="light"] .float-card { background: #fff; box-shadow: 0 4px 20px rgba(0,100,150,0.12); }
.fc-qr { top: 0; right: -20px; display: flex; align-items: center; gap: 0.65rem; animation: floatCard 5s ease-in-out infinite; }
.fc-review { bottom: 60px; left: -25px; animation: floatCard 6s ease-in-out infinite 1.2s; }
.fc-promo { top: 40%; right: -30px; display: flex; align-items: center; gap: 0.6rem; animation: floatCard 7s ease-in-out infinite 0.6s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-icon { width: 34px; height: 34px; background: var(--gradient); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.fc-label { font-weight: 600; font-size: 0.78rem; color: var(--text); }
.fc-sub { font-size: 0.68rem; color: var(--text-secondary); }
.fc-stars { color: #FEBC2E; margin-bottom: 0.2rem; font-size: 0.8rem; }
.fc-promo-badge { background: rgba(0,161,220,0.15); border: 1px solid rgba(0,161,220,0.3); border-radius: 5px; padding: 0.2rem 0.55rem; font-size: 0.7rem; font-weight: 700; color: var(--brand); }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ─────────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────────── */
#trust-strip { padding: 3rem 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); position: relative; z-index: 2; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.trust-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.35rem; }
.trust-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 400; }

/* ─────────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.feat-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 1.6rem 1.4rem; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); position: relative; overflow: hidden; }
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient); opacity: 0; transition: opacity 0.3s; }
.feat-card:hover { border-color: var(--border); background: var(--bg-card-hover); transform: translateY(-5px); box-shadow: var(--shadow-card), 0 0 30px var(--brand-glow-sm); }
.feat-card:hover::before { opacity: 1; }
.feat-icon { width: 42px; height: 42px; background: rgba(0,161,220,0.1); border: 1px solid rgba(0,161,220,0.18); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; transition: all 0.3s; }
.feat-card:hover .feat-icon { background: rgba(0,161,220,0.18); box-shadow: 0 0 20px rgba(0,161,220,0.2); }
.feat-name { font-family: var(--font-display); font-size: 0.92rem; font-weight: 600; margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.feat-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }

/* ─────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; position: relative; }
.steps::after { content: ''; position: absolute; top: 34px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent); }
.step { text-align: center; position: relative; }
.step-circle { width: 68px; height: 68px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 1.1rem; position: relative; z-index: 1; transition: all 0.3s; }
.step:hover .step-circle { border-color: var(--brand); box-shadow: 0 0 25px var(--brand-glow); transform: scale(1.08); }
.step-n { position: absolute; top: -5px; right: -5px; width: 20px; height: 20px; background: var(--gradient); border-radius: 50%; font-size: 0.6rem; font-weight: 800; color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); }
.step-title { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.35rem; }
.step-desc { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.55; }

/* ─────────────────────────────────────────────────
   COMPARISON
───────────────────────────────────────────────── */
.compare-wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; max-width: 860px; margin: 0 auto; }
.compare-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 2.25rem; }
.compare-card.winner { border-color: var(--border); box-shadow: 0 0 50px var(--brand-glow-sm); position: relative; }
.compare-card.winner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.compare-label { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.compare-row { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border-subtle); font-size: 0.875rem; color: var(--text-secondary); }
.compare-row:last-child { border-bottom: none; }
.ci { font-size: 0.8rem; flex-shrink: 0; }
.compare-vs { display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; }

/* ─────────────────────────────────────────────────
   INDUSTRIES
───────────────────────────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.ind-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 1.75rem 1.4rem; text-align: center; transition: all 0.3s; }
.ind-card:hover { border-color: var(--border); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.ind-emoji { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.ind-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; }
.ind-desc { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.55; }

/* ─────────────────────────────────────────────────
   HOTEL MODE
───────────────────────────────────────────────── */
.hotel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hotel-features { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.hotel-feat { display: flex; align-items: flex-start; gap: 1rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 1rem 1.2rem; transition: all 0.25s; }
.hotel-feat:hover { border-color: var(--border); transform: translateX(5px); }
.hf-ico { width: 38px; height: 38px; background: rgba(0,161,220,0.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hf-t { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.15rem; font-family: var(--font-display); }
.hf-d { font-size: 0.78rem; color: var(--text-secondary); }
.hotel-visual { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 0 50px var(--brand-glow-sm); }
[data-theme="light"] .hotel-visual { background: #fff; }
.hv-header { padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--border-subtle); font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.hv-grid { padding: 1.1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.hv-item { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 0.9rem; display: flex; align-items: center; gap: 0.55rem; font-size: 0.78rem; transition: all 0.2s; }
.hv-item:hover { border-color: var(--border); background: var(--bg-card-hover); }
.hv-ico { font-size: 1.1rem; }
.hv-l { font-weight: 500; }
.hv-s { font-size: 0.68rem; color: var(--text-secondary); }
.hv-footer { padding: 0 1.1rem 1.1rem; }
.hv-qr-bar { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 0.9rem; display: flex; align-items: center; gap: 0.75rem; }
.hv-qr-ico { width: 36px; height: 36px; background: var(--gradient); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hv-qr-t { font-size: 0.78rem; font-weight: 600; }
.hv-qr-s { font-size: 0.68rem; color: var(--text-secondary); }
.hv-active { margin-left: auto; font-size: 0.68rem; color: #4ade80; }

/* ─────────────────────────────────────────────────
   ANALYTICS
───────────────────────────────────────────────── */
.analytics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.chart-panel { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: 0 0 40px var(--brand-glow-sm); }
[data-theme="light"] .chart-panel { background: #fff; }
.cp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.cp-title { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; }
.cp-badge { font-size: 0.7rem; color: #4ade80; background: rgba(74,222,128,0.1); padding: 0.2rem 0.6rem; border-radius: 5px; }
.sparkline { display: flex; align-items: flex-end; gap: 5px; height: 90px; }
.sp-bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(0,161,220,0.2); min-height: 5px; }
.sp-bar.high { background: var(--brand); }
.mini-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1rem; }
.mini-stat { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 1rem; }
.ms-label { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 0.35rem; }
.ms-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--brand); }
.ms-change { font-size: 0.68rem; color: #4ade80; margin-top: 0.2rem; }
.a-cards { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.a-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: 1.1rem; }
.a-ico { width: 40px; height: 40px; background: rgba(0,161,220,0.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.a-label { font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 0.2rem; }
.a-val { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.a-bar-wrap { flex: 1; height: 4px; background: var(--border-subtle); border-radius: 2px; overflow: hidden; margin-left: auto; width: 70px; }
.a-bar-fill { height: 100%; background: var(--gradient); border-radius: 2px; }

/* ─────────────────────────────────────────────────
   PRICING — UPDATED
───────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: all 0.35s;
  display: flex; flex-direction: column;
}
.price-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.price-card.pop {
  border-color: rgba(0,161,220,0.4);
  background: linear-gradient(135deg, rgba(0,161,220,0.06) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 80px rgba(0,161,220,0.12), 0 0 0 1px rgba(0,161,220,0.2);
  transform: scale(1.03);
}
.price-card.pop:hover { transform: scale(1.03) translateY(-4px); box-shadow: 0 0 100px rgba(0,161,220,0.2); }
.price-card.pop::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); }
.pop-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gradient); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.25rem 0.8rem; border-radius: var(--radius-full);
  margin-bottom: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase;
  width: fit-content;
}
.price-tier { font-size: 0.72rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem; font-weight: 600; }
.price-amt-row { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.3rem; }
.price-amt { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -0.04em; }
.price-currency { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); }
.price-note { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 2rem; }
.price-feats { list-style: none; margin-bottom: 2rem; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border-subtle); font-size: 0.84rem; color: var(--text-secondary); }
.price-feats li:last-child { border-bottom: none; }
.chk { color: var(--brand); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem; }
.price-btns { display: flex; flex-direction: column; gap: 0; margin-top: auto; }
.btn-order {
  width: 100%; padding: 0.9rem;
  border-radius: 11px; font-size: 0.92rem; font-weight: 600;
  cursor: none; transition: all 0.3s;
  background: var(--gradient); color: #fff; border: none;
  box-shadow: 0 0 25px rgba(0,161,220,0.2);
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,161,220,0.4); }
.price-card.pop .btn-order { box-shadow: 0 0 40px rgba(0,161,220,0.35); }

/* ─────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 1.9rem; transition: all 0.3s; }
.testi-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testi-stars { color: #FEBC2E; margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px; }
.testi-text { font-size: 0.875rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, rgba(0,161,220,0.3), rgba(57,196,240,0.15)); border: 1px solid rgba(0,161,220,0.25); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 0.875rem; font-family: var(--font-display); }
.testi-role { font-size: 0.75rem; color: var(--text-secondary); }

/* ─────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--border); }
.faq-q { padding: 1.1rem 1.4rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; font-weight: 500; user-select: none; cursor: none; }
.faq-ico { width: 22px; height: 22px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--brand); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 1.4rem 1.2rem; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.75; }

/* ─────────────────────────────────────────────────
   CONTACT CTA ABOVE FOOTER
───────────────────────────────────────────────── */
#contact-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0,161,220,0.08) 0%, transparent 60%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center; position: relative; overflow: hidden;
}
.contact-cta-glow {
  position: absolute; width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,161,220,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.contact-cta-inner { position: relative; z-index: 2; }
.contact-cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 0.75rem; }
.contact-cta-sub { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; max-width: 440px; margin: 0 auto 2.5rem; }
.contact-cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-call {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gradient); color: #fff;
  padding: 0.85rem 1.75rem; border-radius: 11px;
  font-size: 0.92rem; font-weight: 600; border: none;
  box-shadow: 0 0 30px rgba(0,161,220,0.25); transition: all 0.3s;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,161,220,0.4); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; border: 1px solid rgba(37,211,102,0.4); color: #25d366;
  padding: 0.85rem 1.75rem; border-radius: 11px;
  font-size: 0.92rem; font-weight: 600; transition: all 0.3s;
}
.btn-wa:hover { background: rgba(37,211,102,0.08); border-color: #25d366; transform: translateY(-2px); }
.contact-phones { margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.contact-phone { font-size: 0.85rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.4rem; }
.contact-phone strong { color: var(--text); font-weight: 600; }

/* ─────────────────────────────────────────────────
   CTA FINAL
───────────────────────────────────────────────── */
#cta-final { padding: 8rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; width: 700px; height: 350px; background: radial-gradient(ellipse, rgba(0,161,220,0.1) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1.1rem; line-height: 1.1; }
.cta-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border-subtle); padding: 4rem 0 2.25rem; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 4rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.9rem; line-height: 1.75; max-width: 230px; }
.footer-col-title { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 1.1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand); }

/* Social icons */
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-icon {
  width: 38px; height: 38px;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-secondary);
  transition: all 0.25s; text-decoration: none;
}
.social-icon:hover { border-color: var(--brand); color: var(--brand); background: rgba(0,161,220,0.08); transform: translateY(-3px); box-shadow: 0 5px 20px rgba(0,161,220,0.15); }
.social-icon.tiktok:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.social-icon.instagram:hover { border-color: #e1306c; color: #e1306c; background: rgba(225,48,108,0.08); }
.social-icon.whatsapp:hover { border-color: #25d366; color: #25d366; background: rgba(37,211,102,0.08); }

.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ─────────────────────────────────────────────────
   MODAL — PREMIUM
───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(4,49,61,0.75);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s; padding: 1rem;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  max-width: 540px; width: 100%; position: relative;
  box-shadow: 0 0 100px rgba(0,0,0,0.5), 0 0 50px var(--brand-glow);
  transform: translateY(20px); transition: transform 0.3s;
  max-height: 92vh; overflow-y: auto;
}
[data-theme="light"] .modal { background: #fff; }
.modal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 8px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--text-secondary); cursor: none; transition: all 0.2s; }
.modal-close:hover { border-color: var(--brand); color: var(--text); }
.modal-head { margin-bottom: 1.75rem; }
.modal-badge { margin-bottom: 0.75rem; }
.modal-title { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.modal-sub { font-size: 0.85rem; color: var(--text-secondary); }
.modal-pkg { background: rgba(0,161,220,0.08); border: 1px solid rgba(0,161,220,0.2); border-radius: 10px; padding: 0.85rem 1rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.pkg-icon { font-size: 1.3rem; }
.pkg-name { font-weight: 700; color: var(--brand); font-family: var(--font-display); font-size: 0.95rem; }
.pkg-price { font-size: 0.8rem; color: var(--text-secondary); }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.45rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 9px; padding: 0.72rem 0.9rem;
  font-family: var(--font-body); font-size: 0.875rem; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none;
}
[data-theme="light"] .form-input, [data-theme="light"] .form-select, [data-theme="light"] .form-textarea { background: #f7f9fa; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,161,220,0.12); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-select option { background: #0A3F4D; color: #fff; }
[data-theme="light"] .form-select option { background: #fff; color: #04313D; }
.btn-submit {
  width: 100%; padding: 0.95rem;
  background: var(--gradient); color: #fff; border: none;
  border-radius: 11px; font-size: 0.95rem; font-weight: 600;
  cursor: none; transition: all 0.3s;
  box-shadow: 0 0 30px rgba(0,161,220,0.25);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.5rem;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 0 45px rgba(0,161,220,0.4); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }
.success-state { text-align: center; padding: 1.5rem 0; display: none; }
.success-state.show { display: block; }
.success-icon { width: 72px; height: 72px; background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.25rem; animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn { from{transform:scale(0.5);opacity:0} to{transform:scale(1);opacity:1} }
.success-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.success-sub { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ─────────────────────────────────────────────────
   WHATSAPP FLOAT BUTTON
───────────────────────────────────────────────── */
#wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 400;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  text-decoration: none;
}
#wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }
#wa-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:0.4} 50%{transform:scale(1.4);opacity:0} }
.wa-svg { width: 28px; height: 28px; fill: #fff; }

/* ─────────────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 2rem; left: 2rem;
  z-index: 400;
  width: 44px; height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--brand);
  cursor: none; transition: all 0.3s;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
#back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-top:hover { border-color: var(--brand); background: rgba(0,161,220,0.1); transform: translateY(-3px); }

/* ─────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { gap: 2.5rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .pricing-grid { gap: 1rem; }
  .price-card.pop { transform: scale(1.01); }
  .price-card.pop:hover { transform: scale(1.01) translateY(-4px); }
}
@media (max-width: 768px) {
  nav ul, .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-p { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-right { padding: 0; }
  .float-card { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .compare-wrap { grid-template-columns: 1fr; }
  .compare-vs { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .hotel-grid { grid-template-columns: 1fr; }
  .analytics-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-card.pop { transform: none; }
  .price-card.pop:hover { transform: translateY(-4px); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .dash-sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  #wa-float { bottom: 1.25rem; right: 1.25rem; }
  #back-top { bottom: 1.25rem; left: 1.25rem; }
}
@media (max-width: 480px) {
  #hero { display: none}
  .theme-toggle { display: none}
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .contact-cta-btns { flex-direction: column; align-items: stretch; }
  .btn-call, .btn-wa { justify-content: center; }
}