/* ================================
   BLACK CAT ARTIST STUDIO
   Color: Midnight Black + Cyan + Gold
   ================================ */

:root {
  --black: #050507;
  --black-2: #0c0c10;
  --black-3: #12121a;
  --black-4: #1a1a26;
  --cyan: #00e5ff;
  --cyan-dark: #00b4cc;
  --cyan-glow: rgba(0, 229, 255, 0.15);
  --gold: #f0b429;
  --gold-dark: #c48a00;
  --gold-glow: rgba(240, 180, 41, 0.15);
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-10: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--cyan-dark); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
em { font-style: italic; color: var(--cyan); }
.gold-text { color: var(--gold); }
a { text-decoration: none; color: inherit; }

/* ---- CONTAINER ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 30px var(--gold-glow); }
.btn-primary.large { padding: 16px 36px; font-size: 17px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  white-space: nowrap;
}
.logo-icon { font-size: 26px; }
.logo-text em { font-style: italic; color: var(--cyan); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin-left: auto;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--white-70);
  padding: 7px 14px; border-radius: 50px;
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--white-10); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; border-radius: 2px; }

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
}
.glow-1 { width: 500px; height: 500px; background: var(--cyan-glow); top: -100px; left: -100px; }
.glow-2 { width: 400px; height: 400px; background: var(--gold-glow); bottom: -50px; right: -50px; }

.hero-content {
  position: relative; z-index: 1;
  max-width: 600px; flex: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--white-10); border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; color: var(--cyan);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px; color: var(--white-70); margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--white-40); letter-spacing: 0.05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  position: relative; z-index: 1;
  flex: 1; display: flex; justify-content: center; align-items: center;
  min-height: 400px;
}
.cat-circle {
  width: 320px; height: 320px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--border);
  animation: spin linear infinite;
}
.orbit-1 { width: 100%; height: 100%; animation-duration: 12s; }
.orbit-2 { width: 75%; height: 75%; animation-duration: 8s; animation-direction: reverse; }
.orbit-3 { width: 50%; height: 50%; animation-duration: 6s; }
.orb-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--white-40);
  position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
}
.orb-dot.gold { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.orb-dot.cyan { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.cat-eye {
  width: 100px; height: 140px; border-radius: 50% / 60%;
  background: radial-gradient(ellipse at center, #001a1f 0%, #002830 60%, #003040 100%);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 30px var(--cyan-glow), inset 0 0 20px rgba(0,229,255,0.1);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.eye-pupil {
  width: 30px; height: 90px; border-radius: 50%;
  background: var(--black); border: 1px solid var(--cyan-dark);
}
.eye-glow {
  position: absolute; width: 80%; height: 40%;
  background: radial-gradient(ellipse, rgba(0,229,255,0.2), transparent);
  top: 20%;
}
.cat-label {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  font-size: 12px; color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}

/* ==============================
   MARQUEE
   ============================== */
.marquee-strip {
  background: var(--black-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; align-items: center; gap: 32px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span { font-size: 14px; font-weight: 500; color: var(--white-40); white-space: nowrap; }
.marquee-track .dot { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==============================
   SECTIONS GENERAL
   ============================== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan);
  background: var(--cyan-glow); border: 1px solid rgba(0,229,255,0.2);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.section-header p { color: var(--white-70); font-size: 18px; max-width: 520px; margin: 0 auto; }

/* ==============================
   SERVICES GRID
   ============================== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(0,229,255,0.3); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, #0a1a20 0%, #0c0c18 100%);
  border-color: rgba(0,229,255,0.3);
}
.service-card.featured::before { opacity: 1; }
.service-badge {
  display: inline-block; background: var(--gold); color: var(--black);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  margin-bottom: 20px; letter-spacing: 0.05em;
}
.service-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--white-70); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.card-link { color: var(--cyan); font-weight: 600; font-size: 14px; transition: gap 0.2s; }
.card-link:hover { color: var(--gold); }

.center-cta { text-align: center; margin-top: 48px; }

/* ==============================
   SAAS SECTION
   ============================== */
.saas-section { background: var(--black-2); }
.saas-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.saas-text h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 20px; }
.saas-text p { color: var(--white-70); font-size: 17px; margin-bottom: 28px; }
.saas-features { list-style: none; margin-bottom: 36px; }
.saas-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--white-70);
}
.saas-features li:last-child { border-bottom: none; }

