/* ============================================================
   JANIMONY.CHAT — LANDING STYLES v4 — FULLY RESPONSIVE
   Fonts: Syne (display) + DM Sans (body)
   Breakpoints: 1200 | 1024 | 768 | 600 | 480 | 360
   ============================================================ */

:root {
  --black:     #0a0a0a;
  --dark:      #111114;
  --card:      #18181c;
  --border:    rgba(255,255,255,0.08);
  --white:     #ffffff;
  --off:       #a0a0b0;
  --accent:    #6c63ff;
  --accent2:   #c084fc;
  --green:     #22c55e;
  --red:       #ef4444;
  --radius:    14px;
  --radius-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* ── LAYOUT ── */
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* ── LABELS & TITLES ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 5vw, 54px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 40px; color: var(--white);
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s 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; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(10,10,10,0.9);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  padding: 0 clamp(16px, 4vw, 24px);
  gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 800; flex-shrink: 0; white-space: nowrap;
}
/* ── LOGO IMAGE — fixed sensible size ── */
.nav-logo-img { width: 150px; height: 150px; object-fit: contain; flex-shrink: 0; }
.logo-dot { color: var(--accent2); }

.nav-links { display: flex; gap: clamp(16px, 3vw, 28px); }
.nav-links a {
  text-decoration: none; color: var(--off);
  font-size: clamp(13px, 2vw, 14px); font-weight: 500;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.nav-active { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-ghost {
  padding: 8px clamp(12px, 2vw, 16px);
  border-radius: 8px; border: 1px solid var(--border);
  color: var(--off); text-decoration: none;
  font-size: clamp(12px, 2vw, 14px); font-weight: 500;
  transition: all 0.2s; display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--white); }
.btn-cta-nav {
  padding: 9px clamp(12px, 2vw, 18px);
  border-radius: 8px; background: var(--accent);
  color: var(--white); text-decoration: none;
  font-size: clamp(12px, 2vw, 14px); font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.2s; white-space: nowrap;
}
.btn-cta-nav:hover { background: #5a52e0; transform: translateY(-1px); }
.hamburger {
  display: none; background: none; border: none;
  color: var(--white); font-size: 20px; cursor: pointer;
  padding: 4px; flex-shrink: 0;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--dark); border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px clamp(16px, 4vw, 24px);
  color: var(--off); text-decoration: none;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.02); }
.mobile-menu-actions {
  display: flex; gap: 10px;
  padding: 16px clamp(16px, 4vw, 24px);
}
.mob-btn-ghost {
  flex: 1; padding: 12px 8px;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--off); text-decoration: none;
  text-align: center; font-weight: 600; font-size: 14px;
}
.mob-btn-primary {
  flex: 1; padding: 12px 8px;
  background: var(--accent); border-radius: 8px;
  color: white; text-decoration: none;
  text-align: center; font-weight: 700; font-size: 14px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(80px, 12vw, 120px) clamp(16px, 4vw, 24px) clamp(60px, 8vw, 80px);
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; }
.orb-1 { width: min(500px, 60vw); height: min(500px, 60vw); background: var(--accent); top: -10%; right: 5%; }
.orb-2 { width: min(350px, 50vw); height: min(350px, 50vw); background: var(--accent2); bottom: -5%; left: 0; }

.hero-inner {
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px); align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid rgba(108,99,255,0.4);
  background: rgba(108,99,255,0.1);
  font-size: clamp(11px, 2vw, 12px);
  font-weight: 700; letter-spacing: 0.5px;
  color: var(--accent2); margin-bottom: 20px;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 6vw, 62px);
  font-weight: 800; line-height: 1.05; margin-bottom: 20px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--off); margin-bottom: 32px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(11px, 2vw, 14px) clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white); text-decoration: none;
  font-weight: 700; font-size: clamp(13px, 2vw, 15px);
  transition: all 0.3s; white-space: nowrap;
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(108,99,255,0.4); }
.btn-secondary-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(11px, 2vw, 14px) clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  border: 1px solid var(--border); color: var(--white);
  text-decoration: none; font-weight: 600;
  font-size: clamp(13px, 2vw, 15px); transition: all 0.2s; white-space: nowrap;
}
.btn-secondary-hero:hover { border-color: var(--accent); background: rgba(108,99,255,0.08); }

