﻿:root {
  --navy: #1f2c4f;
  --body: #081845;
  --primary: #3f6be0;
  --primary-dark: #2f56c2;
  --mint: #1aa38a;
  --bg-1: #eef4ff;
  --bg-2: #dfeaff;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(27, 57, 128, 0.12);
  --soft-shadow: 0 10px 24px rgba(28, 72, 150, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--navy);
  background: url("bg.jpg") center/cover no-repeat ;
  line-height: 1.6;
}

.page {
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  height: 180px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 60%, transparent 100%);
  filter: blur(0.2px);
  z-index: 0;
}

.page::before {
  top: 440px;
}

.page::after {
  top: 980px;
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.container {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

.center {
  text-align: center;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-top: 14px;
}

p {
  color: var(--body);
  font-size: 1rem;
}

.btn {
  border: none;
  padding: 12px 24px;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, #5593ff 100%);
  color: #fff;
  box-shadow: var(--soft-shadow);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(63, 107, 224, 0.28);
}

.btn.ghost {
  background: #fff;
  border: 1px solid rgba(63, 107, 224, 0.3);
  color: var(--primary-dark);
}

.btn.small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn.small.green {
  background: linear-gradient(135deg, #0f9d83 0%, #24c2a0 100%);
  color: #fff;
}

.btn.small.amber {
  background: linear-gradient(135deg, #f5b449 0%, #f39a2b 100%);
  color: #fff;
}

.btn.small.purple {
  background: linear-gradient(135deg, #8a72f8 0%, #6d55ee 100%);
  color: #fff;
}


.hero {
  padding-top: 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
}

.hero-text p {
  margin: 14px 0 22px;
  max-width: 480px;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image {
  width: min(440px, 90%);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(20, 50, 110, 0.18));
}

.phone {
  width: 260px;
  height: 420px;
  background: #f7faff;
  border-radius: 36px;
  box-shadow: var(--shadow);
  margin-left: auto;
  position: relative;
  padding: 22px;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(200, 214, 239, 0.6);
  pointer-events: none;
}

.phone-top {
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  color: #1d3a6b;
}

.phone-screen {
  margin-top: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(226, 234, 249, 0.8);
  min-height: 240px;
}

.receipt-header {
  height: 12px;
  width: 60%;
  background: linear-gradient(90deg, #dfe7f7, #f2f6ff);
  border-radius: 999px;
  margin-bottom: 20px;
}

.receipt-list span {
  display: block;
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg, #e7eefb, #f6f9ff);
  border-radius: 999px;
  margin-bottom: 12px;
}

.receipt-footer {
  height: 36px;
  width: 80%;
  background: #e5efff;
  border-radius: 12px;
  margin-top: 20px;
}

.phone-cta {
  margin-top: 18px;
  width: 100%;
  background: linear-gradient(135deg, #1aa38a 0%, #32c9a5 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 0;
  font-weight: 600;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  padding: 14px;
}

.card-1 {
  top: 20px;
  left: 10px;
  width: 140px;
  height: 90px;
}

.card-2 {
  right: 10px;
  top: 80px;
  width: 150px;
  height: 100px;
}

.card-3 {
  left: 60px;
  bottom: 40px;
  width: 130px;
  height: 90px;
  background: linear-gradient(135deg, #eff7ff, #ffffff);
}

.card-badge {
  width: 26px;
  height: 26px;
  background: #dff3ff;
  border-radius: 50%;
  margin-bottom: 10px;
}

.card-lines {
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg, #dfe7f7, #f5f8ff);
  border-radius: 999px;
}

.chart-line {
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #18b6a6, #6ed7ff);
  margin-bottom: 10px;
}

.chart-bar {
  height: 10px;
  width: 70%;
  background: #dfe7f7;
  border-radius: 999px;
}

.mini-title {
  font-size: 0.7rem;
  color: #7d8fb3;
}

.mini-value {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 6px 0;
}

.mini-bars {
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg, #cfe1ff, #e9f1ff);
  border-radius: 999px;
}

.empower p {
  max-width: 700px;
  margin: 0 auto;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.divider span {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #b8c9f2, #9fc3ff);
}

.triangle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #2aa4cc;
}

.products {
  padding-top: 60px;
}

.product-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.product-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
}

.product-icon.green { background: #23b190; }
.product-icon.amber { background: #f5b449; }
.product-icon.purple { background: #8a72f8; }
.product-icon.blue { background: #4395ff; }

.product-card p {
  margin-top: 10px;
  margin-bottom: 18px;
}

.product-features {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--body);
  font-size: 0.9rem;
}

.product-features li::before {
  content: "•";
  color: #1aa38a;
  margin-right: 8px;
}

.product-card .btn,
.product-card .chip {
  margin-top: auto;
  align-self: flex-start;
}

.chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f0f4ff;
  color: #4b5f82;
  font-size: 0.85rem;
}


.innovations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.innovations-grid > div:last-child {
  text-align: right;
}

.innov-list-wrap {
  display: inline-block;
  text-align: left;
}

.innov-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 16px;
  color: var(--body);
}

.innov-list strong {
  color: var(--navy);
  font-weight: 700;
}

.illustration {
  position: relative;
  min-height: 260px;
  display: flex;
  /* justify-content: flex-start; */
  align-items: center;
}

.innovation-image {
  width: min(562px, 90%);
  height: auto;
  display: block;
  border-radius: 18px;
  filter: drop-shadow(0 22px 36px rgba(20, 50, 110, 0.18));
}

.device {
  width: 320px;
  height: 200px;
  background: #f8fbff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin-left: auto;
  position: relative;
}

.device-screen {
  position: absolute;
  inset: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(226, 234, 249, 0.8);
  padding: 16px;
}

.tiny-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.tiny-cards span {
  display: block;
  width: 40px;
  height: 30px;
  border-radius: 8px;
  background: #e3efff;
}

.graph {
  height: 60px;
  background: linear-gradient(135deg, #63b5ff, #8be7c2);
  border-radius: 12px;
}

.people {
  position: absolute;
  right: 30px;
  bottom: 10px;
  display: flex;
  gap: 30px;
  align-items: flex-end;
}

.person .head {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffd6b8;
  margin: 0 auto 6px;
}

.person .body {
  width: 50px;
  height: 70px;
  border-radius: 14px 14px 10px 10px;
  background: #4a7fe8;
}

.person.right .body {
  background: #3aa1d9;
}

.shake {
  position: absolute;
  bottom: 56px;
  right: 95px;
  width: 40px;
  height: 8px;
  background: #ffd9b0;
  border-radius: 999px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-card form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-status {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.contact-status.success {
  background: #e9f9f3;
  color: #167853;
  border: 1px solid #b9ebd7;
}

.contact-status.error {
  background: #fff2f2;
  color: #a63636;
  border: 1px solid #f3c6c6;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e1e8f7;
  padding: 10px 12px;
  font-family: inherit;
  background: #f9fbff;
}

label {
  font-size: 0.85rem;
  color: #6d7d97;
}

.footer {
  padding: 30px 0 40px;
  text-align: center;
  color: var(--body);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .innovations-grid,
  .trusted-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .device {
    margin: 0 auto;
  }

  .people {
    right: 20%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .phone {
    margin: 0 auto;
  }

  .float-card {
    display: none;
  }

  .people {
    right: 10%;
  }
}