.saas-visual { display: flex; justify-content: center; }
.saas-card {
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.saas-header {
  background: #1a1a26; padding: 12px 16px;
  display: flex; gap: 8px; align-items: center;
}
.dot-r,.dot-y,.dot-g { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.saas-code {
  padding: 24px; font-family: 'Courier New', monospace; font-size: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.code-line { color: var(--white-70); }
.code-line.pad { padding-left: 20px; }
.code-line.mt { margin-top: 12px; }
.c-cyan { color: var(--cyan); }
.c-gold { color: var(--gold); }
.c-str { color: #a8ff78; }
.c-comment { color: var(--white-40); }

/* ==============================
   PROCESS
   ============================== */
.process-section { background: var(--black); }
.process-steps {
  display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 180px; max-width: 220px; text-align: center; padding: 0 12px;
}
.step-num {
  font-family: var(--font-display); font-size: 64px; font-weight: 900;
  color: var(--black-4); -webkit-text-stroke: 2px var(--cyan);
  line-height: 1; margin-bottom: 16px;
}
.step h4 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--white-40); }
.step-arrow {
  font-size: 28px; color: var(--border); align-self: center;
  padding: 0 8px; flex-shrink: 0;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-section { background: var(--black-2); }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.testi-card {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.3s;
}
.testi-card.featured {
  border-color: rgba(0,229,255,0.3);
  background: linear-gradient(135deg, #0a1a20, #0c0c18);
}
.testi-card p { color: var(--white-70); font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-dark), var(--black-4));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 15px; }
.testi-author span { font-size: 13px; color: var(--white-40); }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }

/* ==============================
   CTA BANNER
   ============================== */
.cta-banner {
  background: var(--black-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: var(--cyan-glow); top: 50%; left: 50%; transform: translate(-50%,-50%);
  filter: blur(80px);
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 16px; }
.cta-inner p { color: var(--white-70); font-size: 18px; margin-bottom: 36px; }

/* ==============================
   PRICING (services.html)
   ============================== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; transition: all 0.3s;
}
.price-card.popular {
  border-color: var(--cyan); background: linear-gradient(135deg, #0a1a20, #0c0c18);
  transform: scale(1.02);
}
.popular-badge {
  display: inline-block; background: var(--cyan); color: var(--black);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 20px;
}
.price-card h3 { font-size: 24px; margin-bottom: 8px; }
.price-card .tagline { color: var(--white-40); font-size: 14px; margin-bottom: 24px; }
.price-amount {
  font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--gold);
  margin-bottom: 4px; display: flex; align-items: baseline; gap: 6px;
}
.price-amount .currency { font-size: 24px; }
.price-amount .period { font-size: 16px; color: var(--white-40); }
.price-usd { font-size: 13px; color: var(--white-40); margin-bottom: 28px; }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--white-70); display: flex; align-items: center; gap: 10px;
}
.price-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }
.price-features li.no::before { content: '✕'; color: var(--white-40); }
.price-features li.no { color: var(--white-40); }

/* ==============================
   ABOUT PAGE
   ============================== */
.page-hero {
  padding: 160px 24px 80px; text-align: center;
  background: linear-gradient(180deg, var(--black-3) 0%, var(--black) 100%);
}
.page-hero h1 { font-size: clamp(40px, 5vw, 72px); margin-bottom: 20px; }
.page-hero p { color: var(--white-70); font-size: 20px; max-width: 600px; margin: 0 auto; }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px;
}
.team-card {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-dark), var(--black-4));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
  border: 2px solid var(--border);
}
.team-card h4 { font-size: 18px; margin-bottom: 6px; }
.team-card .role { font-size: 13px; color: var(--cyan); margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--white-40); }

/* ==============================
   CONTACT / FAQ PAGE
   ============================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--white-70); letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  color: var(--white); font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.3s; outline: none; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--cyan); }
.form-group select option { background: var(--black-3); }

.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 20px 24px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--cyan); }
.faq-q .faq-arrow { font-size: 18px; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 24px; color: var(--white-70); font-size: 14px; line-height: 1.7;
}
.faq-a.open { max-height: 300px; padding: 0 24px 20px; }

/* ==============================
   LEGAL PAGES
   ============================== */
