﻿:root {
  --bg: #071018;
  --bg-soft: #0d1a26;
  --card: rgba(255,255,255,.08);
  --card-strong: rgba(255,255,255,.12);
  --text: #f8fafc;
  --muted: #a8b3c2;
  --line: rgba(255,255,255,.12);
  --gold: #d7b56d;
  --gold-soft: rgba(215,181,109,.18);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0,0,0,.32);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215,181,109,.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(56,189,248,.12), transparent 34rem),
    var(--bg);
  color: var(--text);
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7,16,24,.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #f6e4a8);
  color: #10151f;
  font-weight: 900;
}

.brand strong {
  display: block;
  letter-spacing: -.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  padding: 94px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(215,181,109,.25);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 13px;
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.07em;
}

.hero p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
  max-width: 680px;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f6e4a8);
  color: #10151f;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.dashboard-card {
  min-height: 430px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 10%, rgba(215,181,109,.26), transparent 16rem),
    rgba(3,10,18,.74);
  border: 1px solid var(--line);
  padding: 24px;
}

.dashboard-top {
  display: flex;
  gap: 8px;
}

.dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

.dashboard-card h3 {
  margin: 34px 0 20px;
  font-size: 28px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-grid div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.metric-grid strong {
  display: block;
  font-size: 28px;
}

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

.status-line {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  color: var(--muted);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34,197,94,.14);
}

.section {
  padding: 80px 0;
}

.section-soft {
  background: rgba(255,255,255,.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-head h2 {
  margin: 16px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.cards-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card,
.demo-card,
.process-card,
.loading-card {
  min-height: 230px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 22px;
}

.product-card:hover,
.demo-card:hover,
.process-card:hover {
  background: var(--card-strong);
}

.product-card h3,
.demo-card h3,
.process-card h3 {
  margin: 10px 0;
  font-size: 22px;
  letter-spacing: -.03em;
}

.product-card p,
.demo-card p,
.process-card p,
.loading-card {
  color: var(--muted);
  line-height: 1.65;
}

.card-meta {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.card-meta span {
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
}

.process-card span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 8px;
}

.cta-section {
  padding: 80px 0;
}

.cta-card {
  border: 1px solid rgba(215,181,109,.28);
  background:
    linear-gradient(135deg, rgba(215,181,109,.18), rgba(255,255,255,.05));
  border-radius: 34px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-card h2 {
  margin: 14px 0 8px;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -.05em;
}

.cta-card p {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

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

  .cards-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 56px;
  }

  .cards-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-card {
    min-height: auto;
  }
}

.feature-card {
  grid-column: span 2;
}

@media (max-width: 940px) {
  .feature-card {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .feature-card {
    grid-column: span 1;
  }
}

.quotation-section {
  padding: 96px 24px;
  background:
    radial-gradient(circle at 15% 0%, rgba(215,181,109,.12), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgba(56,189,248,.10), transparent 32rem),
    rgba(7,12,20,.96);
}

.quotation-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.quotation-copy {
  border: 1px solid var(--line, rgba(255,255,255,.10));
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035)),
    rgba(255,255,255,.04);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.quotation-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 16px 0 18px;
}

.quotation-copy p {
  color: var(--muted, rgba(255,255,255,.68));
  line-height: 1.7;
  margin: 0;
}

.quotation-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.quotation-points div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line, rgba(255,255,255,.10));
  background: rgba(255,255,255,.045);
  border-radius: 18px;
  padding: 14px;
}

.quotation-points strong {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(215,181,109,.14);
  color: var(--gold, #d7b56d);
}

.quotation-points span {
  color: var(--muted, rgba(255,255,255,.68));
  line-height: 1.5;
}

.quotation-form {
  border: 1px solid var(--line, rgba(255,255,255,.10));
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04)),
    rgba(10,18,28,.90);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
  display: grid;
  gap: 16px;
}

.quotation-form label {
  display: grid;
  gap: 8px;
}

.quotation-form label span {
  color: var(--muted, rgba(255,255,255,.68));
  font-size: 13px;
}

.quotation-form input,
.quotation-form select,
.quotation-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line, rgba(255,255,255,.10));
  background: rgba(0,0,0,.22);
  color: var(--text, #ffffff);
  padding: 0 14px;
  min-height: 52px;
  outline: none;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quotation-form textarea {
  padding-top: 14px;
  resize: vertical;
}

.quotation-form input:hover,
.quotation-form select:hover,
.quotation-form textarea:hover {
  border-color: rgba(255,255,255,.16);
}

.quotation-form input:focus,
.quotation-form select:focus,
.quotation-form textarea:focus {
  border-color: rgba(215,181,109,.55);
  box-shadow: 0 0 0 4px rgba(215,181,109,.08);
}

.quotation-form select option {
  color: #111827;
}

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

.quote-submit {
  min-height: 54px;
  border: none;
  border-radius: 17px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, #ecd58a 0%, #d7b56d 100%);
  color: #111827;
  box-shadow: 0 14px 36px rgba(215,181,109,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.quote-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(215,181,109,.30);
}

.quotation-message {
  min-height: 22px;
  font-size: 13px;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
}

.quotation-message.info {
  color: #f3d98a;
  background: rgba(215,181,109,.08);
  border-color: rgba(215,181,109,.18);
}

.quotation-message.error {
  color: #fecaca;
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.22);
}

.quotation-message.success {
  color: #bbf7d0;
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.22);
}

@media (max-width: 900px) {
  .quotation-section {
    padding: 72px 16px;
  }

  .quotation-shell {
    grid-template-columns: 1fr;
  }

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

  .quotation-copy,
  .quotation-form {
    border-radius: 26px;
    padding: 22px;
  }
}
