/* ════════════════════════════════════════════════════════
   GET BIZ ONLINE — styles.css
   Charcoal + Deep Purple + Gold
════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
:root {
  --bg:        #1F2229;
  --bg-2:      #252932;
  --bg-3:      #2d3340;
  --purple:    #2D1B69;
  --purple-l:  #7B2FFF;
  --purple-ll: #B47FFF;
  --gold:      #C9A84C;
  --gold-l:    #E8C96A;
  --gold-d:    #9A7218;
  --white:     #FFFFFF;
  --white-60:  rgba(255,255,255,0.6);
  --white-30:  rgba(255,255,255,0.3);
  --white-10:  rgba(255,255,255,0.08);
  --green:     #25D366;
  --radius:    12px;
  --shadow:    0 20px 60px rgba(0,0,0,0.4);
  --font-head: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h:     72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  color: #000;
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-30);
}
.btn--ghost:hover { border-color: var(--white-60); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover { background: rgba(201,168,76,0.08); }
.btn--wa {
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
}
.btn--full { width: 100%; text-align: center; }
.btn--sm { padding: 9px 20px; font-size: 14px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(31,34,41,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--white-10);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-cond);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}
.logo-get  { font-size: 18px; color: var(--white); }
.logo-biz  { font-size: 26px; color: var(--purple-ll); }
.logo-online { font-size: 18px; color: var(--white); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: linear-gradient(135deg, var(--gold-l), var(--gold)) !important;
  color: #000 !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-family: var(--font-cond) !important;
  font-size: 15px !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,47,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,255,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
}
.glow1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123,47,255,0.12), transparent 70%);
  top: -150px; right: -100px;
}
.glow2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.07), transparent 70%);
  bottom: -100px; left: -80px;
}

.hero__content {
  flex: 1;
  max-width: 620px;
  padding-top: 40px;
}

.hero__flag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px;
  background: rgba(201,168,76,0.06);
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.hero__title-line {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 82px;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__title-accent {
  font-family: var(--font-head);
  font-size: 110px;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: 4px;
}
.hero__title-small {
  font-size: 38px;
  color: var(--white-60);
  font-weight: 700;
  letter-spacing: 3px;
}

.hero__sub {
  font-size: 18px;
  color: var(--white-60);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}
.hero__sub strong { color: var(--gold); }

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  color: var(--white-60);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--white-10);
}

/* ── PHONE MOCKUP (hero) ── */
.hero__phone-wrap {
  position: relative;
  flex-shrink: 0;
}
.hero__phone {
  width: 220px;
  height: 420px;
  background: linear-gradient(145deg, #1a1a2e, #0d0d16);
  border-radius: 36px;
  border: 2px solid rgba(123,47,255,0.3);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone__notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 8px;
  background: #111;
  border-radius: 4px;
  z-index: 2;
}
.phone__screen {
  padding: 30px 14px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone__bar {
  display: flex;
  gap: 5px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.phone__hero-block {
  background: linear-gradient(135deg, var(--purple-l), var(--purple));
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phone__biz-name {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  letter-spacing: 2px;
}
.phone__biz-sub { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.phone__cta-btn {
  background: linear-gradient(90deg, var(--gold-l), var(--gold));
  color: #000;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}
.phone__wa {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wa-icon { color: var(--green); font-size: 10px; }
.phone__pay {
  background: rgba(123,47,255,0.12);
  border: 1px solid rgba(123,47,255,0.3);
  color: var(--purple-ll);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 8px;
}
.phone__footer {
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  letter-spacing: 1px;
}
.hero__phone-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 100px;
  background: radial-gradient(ellipse, rgba(123,47,255,0.3), transparent 70%);
  pointer-events: none;
}

/* ── TICKER ── */
.ticker {
  background: var(--purple);
  border-top: 1px solid rgba(123,47,255,0.4);
  border-bottom: 1px solid rgba(123,47,255,0.4);
  overflow: hidden;
  padding: 12px 0;
}
.ticker__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.ticker__track span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HELPERS ── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px;
}
.section-title {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.section-sub { font-size: 18px; color: var(--white-60); max-width: 560px; margin: 0 auto; }

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: var(--bg-2);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123,47,255,0.4);
}
.service-card--featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(45,27,105,0.6), var(--bg-3));
}
.service-card--featured:hover { border-color: var(--gold-l); }
.service-card__badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.service-card__icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--white-60); margin-bottom: 16px; line-height: 1.6; }
.service-card__list { display: flex; flex-direction: column; gap: 6px; }
.service-card__list li { font-size: 13px; color: var(--white-60); }
.service-card__list li::before { color: var(--gold); margin-right: 4px; }

