/* ===== HOSTar shared stylesheet ===== */

:root {
  --bg: #070F1C;
  --bg-secondary: #0D1829;
  --accent: #2B7FFF;
  --accent-glow: rgba(43, 127, 255, 0.25);
  --text-white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.7);
  --text-dimmer: rgba(255, 255, 255, 0.5);
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-dark-hover: rgba(43, 127, 255, 0.6);
  --white-bg: #ffffff;
  --white-text: #0D1620;
  --white-text-dim: rgba(13, 22, 32, 0.65);
  --green: #22c55e;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1140px;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* { box-sizing: border-box; margin: 0; padding: 0; max-width: 100%; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

section { position: relative; }

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-primary:hover {
  background: #4590ff;
  box-shadow: 0 0 32px rgba(43, 127, 255, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-white {
  background: #fff;
  color: var(--white-text);
}
.btn-white:hover { background: #e8edf5; }

.btn-block { width: 100%; }

/* ===== Navbar ===== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-text em { color: var(--accent); font-style: normal; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-center a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav-center a:hover, .nav-center a.active { color: var(--text-white); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 3px;
}
.lang-pill {
  border: none;
  background: transparent;
  color: var(--text-dimmer);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-pill:hover { color: var(--text-white); }
.lang-pill.active {
  background: var(--accent);
  color: #fff;
}

.nav-cta { display: inline-flex; }
.btn-nav {
  padding: 10px 20px;
  font-size: 14px;
}

/* ===== Hero ===== */

.hero {
  position: relative;
  padding: 100px 24px 0;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, var(--accent-glow), transparent 70%),
    var(--bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 70px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13.5px;
  color: var(--text-dimmer);
  margin-bottom: 64px;
}

.stats-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-top: 1px solid var(--border-dark);
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
  overflow-x: auto;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border-dark);
  min-width: 140px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-dimmer);
  font-weight: 500;
}

/* ===== Page hero (inner pages) ===== */