.hero-trust { display: flex; gap: clamp(12px, 3vw, 20px); flex-wrap: wrap; }
.trust-item { font-size: clamp(12px, 2vw, 13px); color: var(--off); display: flex; align-items: center; gap: 6px; }
.trust-item i { color: var(--green); font-size: 11px; }

/* ── CHAT MOCKUP ── */
.chat-mockup {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  max-width: min(380px, 100%); margin-left: auto;
}
.chat-head {
  background: var(--accent); padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.chat-head-left { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  flex-shrink: 0;
}
.chat-name { font-weight: 700; font-size: 14px; }
.chat-status { font-size: 11px; opacity: 0.85; display: flex; align-items: center; gap: 5px; }
.dot-green { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.chat-x { opacity: 0.7; cursor: pointer; }
.chat-body {
  padding: 16px; background: #0f0f12;
  display: flex; flex-direction: column; gap: 10px; min-height: 180px;
}
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.bubble { padding: 9px 12px; border-radius: 12px; font-size: 13px; max-width: 80%; line-height: 1.5; }
.chat-msg.bot .bubble { background: var(--card); border: 1px solid var(--border); color: var(--white); }
.chat-msg.user .bubble { background: var(--accent); color: white; }
.typing-dots {
  display: flex; gap: 4px; padding: 9px 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; width: fit-content;
}
.typing-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: td 1.4s infinite;
}
.typing-dots span:nth-child(2){animation-delay:0.2s}
.typing-dots span:nth-child(3){animation-delay:0.4s}
@keyframes td{0%,60%,100%{transform:translateY(0);opacity:.5}30%{transform:translateY(-7px);opacity:1}}
.chat-input-row {
  padding: 12px 14px; background: var(--card);
  border-top: 1px solid var(--border); display: flex; gap: 10px;
}
.chat-input-row input {
  flex: 1; background: #0f0f12; border: 1px solid var(--border);
  border-radius: 20px; padding: 9px 12px; font-size: 13px;
  color: var(--off); outline: none; font-family: inherit; min-width: 0;
}
.chat-input-row button {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); border: none; color: white;
  cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02); padding: 14px 0;
}
.marquee {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 25s linear infinite; width: max-content;
}
.marquee span { font-size: 12px; font-weight: 600; color: var(--off); display: flex; align-items: center; gap: 7px; }
.marquee span i { color: var(--accent); }
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw { padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 24px); }
.hiw-steps {
  display: flex; align-items: flex-start; gap: clamp(12px, 2vw, 24px);
  margin-bottom: 40px; flex-wrap: wrap;
}
.hiw-step {
  flex: 1; min-width: min(100%, 200px);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px) clamp(18px, 3vw, 28px);
  position: relative; overflow: hidden;
}
.hiw-step::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.hiw-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800; color: rgba(255,255,255,0.06); margin-bottom: -12px;
}
.hiw-icon { font-size: clamp(22px, 4vw, 28px); color: var(--accent); margin-bottom: 14px; }
.hiw-step h3 { font-family: 'Syne', sans-serif; font-size: clamp(16px, 3vw, 20px); font-weight: 700; margin-bottom: 8px; }
.hiw-step p { font-size: clamp(13px, 2vw, 14px); color: var(--off); line-height: 1.7; }
.hiw-step code { background: rgba(108,99,255,0.15); color: var(--accent2); padding: 1px 5px; border-radius: 4px; font-size: 12px; }
.hiw-arrow { color: var(--accent); font-size: 20px; margin-top: 60px; opacity: 0.4; flex-shrink: 0; }