.legal-content {
  max-width: 760px; margin: 0 auto; padding: 40px 24px 80px;
}
.legal-content h2 { font-size: 28px; margin: 40px 0 16px; color: var(--cyan); }
.legal-content p { color: var(--white-70); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; color: var(--white-70); font-size: 15px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }

/* ==============================
   FOOTER
   ============================== */
.footer { background: var(--black-2); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 280px 1fr; gap: 64px; padding-bottom: 60px;
}
.footer-brand p { color: var(--white-40); font-size: 14px; margin: 16px 0 24px; max-width: 220px; }
.social-links { display: flex; gap: 16px; }
.social-links a {
  font-size: 13px; font-weight: 500; color: var(--white-40);
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 50px;
  transition: all 0.3s;
}
.social-links a:hover { border-color: var(--cyan); color: var(--cyan); }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-40); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--white-70); transition: color 0.3s; }
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--white-40); flex-wrap: wrap; gap: 12px;
  max-width: 1180px; margin: 0 auto;
}

/* ==============================
   AI CHAT WIDGET
   ============================== */
.chat-widget { position: fixed; bottom: 100px; right: 24px; z-index: 9000; }

.chat-bubble {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,229,255,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.chat-bubble:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,229,255,0.5); }
.chat-ping {
  position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; background: var(--gold);
  border-radius: 50%; border: 2px solid var(--black);
  animation: ping 2s ease-in-out infinite;
}
@keyframes ping {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.chat-box {
  position: absolute; bottom: 76px; right: 0;
  width: 360px; max-height: 520px;
  background: var(--black-3); border: 1px solid rgba(0,229,255,0.2);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: none; flex-direction: column;
  animation: slideUp 0.3s ease;
}
.chat-box.open { display: flex; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-header {
  background: linear-gradient(135deg, #001a1f, #001020);
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.chat-agent-info { display: flex; align-items: center; gap: 12px; }
.agent-avatar { font-size: 28px; }
.chat-agent-info strong { display: block; font-size: 14px; }
.online-badge { font-size: 11px; color: #28c840; }
.chat-close { background: none; border: none; color: var(--white-40); font-size: 16px; cursor: pointer; transition: color 0.2s; }
.chat-close:hover { color: var(--white); }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px;
}
.msg { max-width: 85%; }
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; }
.msg p {
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px; padding: 12px 16px;
  font-size: 14px; color: var(--white-70); margin-bottom: 6px; line-height: 1.6;
}
.msg.user p {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--black); border-color: transparent;
  border-radius: 16px 16px 4px 16px;
}
.msg.loading p { animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

.chat-quick-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chat-quick-btns button {
  background: var(--black-4); border: 1px solid var(--border);
  color: var(--cyan); font-family: var(--font-body); font-size: 12px;
  padding: 6px 12px; border-radius: 50px; cursor: pointer; transition: all 0.2s;
}
.chat-quick-btns button:hover { border-color: var(--cyan); background: var(--cyan-glow); }

.chat-input-area {
  padding: 16px; border-top: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center;
}
.chat-input-area input {
  flex: 1; background: var(--black-4); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 16px;
  color: var(--white); font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color 0.3s;
}
.chat-input-area input:focus { border-color: var(--cyan); }
.chat-input-area button {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cyan); border: none; color: var(--black);
  font-size: 16px; cursor: pointer; transition: background 0.3s;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.chat-input-area button:hover { background: var(--gold); }

/* ==============================
   CURRENCY BAR
   ============================== */
.currency-bar {
  position: fixed; bottom: 24px; right: 24px; z-index: 8000;
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--white-70);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.currency-bar select {
  background: none; border: none; color: var(--cyan);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  cursor: pointer; outline: none;
}
.currency-bar select option { background: var(--black-3); }

/* ==============================
   VALUE PROPS
   ============================== */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
}
.value-card { text-align: center; padding: 32px 24px; }
.value-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.value-card h4 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--white-40); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 120px 24px 80px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .saas-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { gap: 16px; }
  .step-arrow { display: none; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(5,5,7,0.98); backdrop-filter: blur(20px);
    padding: 24px; gap: 4px; border-bottom: 1px solid var(--border);
  }
  .nav-links.open .btn-primary { display: inline-flex; margin-top: 16px; width: fit-content; }
  .chat-box { width: calc(100vw - 48px); right: -12px; }
  .currency-bar { bottom: 16px; right: 16px; }
  .chat-widget { bottom: 80px; right: 16px; }
}