/* ── PRICING ── */
.pricing { padding: 100px 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  background: linear-gradient(145deg, rgba(45,27,105,0.8), var(--bg-2));
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(201,168,76,0.15);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-card__popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-l), var(--gold));
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.pricing-card__tier {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 12px;
}
.pricing-card__price {
  font-family: var(--font-head);
  font-size: 80px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.price-dollar {
  font-size: 36px;
  vertical-align: top;
  margin-top: 14px;
  display: inline-block;
  color: var(--gold);
}
.pricing-card__desc { font-size: 14px; color: var(--white-60); margin-bottom: 24px; }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-card__features li { font-size: 14px; display: flex; gap: 8px; align-items: flex-start; }
.pricing-card__features .check { color: var(--gold); flex-shrink: 0; }
.pricing-card__features .dim { color: rgba(255,255,255,0.25); }
.pricing-card .btn { width: 100%; text-align: center; }

.addons {
  margin-top: 50px;
  background: var(--bg-2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.addons__title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 16px;
}
.addons__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.addon {
  font-size: 14px;
  color: var(--white-60);
  padding: 12px 16px;
  background: var(--bg-3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.addon strong { color: var(--gold); font-size: 16px; }

/* ── PORTFOLIO ── */
.portfolio { padding: 100px 0; background: var(--bg-2); }
.portfolio__counter { margin-bottom: 40px; }
.counter__bar-wrap {
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.counter__bar {
  height: 100%;
  width: var(--pct);
  background: linear-gradient(90deg, var(--purple-l), var(--gold));
  border-radius: 4px;
  transition: width 1.5s ease;
}
.counter__nums {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--white-60);
}
.counter__done { color: var(--gold); font-weight: 700; }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-card {
  background: var(--bg-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.portfolio-card:hover { transform: translateY(-3px); border-color: rgba(123,47,255,0.4); }
.portfolio-card--cta {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(45,27,105,0.5), var(--bg-3));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.portfolio-card__num {
  font-family: var(--font-head);
  font-size: 48px;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 8px;
}
.portfolio-card--cta .portfolio-card__num { color: var(--gold); opacity: 0.4; }
.portfolio-card__type { font-size: 13px; color: var(--white-60); margin-bottom: 4px; }
.portfolio-card__name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.portfolio-card__tag {
  font-size: 12px;
  color: var(--gold);
  padding: 3px 10px;
  background: rgba(201,168,76,0.08);
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi {
  background: var(--bg-2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.testi__stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi p { font-size: 15px; color: var(--white-60); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testi__author { font-size: 13px; font-weight: 600; color: var(--white); }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--bg-2); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__left .section-title { text-align: left; font-size: 42px; }
.contact__left .section-sub { text-align: left; margin: 0 0 24px; }
.contact__info { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.contact__info-item { font-size: 14px; color: var(--white-60); }
.wa-dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--white-60); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple-l); }
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  text-align: center;
  padding: 12px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 8px;
  font-size: 14px;
  color: var(--green);
}

/* ── FOOTER ── */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--white-10); }
.footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; margin-bottom: 48px; }
.footer__brand p { font-size: 14px; color: var(--white-60); margin-top: 12px; }
.footer__nation { color: var(--gold) !important; margin-top: 6px !important; font-weight: 600; }
.footer__links { display: flex; gap: 60px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 4px;
}
.footer__col a { font-size: 14px; color: var(--white-60); transition: color 0.2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  padding-top: 24px;
  border-top: 1px solid var(--white-10);
}

/* ── CHATBOT ── */
.chatbot {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9000;
}
.chatbot__toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-l), var(--purple));
  border: 2px solid var(--gold);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(123,47,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chatbot__toggle:hover { transform: scale(1.08); box-shadow: 0 10px 36px rgba(123,47,255,0.6); }
.chatbot__icon-close { display: none; }
.chatbot.open .chatbot__icon-open { display: none; }
.chatbot.open .chatbot__icon-close { display: block; font-size: 18px; }

.chatbot__window {
  position: absolute;
  bottom: 76px; right: 0;
  width: 360px;
  background: var(--bg-2);
  border: 1px solid rgba(123,47,255,0.4);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92) translateY(10px);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}
.chatbot.open .chatbot__window {
  display: flex;
  transform: scale(1) translateY(0);
  opacity: 1;
}

.chatbot__header {
  background: linear-gradient(135deg, var(--purple), var(--bg-2));
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--white-10);
}
.chatbot__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--purple-l);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  border: 2px solid var(--gold);
}
.chatbot__name { font-weight: 700; font-size: 15px; }
.chatbot__status { font-size: 12px; color: var(--white-60); display: flex; align-items: center; gap: 5px; }
.online-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}
.chatbot__close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--white-60);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
}
.chatbot__messages {
  flex: 1;
  max-height: 320px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.chat-msg { display: flex; }
.chat-msg--bot { justify-content: flex-start; }
.chat-msg--user { justify-content: flex-end; }
.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-msg--bot .chat-bubble {
  background: var(--bg-3);
  color: var(--white);
  border-radius: 4px 12px 12px 12px;
}
.chat-msg--user .chat-bubble {
  background: var(--purple-l);
  color: #fff;
  border-radius: 12px 4px 12px 12px;
}
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.quick-reply {
  background: var(--bg-3);
  border: 1px solid rgba(123,47,255,0.4);
  color: var(--purple-ll);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s;
}
.quick-reply:hover { background: rgba(123,47,255,0.15); }
.chat-typing .chat-bubble {
  display: flex; gap: 4px; align-items: center;
  padding: 12px 16px;
}
.typing-dot {
  width: 7px; height: 7px;
  background: var(--white-60);
  border-radius: 50%;
  animation: typing 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }

.chatbot__input-wrap {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--white-10);
  background: var(--bg-2);
}
.chatbot__input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.chatbot__input:focus { border-color: var(--purple-l); }
.chatbot__send {
  width: 40px; height: 40px;
  background: var(--purple-l);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.chatbot__send:hover { background: var(--gold); color: #000; }

/* ── MODAL (Payment) ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-2);
  border: 1px solid rgba(123,47,255,0.4);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--white-60);
  font-size: 20px;
  cursor: pointer;
}
.modal__title {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.modal__package {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 10px 16px;
  background: rgba(201,168,76,0.08);
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
}
#stripe-card-element {
  background: var(--bg-3);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.card-errors { color: #ff6b6b; font-size: 13px; min-height: 20px; margin-bottom: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: calc(var(--nav-h) + 40px); }
  .hero__content { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__title-line { font-size: 58px; }
  .hero__title-accent { font-size: 80px; }
  .hero__title-small { font-size: 28px; }
  .services__grid { grid-template-columns: repeat(2,1fr); }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .portfolio__grid { grid-template-columns: repeat(2,1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { flex-wrap: wrap; gap: 30px; }
  .addons__grid { grid-template-columns: repeat(2,1fr); }
  .section-title { font-size: 38px; }
}

@media (max-width: 600px) {
  .nav__links { display: none; flex-direction: column; position: fixed; inset: var(--nav-h) 0 0; background: var(--bg); padding: 32px 24px; gap: 20px; }
  .nav__links.open { display: flex; }
  .nav__hamburger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .chatbot__window { width: calc(100vw - 40px); right: 0; }
  .hero__phone-wrap { display: none; }
  .addons__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 30px; }
  .hero__title-line { font-size: 46px; }
  .hero__title-accent { font-size: 64px; }
}