.code-strip { background: #0d1117; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; max-width: 100%; }
.code-strip-bar { background: #161b22; padding: 10px clamp(12px, 3vw, 16px); display: flex; align-items: center; gap: 10px; }
.code-dots-row { display: flex; gap: 6px; }
.code-dots-row span { width: 10px; height: 10px; border-radius: 50%; }
.code-dots-row span:nth-child(1){background:#ef4444}
.code-dots-row span:nth-child(2){background:#f59e0b}
.code-dots-row span:nth-child(3){background:#22c55e}
.code-strip-lang { font-size: 11px; color: var(--off); font-weight: 600; margin-left: auto; }
.code-strip pre { padding: clamp(14px, 3vw, 20px) clamp(14px, 3vw, 24px); overflow-x: auto; }
.code-strip code { font-family: 'Fira Code','Courier New',monospace; font-size: clamp(11px, 2vw, 13px); line-height: 1.9; }
.c-comment{color:#6e7681}.c-tag{color:#7dd3fc}.c-attr{color:#86efac}.c-str{color:#fcd34d}.c-fn{color:#c4b5fd}

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: clamp(60px,10vw,100px) clamp(16px,4vw,24px); background: rgba(255,255,255,0.01); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 16px);
}
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px) clamp(16px, 3vw, 28px);
  transition: all 0.3s;
}
.feat-card:hover { border-color: rgba(108,99,255,0.4); transform: translateY(-4px); }
.feat-card-large { grid-column: span 2; }
.feat-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(108,99,255,0.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px; flex-shrink: 0;
}
.feat-card h3 { font-family: 'Syne', sans-serif; font-size: clamp(16px,3vw,20px); font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: clamp(13px,2vw,14px); color: var(--off); line-height: 1.7; }
.feat-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent2); text-decoration: none;
  font-size: 13px; font-weight: 600; margin-top: 12px; transition: gap 0.2s;
}
.feat-link:hover { gap: 10px; }

/* ============================================================
   DEMO SECTION
   ============================================================ */
.demo-section { padding: clamp(60px,10vw,100px) clamp(16px,4vw,24px); }
.demo-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 48px);
  display: flex; align-items: center; gap: clamp(24px,4vw,48px); flex-wrap: wrap;
}
.demo-instructions { flex: 1; min-width: min(100%, 240px); display: flex; flex-direction: column; gap: 14px; }
.demo-step { display: flex; align-items: center; gap: 12px; font-size: clamp(13px,2vw,15px); color: var(--off); }
.demo-step strong { color: var(--white); }
.demo-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(108,99,255,0.2); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; flex-shrink: 0;
}
.demo-arrow { font-size: 24px; color: var(--accent); opacity: 0.4; flex-shrink: 0; }
.demo-pulse { text-align: center; position: relative; padding: 36px 20px; }
.pulse-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 70px; height: 70px; border-radius: 50%;
  border: 2px solid var(--accent); opacity: 0.3; animation: pulse-anim 2s infinite;
}
.pulse-ring-2 { width: 100px; height: 100px; animation-delay: 0.5s; }
@keyframes pulse-anim{0%{transform:translate(-50%,-50%) scale(.8);opacity:.4}100%{transform:translate(-50%,-50%) scale(1.4);opacity:0}}
.demo-chat-icon { font-size: clamp(28px,5vw,36px); color: var(--accent); position: relative; z-index: 1; display: block; margin-bottom: 10px; }
.demo-pulse p { font-size: 12px; color: var(--off); line-height: 1.5; }

/* Demo floating widget */
#demo-widget-wrap { position: fixed; bottom: clamp(70px,10vh,90px); right: clamp(16px,3vw,28px); z-index: 999; opacity: 0; transition: opacity 0.4s; pointer-events: none; }
#demo-widget-wrap.demo-visible { opacity: 1; pointer-events: all; }
#jnm-demo-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer; box-shadow: 0 8px 24px rgba(108,99,255,0.5);
  transition: transform 0.2s; position: relative;
}
#jnm-demo-bubble:hover { transform: scale(1.1); }
.demo-bubble-badge {
  position: absolute; top: -6px; right: -6px;
  background: #ef4444; color: white; font-size: 9px; font-weight: 800;
  padding: 2px 5px; border-radius: 10px; white-space: nowrap;
}
#jnm-demo-chat {
  display: none; flex-direction: column;
  position: absolute; bottom: 68px; right: 0;
  width: min(340px, calc(100vw - 32px));
  background: var(--dark); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
