
:root {
  --bg: #05070d;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.12);
  --muted: #aeb8c8;
  --text: #f8fafc;
  --gold: #d4af37;
  --gold-soft: #f5d76e;
  --cyan: #22d3ee;
  --violet: #8b5cf6;
  --dark: #070b13;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), transparent 28%),
    linear-gradient(215deg, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(180deg, #111827 0%, #05070d 42%, #02030a 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 72%);
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(20px);
}

.logo {
  height: 54px;
  width: auto;
  display: block;
  flex-shrink: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.lang-btn {
  min-width: 36px;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.lang-btn.active {
  color: #0a0d14;
  background: linear-gradient(135deg, #fff1a8, var(--gold), #9a6a10);
}

.nav-cta,
.primary-btn,
.secondary-btn,
.send-btn,
.prompt-row button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-cta,
.primary-btn,
.send-btn {
  color: #0a0d14;
  background: linear-gradient(135deg, #fff1a8, var(--gold), #9a6a10);
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.26);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.page {
  overflow: hidden;
}

.hero,
section {
  width: 100%;
  padding: clamp(54px, 8vw, 92px) clamp(20px, 5vw, 64px);
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 70px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.accent {
  color: var(--gold-soft);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
}

.secondary-btn {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 34px;
}

.trust-item {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.trust-value {
  color: var(--gold-soft);
  font-size: 24px;
  font-weight: 900;
}

.trust-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  max-width: 700px;
}

.deliverables span {
  padding: 9px 12px;
  color: #dce7f5;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.demo-shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035)),
    rgba(5, 7, 13, 0.72);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.38),
    0 0 60px rgba(34, 211, 238, 0.13),
    0 0 86px rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(28px);
  padding: 18px;
}

.demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 4px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.demo-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7dd3fc;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.reset-btn {
  min-height: 30px;
  padding: 0 10px;
  color: var(--muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.reset-btn:hover {
  color: var(--gold-soft);
  border-color: rgba(212, 175, 55, 0.4);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.chatbox,
.dashboard,
.service-card,
.pricing-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(24px);
}

.chatbox {
  height: 286px;
  overflow-y: auto;
  padding: 18px;
}

.msg {
  width: fit-content;
  max-width: 86%;
  padding: 11px 13px;
  margin: 10px 0;
  line-height: 1.45;
  font-size: 14px;
  border-radius: 8px;
}

.user {
  margin-left: auto;
  color: #07111f;
  background: linear-gradient(135deg, #fff1a8, var(--gold));
}

.bot {
  color: #e5edf8;
  background: rgba(255, 255, 255, 0.075);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

.input-box {
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.055);
  padding: 10px 12px;
  display: flex;
  align-items: center;
}

textarea {
  width: 100%;
  height: 26px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  resize: none;
  font: inherit;
  line-height: 1.45;
  overflow: hidden;
  display: block;
}

textarea::placeholder {
  color: #748095;
}

.send-btn {
  min-width: 82px;
  border-radius: 8px;
  padding: 0 16px;
}

.prompt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.prompt-row button {
  min-height: 34px;
  padding: 0 11px;
  color: #dce7f5;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.prompt-row button:hover {
  color: var(--gold-soft);
  border-color: rgba(212, 175, 55, 0.36);
}

.dashboard {
  padding: 18px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-title h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: 17px;
}

.score {
  color: #8ee6ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.metric {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}

.metric-label {
  color: var(--muted);
}

.metric-value {
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.ready {
  margin-top: 12px;
  padding: 12px;
  color: #0c141f;
  background: linear-gradient(135deg, #fff1a8, var(--gold));
  font-weight: 900;
  text-align: center;
}

.typing {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-style: italic;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.pricing-card {
  padding: 24px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.industry-item {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #edf4ff;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.process-step span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #0a0d14;
  background: linear-gradient(135deg, #fff1a8, var(--gold), #9a6a10);
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-kicker {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-card h3,
.pricing-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.service-card p,
.pricing-card p,
.pricing-card li {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card.featured {
  border-color: rgba(212, 175, 55, 0.52);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: 0 0 38px rgba(212, 175, 55, 0.12);
}

.price-stack {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.price-row:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-row strong {
  color: var(--gold-soft);
  font-size: 30px;
  font-weight: 900;
}

.price-row.monthly strong {
  color: #8ee6ff;
}

.price-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.final-cta {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.final-cta .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-form input {
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  outline: 0;
  font: inherit;
}

.workflow-field {
  grid-column: 1 / 4;
}

.privacy-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-consent input {
  min-height: auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.privacy-note {
  margin: 9px 0 0;
  color: #8e9aaf;
  font-size: 12px;
  line-height: 1.45;
}

.contact-form input::placeholder {
  color: #748095;
}

.contact-form input:focus {
  border-color: rgba(212, 175, 55, 0.62);
}

.form-status {
  min-height: 24px;
  margin: 14px auto 0;
  color: var(--gold-soft);
  font-weight: 800;
  text-align: center;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  background: rgba(2, 3, 10, 0.62);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-note {
  max-width: 720px;
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid,
  .industry-grid,
  .process-layout,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .workflow-field {
    grid-column: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  nav {
    gap: 10px;
    padding: 12px 14px;
  }

  .logo {
    height: 34px;
  }

  .nav-cta {
    padding: 10px 11px;
    white-space: nowrap;
    font-size: 13px;
  }

  .lang-toggle {
    padding: 3px;
  }

  .lang-btn {
    min-width: 30px;
  }

  .hero,
  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .send-btn {
    min-height: 46px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .metric {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .metric-value {
    text-align: left;
  }
}

@media (max-width: 360px) {
  nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo {
    height: 31px;
  }

  .nav-actions {
    gap: 6px;
  }

  .lang-btn {
    min-width: 28px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0;
  }

  .nav-cta::before {
    content: "Call";
    font-size: 12px;
  }
}