.page-hero {
  padding: 88px 24px 72px;
  text-align: center;
  background:
    radial-gradient(ellipse 800px 400px at 50% -20%, var(--accent-glow), transparent 70%),
    var(--bg);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Showcase sections ===== */

.showcase {
  padding: 110px 24px;
  background: var(--white-bg);
  color: var(--white-text);
}
.showcase-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.showcase.reversed .showcase-inner { direction: rtl; }
.showcase.reversed .showcase-inner > * { direction: ltr; }

.showcase-eyebrow {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.showcase h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.showcase-body {
  font-size: 16.5px;
  color: var(--white-text-dim);
  line-height: 1.65;
  margin-bottom: 26px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(13,22,32,0.08);
}
.check-list li:last-child { border-bottom: none; }
.check-list .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Phone mockup (chat demo) */

.phone-mockup {
  background: var(--bg);
  border-radius: 28px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 0 40px rgba(43,127,255,0.18), 0 24px 60px rgba(0,0,0,0.3);
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
}
.chat-header {
  background: linear-gradient(135deg, var(--accent), #1d5fd6);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.chat-header-info { line-height: 1.3; }
.chat-header-name { font-size: 14.5px; font-weight: 700; color: #fff; }
.chat-header-status {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-header-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.chat-body {
  padding: 20px;
  min-height: 260px;
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bubble {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  animation: bubble-in 0.25s ease;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.bubble.bot {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble.guest {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 14px 16px;
}
.bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dimmer);
  animation: typing-bounce 1.2s infinite ease-in-out;
}
.bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-quick-replies {
  padding: 14px 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border-dark);
}
.qr-btn {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.qr-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--text-white);
  box-shadow: 0 0 14px var(--accent-glow);
}
.qr-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Lang demo mockup */

.lang-mockup {
  background: var(--bg);
  border-radius: 28px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 0 40px rgba(43,127,255,0.18), 0 24px 60px rgba(0,0,0,0.3);
  padding: 24px;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lang-pair {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}
.lang-pair:last-child { border-bottom: none; padding-bottom: 0; }
.lang-pair-flag {
  font-size: 13px;
  color: var(--text-dimmer);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-pair .bubble { max-width: 92%; margin-bottom: 8px; font-size: 13.5px; }
.lang-pair .bubble:last-child { margin-bottom: 0; }

/* ===== Dark features section ===== */

.features-dark {
  background: var(--bg-secondary);
  padding: 110px 24px;
}
.section-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  margin-bottom: 14px;
}
.section-heading p { color: var(--text-dim); font-size: 16px; }

.features-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all 0.25s ease;
}
.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 28px var(--accent-glow);
  transform: translateY(-3px);
}
.feature-icon { font-size: 30px; margin-bottom: 18px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--text-dim); line-height: 1.55; }

/* ===== Testimonials ===== */

.testimonials {
  background: var(--white-bg);
  color: var(--white-text);
  padding: 110px 24px;
}
.testimonials-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #f6f8fb;
  border: 1px solid rgba(13,22,32,0.06);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: var(--accent); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15.5px; line-height: 1.6; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.author-name { font-size: 14.5px; font-weight: 700; }
.author-location { font-size: 13px; color: var(--white-text-dim); }

/* ===== CTA band ===== */

.cta-band {
  padding: 120px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 700px 400px at 50% 50%, var(--accent-glow), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--border-dark);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 46px;
  margin-bottom: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band p {
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ===== Steps (kako radi) ===== */

.steps {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 24px 110px;
}
.step {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-dark);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
}
.step-content h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.step-content p { color: var(--text-dim); font-size: 15.5px; line-height: 1.6; margin-bottom: 14px; max-width: 500px; }
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(43,127,255,0.1);
  border: 1px solid rgba(43,127,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ===== Pricing ===== */

.pricing-section {
  padding: 20px 24px 110px;
  background: var(--bg);
}
.pricing-grid {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.25s ease;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 0 16px var(--accent-glow);
}
.pricing-name { font-size: 15px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.price-setup {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  color: var(--text-white);
}
.price-period { font-size: 15px; color: var(--text-dimmer); font-weight: 500; }
.price-monthly { font-size: 15px; color: var(--text-dimmer); margin-top: 6px; }
.price-monthly-label { font-size: 13px; color: rgba(255, 255, 255, 0.35); }
.pricing-card .btn { margin-top: 28px; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  padding: 9px 0;
  color: var(--text-dim);
  border-top: 1px solid var(--border-dark);
}
.pricing-features li:first-child { border-top: none; }
.pricing-features .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(43,127,255,0.15);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pricing-note {
  text-align: center;
  color: var(--text-dimmer);
  font-size: 14px;
  max-width: 940px;
  margin: 32px auto 0;
}

/* ===== FAQ accordion ===== */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 24px 110px;
}
.faq-item {
  border-bottom: 1px solid var(--border-dark);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 600;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-dim);
  transition: all 0.25s ease;
}
.faq-item.open .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(135deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 4px 24px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
  max-width: 640px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== Contact page ===== */

.contact-section {
  padding: 20px 24px 120px;
}
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(43,127,255,0.12);
  border: 1px solid rgba(43,127,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.contact-info-label { font-size: 13px; color: var(--text-dimmer); margin-bottom: 4px; }
.contact-info-value { font-size: 15.5px; font-weight: 600; }

.contact-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.2s ease;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43,127,255,0.15);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232B7FFF' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--accent);
  background: rgba(43,127,255,0.08);
  border-radius: var(--radius);
}
.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 24px var(--accent-glow);
}
.form-success h3 { font-family: var(--font-display); font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.form-success p { color: var(--text-dim); font-size: 15px; }

/* ===== Footer ===== */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
  padding: 48px 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--text-white); }
.footer-copy { font-size: 13px; color: var(--text-dimmer); }

/* ===== Responsive ===== */

@media (max-width: 980px) {
  .hero h1 { font-size: 52px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: rgba(7, 15, 28, 0.98);
  padding: 1rem;
  border-bottom: 1px solid var(--border-dark);
  z-index: 299;
}
.mobile-menu a {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 1rem;
  border-bottom: 1px solid var(--border-dark);
  text-decoration: none;
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text-white); }

@media (max-width: 740px) {
  .nav-inner { padding: 0.5rem 0.75rem; gap: 8px; }
  .nav-center { display: none; }
  .nav-right { gap: 6px; }
  .logo-text { font-size: 16px; }
  .lang-switcher { gap: 1px; padding: 2px; }
  .lang-pill { padding: 3px 5px; font-size: 9px; }
  .btn-nav { padding: 7px 10px; font-size: 12px; }
  .hamburger { display: flex; padding: 4px; }
  .hamburger span { width: 18px; }
  .mobile-menu { top: 50px; }
  .mobile-menu.open { display: flex; }
  .hero { padding-top: 72px; }
  .hero h1 { font-size: 38px; }
  .hero-subtitle { font-size: 16px; }
  .page-hero h1 { font-size: 40px; }
  .showcase { padding: 72px 24px; }
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase.reversed .showcase-inner { direction: ltr; }
  .showcase.reversed .showcase-inner > *:first-child { order: 2; }
  .showcase h2 { font-size: 32px; }
  .features-dark { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 72px 24px; }
  .cta-band { padding: 80px 24px; }
  .cta-band h2 { font-size: 34px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-strip { flex-wrap: wrap; justify-content: flex-start; }
  .stat { min-width: 45%; border-right: none; margin-bottom: 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .step { flex-direction: column; gap: 16px; }
}

/* Reason cards */
.tc-icon { font-size: 28px; margin-bottom: 12px; }
.tc-reason-t { font-size: 16px; font-weight: 700; color: var(--white-text); margin-bottom: 8px; letter-spacing: -.2px; }

/* Chat widget preview */
.widget-preview {
  position: relative;
  display: inline-block;
}
.widget-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(43, 127, 255, 0.4);
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.widget-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 260px;
  background: var(--bg-secondary);
  border: 1.5px solid rgba(43, 127, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