#jnm-chat-head { background: var(--accent); padding: 13px 14px; display: flex; justify-content: space-between; align-items: center; }
.jnm-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
#jnm-messages { padding: 12px; display: flex; flex-direction: column; gap: 10px; max-height: 260px; overflow-y: auto; }
.jnm-msg { display: flex; }
.jnm-msg.jnm-bot { justify-content: flex-start; }
.jnm-msg.jnm-user { justify-content: flex-end; }
.jnm-bubble { padding: 8px 12px; border-radius: 12px; font-size: 13px; max-width: 86%; line-height: 1.55; }
.jnm-bot .jnm-bubble { background: var(--card); border: 1px solid var(--border); color: var(--white); }
.jnm-user .jnm-bubble { background: var(--accent); color: white; }
.jnm-typing-bubble span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin: 0 2px; animation: td 1.4s infinite; }
.jnm-typing-bubble span:nth-child(2){animation-delay:.2s}
.jnm-typing-bubble span:nth-child(3){animation-delay:.4s}
#jnm-input-row { display: flex; gap: 8px; padding: 9px 11px; border-top: 1px solid var(--border); }
#jnm-input {
  flex: 1; min-width: 0; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 8px 12px; font-size: 13px; color: var(--white);
  outline: none; font-family: inherit;
}
#jnm-input-row button {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); border: none; color: white;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
#jnm-footer-note {
  padding: 7px 11px; font-size: 10px; color: rgba(255,255,255,0.3);
  text-align: center; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: clamp(60px,10vw,100px) clamp(16px,4vw,24px); }
.pricing-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(12px,2vw,20px); margin-bottom: 24px;
}
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px,4vw,36px) clamp(18px,3vw,28px);
  position: relative; transition: all 0.3s;
}
.price-card:hover { border-color: rgba(108,99,255,0.3); transform: translateY(-4px); }
.price-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(108,99,255,0.12), var(--card));
  box-shadow: 0 0 40px rgba(108,99,255,0.15);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color: white; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; white-space: nowrap;
}
.price-tier { font-family: 'Syne', sans-serif; font-size: clamp(18px,3vw,22px); font-weight: 800; margin-bottom: 6px; }
.price-amount { font-family: 'Syne', sans-serif; font-size: clamp(28px,5vw,40px); font-weight: 800; margin-bottom: 4px; }
.price-amount span { font-size: clamp(14px,2vw,16px); color: var(--off); font-weight: 400; }
.price-desc { font-size: 13px; color: var(--off); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.price-list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 9px; }
.price-list li { display: flex; align-items: flex-start; gap: 9px; font-size: clamp(12px,2vw,14px); color: var(--off); }
.price-list li i { font-size: 11px; width: 14px; flex-shrink: 0; margin-top: 2px; }
.price-list li i.fa-check { color: var(--green); }
.price-list li i.fa-xmark { color: var(--red); }
.price-list li.dim { opacity: 0.5; }
.price-btn {
  display: block; width: 100%; padding: 12px;
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--white); text-decoration: none; text-align: center;
  font-weight: 700; font-size: clamp(13px,2vw,14px); transition: all 0.2s;
}
.price-btn:hover { border-color: var(--accent); background: rgba(108,99,255,0.1); }
.price-btn-featured { background: linear-gradient(135deg,var(--accent),var(--accent2)); border: none; }
.price-btn-featured:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(108,99,255,0.35); }
.pricing-cta-note { text-align: center; font-size: clamp(12px,2vw,13px); color: var(--off); }

