:root {
  --navy: #0c1f3f;
  --navy-2: #102a56;
  --gold: #d8a845;
  --gold-2: #f3d27d;
  --ink: #172033;
  --muted: #607086;
  --line: #e8edf5;
  --soft: #f6f8fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 31, 63, .12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  padding: 9px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 650; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(232,237,245,.9);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.02em; color: var(--navy); }
.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--navy);
  font-weight: 1000;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 28px rgba(216,168,69,.28);
}
.logo small { display: block; font-weight: 700; color: var(--muted); letter-spacing: 0; font-size: 11px; margin-top: -4px; }
.menu { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 700; color: #304058; }
.menu a:hover { color: var(--gold); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #231903; box-shadow: 0 16px 35px rgba(216,168,69,.24); }
.btn-dark { background: var(--navy); color: #fff; box-shadow: 0 16px 35px rgba(12,31,63,.18); }
.btn-light { background: #fff; color: var(--navy); border-color: rgba(255,255,255,.34); }
.btn-outline { border-color: rgba(12,31,63,.18); color: var(--navy); background: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(216,168,69,.24), transparent 32%),
    linear-gradient(135deg, #f7f9fd 0%, #edf3fb 58%, #fff 100%);
  padding: 72px 0 42px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -220px auto;
  width: 520px;
  height: 520px;
  background: rgba(12,31,63,.06);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr); gap: 52px; align-items: center; position: relative; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(216,168,69,.15);
  color: #7a5410;
  border: 1px solid rgba(216,168,69,.24);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}
h1 {
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 20px 0 20px;
}
.hero p.lead { font-size: clamp(17px, 2.1vw, 21px); color: #42516a; max-width: 680px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: 14px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note span::before { content: "✓"; color: var(--gold); font-weight: 1000; }

.video-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 30px;
  padding: 15px;
  box-shadow: var(--shadow);
  position: relative;
}
.video-card::before {
  content: "AI Sales Representative";
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  background: rgba(12,31,63,.78);
  color: white;
  border: 1px solid rgba(255,255,255,.16);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}
.video-card video { border-radius: 22px; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: var(--navy); }
.video-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(78%, 290px);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(232,237,245,.92);
  box-shadow: 0 14px 32px rgba(12,31,63,.13);
  border-radius: 18px;
  padding: 13px 14px;
  font-size: 13px;
  color: #3a475a;
}
.video-caption strong { display: block; color: var(--navy); font-size: 14px; }

.trust-strip {
  padding: 24px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.trust-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #241800;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 1000;
}
.trust-item strong { color: var(--navy); display: block; line-height: 1.25; }
.trust-item span { color: var(--muted); font-size: 13px; }

.section { padding: 84px 0; }
.section.soft { background: var(--soft); }
.section.dark { background: linear-gradient(135deg, var(--navy), #07152e); color: #fff; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-eyebrow { color: var(--gold); font-weight: 950; letter-spacing: .1em; font-size: 12px; text-transform: uppercase; }
h2 { color: var(--navy); font-size: clamp(32px, 4vw, 48px); line-height: 1.08; margin: 8px 0 14px; letter-spacing: -.04em; }
.dark h2 { color: #fff; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.dark .section-head p { color: rgba(255,255,255,.76); }

.products { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(12,31,63,.06);
}
.product-art {
  min-height: 210px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 45% 42%, rgba(216,168,69,.24), transparent 34%),
    linear-gradient(135deg, #f8fbff, #eef3fb);
  border-bottom: 1px solid var(--line);
}
.product-art svg { width: 126px; height: 126px; filter: drop-shadow(0 20px 25px rgba(12,31,63,.16)); }
.product-body { padding: 23px; }
.product-body h3 { color: var(--navy); margin: 0 0 9px; font-size: 23px; letter-spacing: -.02em; }
.product-body p { color: var(--muted); margin: 0 0 18px; }
.pills { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 20px; }
.pill { background: var(--soft); color: #506077; border: 1px solid var(--line); font-size: 12px; font-weight: 800; border-radius: 999px; padding: 6px 10px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.process-list { display: grid; gap: 16px; }
.process-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(12,31,63,.05);
}
.step-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-weight: 1000;
  color: #261900;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}
.process-step h3 { margin: 0 0 4px; color: var(--navy); }
.process-step p { margin: 0; color: var(--muted); }
.preview-panel {
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.preview-panel::after {
  content: "";
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(216,168,69,.18);
  position: absolute;
  right: -84px;
  top: -60px;
}
.preview-panel h3 { margin: 0 0 12px; font-size: 30px; position: relative; z-index: 1; }
.preview-panel p { color: rgba(255,255,255,.75); position: relative; z-index: 1; }
.mock-quote {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 18px;
}
.mock-row { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.12); padding: 10px 0; }
.mock-row:last-child { border-bottom: 0; }
.mock-row span { color: rgba(255,255,255,.65); }
.mock-row strong { color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.gallery-card {
  min-height: 178px;
  border-radius: 20px;
  border: 1px solid rgba(232,237,245,.9);
  background: linear-gradient(135deg, #fff, #eef3fb);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--navy);
  box-shadow: 0 12px 32px rgba(12,31,63,.06);
}
.gallery-card strong { display: block; font-size: 18px; }
.gallery-card span { color: var(--muted); font-size: 13px; }
.gallery-icon { font-size: 42px; margin-bottom: 12px; }

.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.stat { background: var(--soft); border-radius: 18px; padding: 18px; border: 1px solid var(--line); }
.stat strong { display: block; font-size: 28px; color: var(--navy); }
.stat span { color: var(--muted); font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.contact-box { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; padding: 20px; }
.contact-box span { color: rgba(255,255,255,.62); display: block; font-size: 13px; margin-bottom: 6px; }
.contact-box strong, .contact-box a { color: #fff; font-size: 18px; }
.form-card { background: #fff; color: var(--ink); border-radius: 26px; padding: 26px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 7px; margin-bottom: 14px; }
.form-field.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 850; color: var(--navy); }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  outline: none;
  transition: border .16s ease, box-shadow .16s ease;
  background: #fff;
}
input:focus, select:focus, textarea:focus { border-color: rgba(216,168,69,.75); box-shadow: 0 0 0 4px rgba(216,168,69,.15); }
textarea { min-height: 110px; resize: vertical; }
.form-note { color: var(--muted); font-size: 13px; margin: 10px 0 0; }

.footer { background: #061126; color: rgba(255,255,255,.72); padding: 36px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer strong { color: #fff; }
.footer a { color: #fff; font-weight: 800; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: #1fb45b;
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 16px 36px rgba(31,180,91,.28);
  font-weight: 900;
}

@media (max-width: 960px) {
  .menu { display: none; }
  .hero { padding-top: 44px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .video-card { max-width: 480px; margin: 0 auto; }
  .trust-grid, .products { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .topbar .container { justify-content: center; text-align: center; }
  .nav { min-height: 68px; }
  .nav-actions .btn-outline { display: none; }
  h1 { font-size: 42px; }
  .hero-actions .btn { width: 100%; }
  .trust-grid, .products, .gallery, .stats, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .video-caption { display: none; }
  .floating-whatsapp { left: 18px; right: 18px; justify-content: center; }
}