/* Currency toggle */
.currency-toggle {
  display: inline-flex; gap: 4px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 10px; padding: 4px;
}
.cur-btn {
  padding: 7px clamp(12px,3vw,18px); border-radius: 8px; border: none;
  font-size: clamp(12px,2vw,13px); font-weight: 700; cursor: pointer;
  background: transparent; color: var(--off); transition: all 0.2s;
  display: flex; align-items: center; gap: 5px; font-family: inherit;
}
.cur-btn-active { background: var(--accent); color: white; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: clamp(60px,10vw,100px) clamp(16px,4vw,24px); background: rgba(255,255,255,0.01); }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(108,99,255,0.4); }
.faq-q {
  padding: clamp(14px,3vw,18px) clamp(16px,3vw,22px);
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: clamp(14px,2vw,15px); gap: 12px;
}
.faq-icon { font-size: 13px; color: var(--off); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: clamp(13px,2vw,14px); color: var(--off); line-height: 1.7; padding: 0 clamp(16px,3vw,22px);
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 clamp(16px,3vw,22px) 16px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: clamp(60px,10vw,100px) clamp(16px,4vw,24px);
  background: linear-gradient(135deg, rgba(108,99,255,0.12), rgba(192,132,252,0.06));
  border-top: 1px solid var(--border);
}
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 0 clamp(0px,2vw,16px); }
.cta-inner h2 { font-family: 'Syne', sans-serif; font-size: clamp(22px,5vw,46px); font-weight: 800; margin-bottom: 14px; }
.cta-inner p { font-size: clamp(15px,2.5vw,18px); color: var(--off); margin-bottom: 32px; }
.btn-cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  padding: clamp(13px,2vw,16px) clamp(22px,4vw,36px);
  border-radius: var(--radius);
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color: white; text-decoration: none; font-weight: 700;
  font-size: clamp(14px,2.5vw,16px); transition: all 0.3s; white-space: nowrap;
}
.btn-cta-big:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(108,99,255,0.35); }
.cta-small { margin-top: 18px; font-size: clamp(11px,2vw,13px); color: var(--off); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: clamp(40px,7vw,60px) clamp(16px,4vw,24px) 28px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px,5vw,60px); margin-bottom: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-size: clamp(16px,3vw,20px);
  font-weight: 800; color: var(--white); text-decoration: none; margin-bottom: 12px;
}
/* ── FOOTER LOGO IMAGE — correct size ── */
.footer-logo-img { width: 130px; height: 130px; object-fit: contain; flex-shrink: 0; }
.footer-brand p { font-size: clamp(13px,2vw,14px); color: var(--off); max-width: 300px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,3vw,40px); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--off); margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: clamp(12px,2vw,14px); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto; padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--off); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--off); font-size: 16px; transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.page-loader.active { opacity: 1; pointer-events: all; }
.loader-ring { width: 76px; height: 76px; position: relative; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.loader-ring-inner { position: absolute; inset: 0; border-radius: 50%; border: 3px solid transparent; border-top-color: var(--accent); border-right-color: var(--accent2); animation: spin 0.8s linear infinite; }
@keyframes spin{to{transform:rotate(360deg)}}
.loader-logo { width: 30px; height: 30px; object-fit: contain; position: relative; z-index: 1; }
.loader-text { font-size: 13px; color: var(--off); font-weight: 500; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: clamp(16px,3vw,28px); right: clamp(16px,3vw,28px);
  z-index: 998; width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white; text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: all 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.back-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--off); text-decoration: none;
  font-size: clamp(13px,2vw,14px); font-weight: 600;
  margin-bottom: 20px; transition: color 0.2s; position: relative; z-index: 1;
}
.back-arrow:hover { color: var(--white); }
.nav-active { color: var(--white) !important; }

.page-hero {
  padding: clamp(90px,14vw,130px) clamp(16px,4vw,24px) clamp(48px,7vw,80px);
  text-align: center; position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(26px,6vw,54px); font-weight: 800; margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero p { font-size: clamp(14px,2.5vw,18px); color: var(--off); position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }

/* Content pages */
.content-section { padding: clamp(32px,5vw,60px) clamp(16px,4vw,24px) clamp(60px,8vw,100px); max-width: 860px; margin: 0 auto; }
.content-section h2 { font-family: 'Syne', sans-serif; font-size: clamp(20px,4vw,26px); font-weight: 800; margin: 36px 0 12px; }
.content-section h3 { font-size: clamp(15px,3vw,17px); font-weight: 700; margin: 24px 0 10px; color: var(--accent2); }
.content-section p { font-size: clamp(14px,2vw,15px); color: var(--off); line-height: 1.8; margin-bottom: 12px; }
.content-section ul, .content-section ol { padding-left: 18px; color: var(--off); font-size: clamp(14px,2vw,15px); line-height: 1.9; margin-bottom: 12px; }
.content-section a { color: var(--accent2); text-decoration: none; }
.content-section a:hover { text-decoration: underline; }
.content-divider { height: 1px; background: var(--border); margin: 36px 0; }

/* ============================================================
   FEATURES PAGE
   ============================================================ */
.feat-category { margin-bottom: clamp(40px,6vw,64px); }
.feat-category-label { display: inline-flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-size: clamp(15px,3vw,18px); font-weight: 800; margin-bottom: 20px; color: var(--accent2); }
.feat-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(10px,2vw,16px); }
.feat-full-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(18px,3vw,28px) clamp(16px,3vw,24px); transition: all 0.3s; }
.feat-full-card:hover { border-color: rgba(108,99,255,0.4); transform: translateY(-3px); }
.feat-full-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(108,99,255,0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.feat-full-card h3 { font-family: 'Syne', sans-serif; font-size: clamp(14px,3vw,17px); font-weight: 700; margin-bottom: 6px; }
.feat-full-card p { font-size: clamp(12px,2vw,14px); color: var(--off); line-height: 1.7; }
.feat-cta { background: linear-gradient(135deg, rgba(108,99,255,0.12), rgba(192,132,252,0.06)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(32px,5vw,60px) clamp(20px,4vw,40px); text-align: center; margin-top: 36px; }
.feat-cta h2 { font-family: 'Syne', sans-serif; font-size: clamp(22px,4vw,36px); font-weight: 800; margin-bottom: 10px; }
.feat-cta p { font-size: clamp(13px,2.5vw,16px); color: var(--off); }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; min-width: 480px; }
.compare-table th { padding: clamp(10px,2vw,16px) clamp(12px,2vw,20px); text-align: center; font-size: clamp(11px,2vw,13px); font-weight: 800; font-family: 'Syne',sans-serif; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--border); }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: clamp(10px,2vw,14px) clamp(12px,2vw,20px); text-align: center; font-size: clamp(12px,2vw,14px); color: var(--off); border-bottom: 1px solid rgba(255,255,255,0.04); }
.compare-table td:first-child { text-align: left; color: var(--white); font-weight: 500; }
.th-featured { color: var(--accent2); }
.td-featured { background: rgba(108,99,255,0.05); }
.gr { color: var(--green); } .rd { color: var(--red); }

/* ============================================================
   DOCS
   ============================================================ */
.docs-layout { display: grid; grid-template-columns: 230px 1fr; max-width: 1180px; margin: 0 auto; padding: 0 clamp(16px,4vw,24px) clamp(60px,8vw,100px); gap: clamp(24px,4vw,48px); align-items: start; }
.docs-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.docs-sidebar-section { display: flex; flex-direction: column; gap: 2px; }
.docs-sidebar-label { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--off); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.docs-nav-link { padding: 7px 10px; border-radius: 7px; text-decoration: none; font-size: 13px; font-weight: 500; color: var(--off); transition: all 0.2s; }
.docs-nav-link:hover, .docs-nav-link.active { background: rgba(108,99,255,0.12); color: var(--accent2); }
.docs-content { min-width: 0; }
.docs-section { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.docs-section:last-child { border-bottom: none; }
.docs-section-label { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent2); margin-bottom: 10px; }
.docs-section h2 { font-family: 'Syne', sans-serif; font-size: clamp(20px,4vw,28px); font-weight: 800; margin-bottom: 12px; }
.docs-section p { font-size: clamp(13px,2vw,15px); color: var(--off); line-height: 1.8; margin-bottom: 18px; }
.docs-section code { background: rgba(255,255,255,0.08); color: var(--accent2); padding: 2px 6px; border-radius: 5px; font-size: 12px; font-family: monospace; }
.docs-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.docs-step { display: flex; align-items: flex-start; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; font-size: clamp(13px,2vw,14px); color: var(--off); }
.docs-step strong { color: var(--white); }
.docs-step a { color: var(--accent2); }
.docs-step-num { width: 26px; height: 26px; border-radius: 50%; background: rgba(108,99,255,0.2); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; flex-shrink: 0; }
.docs-info-box { background: rgba(108,99,255,0.08); border: 1px solid rgba(108,99,255,0.25); border-radius: var(--radius); padding: 13px 16px; font-size: clamp(12px,2vw,14px); color: var(--off); line-height: 1.7; margin-top: 14px; display: flex; gap: 10px; align-items: flex-start; }
.docs-info-box i { color: var(--accent2); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.docs-table { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 18px; }
.docs-table table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; min-width: 440px; }
.docs-table th { padding: 11px 14px; text-align: left; font-size: 11px; font-weight: 700; color: var(--off); text-transform: uppercase; letter-spacing: 0.5px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border); }
.docs-table td { padding: 11px 14px; font-size: 12px; color: var(--off); border-bottom: 1px solid rgba(255,255,255,0.04); }
.badge-req { background: rgba(239,68,68,0.15); color: #f87171; padding: 2px 7px; border-radius: 6px; font-size: 10px; font-weight: 700; }
.badge-opt { background: rgba(34,197,94,0.15); color: #4ade80; padding: 2px 7px; border-radius: 6px; font-size: 10px; font-weight: 700; }
.docs-support-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(10px,2vw,16px); margin-top: 18px; }
.docs-support-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(18px,3vw,24px) clamp(14px,3vw,20px); }
.docs-support-card i { font-size: 24px; color: var(--accent); margin-bottom: 12px; display: block; }
.docs-support-card h3 { font-family: 'Syne', sans-serif; font-size: clamp(13px,3vw,16px); font-weight: 700; margin-bottom: 6px; }
.docs-support-card p { font-size: 12px; color: var(--off); margin-bottom: 10px; }
.docs-support-card a { font-size: 12px; color: var(--accent2); text-decoration: none; font-weight: 600; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(20px,4vw,40px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,48px); }
.cf-label { display: block; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.cf-input {
  width: 100%; padding: 11px 13px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; font-size: clamp(13px,2vw,14px); color: var(--white);
  outline: none; font-family: inherit; transition: border-color 0.2s;
}
.cf-input:focus { border-color: var(--accent); }
.cf-input::placeholder { color: rgba(255,255,255,0.25); }
.cf-group { margin-bottom: 18px; }
.cf-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: linear-gradient(135deg,var(--accent),var(--accent2));
  color: white; border: none; border-radius: 10px;
  font-size: clamp(13px,2vw,15px); font-weight: 700; cursor: pointer;
  font-family: inherit; transition: all 0.2s; white-space: nowrap;
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,99,255,0.35); }
.contact-info-card { display: flex; flex-direction: column; gap: clamp(16px,3vw,24px); }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(108,99,255,0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.ci-item h3 { font-size: clamp(13px,2vw,14px); font-weight: 700; margin-bottom: 3px; }
.ci-item p, .ci-item a { font-size: clamp(12px,2vw,14px); color: var(--off); text-decoration: none; }
.ci-item a:hover { color: var(--accent2); }
.form-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 10px; padding: 14px 18px; color: #4ade80; font-size: 13px; display: none; align-items: center; gap: 10px; margin-top: 14px; }
.form-success.show { display: flex; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet landscape ─ hide nav links at 900px, not 768 */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .nav-actions { display: none; }

  /* Hero — single column */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }

  /* Steps — vertical */
  .hiw-steps { flex-direction: column; align-items: stretch; }
  .hiw-arrow { transform: rotate(90deg); margin: 0 auto; display: block; flex-shrink: unset; }

  /* Feature grid */
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-card-large { grid-column: span 1; }

  /* Pricing — single col */
  .pricing-row { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  /* Demo */
  .demo-box { flex-direction: column; padding: 24px; text-align: center; }
  .demo-arrow { display: none; }

  /* Docs */
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { display: none; }
  .docs-support-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(3,1fr); }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .feat-full-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 600px) {
  /* Feat grid single col */
  .feat-grid { grid-template-columns: 1fr; }

  /* Footer links 2 col */
  .footer-links { grid-template-columns: 1fr 1fr; }

  /* Contact form — stack name+email fields */
  .contact-grid > div > form > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  /* Buttons full width on hero */
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-primary-hero, .btn-secondary-hero { justify-content: center; width: 100%; }
  .btn-cta-big { width: 100%; justify-content: center; }

  /* Footer single col */
  .footer-links { grid-template-columns: 1fr; gap: 24px; }

  .feat-cta-btns { flex-direction: column; }
  .feat-cta-btns a { width: 100%; justify-content: center; }

  /* Docs support */
  .docs-support-cards { grid-template-columns: 1fr; }
}

/* Very small phones (SE, etc.) */
@media (max-width: 360px) {
  .nav-logo span { display: none; } /* show logo only on tiny phones */
  .pricing-row { max-width: 100%; }
  .hiw-step { min-width: 100%; }
}

/* ── DOCS MOBILE NAV SELECT ── */
.docs-mobile-nav {
  display: none;
  padding: 0 clamp(16px,4vw,24px) 20px;
  max-width: 1180px; margin: 0 auto;
}
.docs-mobile-nav select {
  width: 100%; padding: 12px 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white);
  font-size: 14px; font-weight: 500; font-family: inherit;
  outline: none; cursor: pointer;
}
@media(max-width:1024px) {
  .docs-mobile-nav { display: block; }
}

/* ── FOOTER MOBILE — 2-column grid, clean ── */
@media(max-width:600px) {
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }
  /* Third column (Legal) spans full width on very small screens */
  .footer-links .footer-col:last-child {
    grid-column: span 2;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
}
@media(max-width:400px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-links .footer-col:last-child { grid-column: span 1; }
}