:root {
  --bg: #f3f5f7;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.86);
  --line: #d8dde3;
  --ink: #1a2027;
  --muted: #4e5c6a;
  --brand: rgb(196, 18, 21);
  --brand-dark: #9f1113;
  --header: rgb(71, 82, 93);
  --radius: 18px;
  --shadow: 0 22px 55px rgba(28, 39, 49, 0.14);
  --maxw: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -5%, #ffffff 0, rgba(255, 255, 255, 0.4) 34%, transparent 58%),
    radial-gradient(circle at 92% -12%, #e8edf2 0, rgba(232, 237, 242, 0.35) 40%, transparent 64%),
    linear-gradient(180deg, #e7ecf1 0%, #f9fbfc 28%, #f3f5f7 100%);
  line-height: 1.5;
  min-height: 100vh;
}

.container {
  width: min(var(--maxw), calc(100% - 2rem));
  margin-inline: auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(62px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
}

.bg-orb-a {
  width: 460px;
  height: 460px;
  top: -180px;
  left: -120px;
  background: rgba(196, 18, 21, 0.3);
  animation: floatA 15s ease-in-out infinite;
}

.bg-orb-b {
  width: 520px;
  height: 520px;
  bottom: -240px;
  right: -150px;
  background: rgba(71, 82, 93, 0.28);
  animation: floatB 17s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(20px, 24px, 0); }
}

@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-22px, -18px, 0); }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(135deg, rgba(71, 82, 93, 0.95), rgba(52, 62, 74, 0.92));
  border-bottom: 2px solid rgba(196, 18, 21, 0.55);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
} */

.brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: rgba(250, 250, 251, 1.00);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(27, 36, 47, .10);
  border: 1px solid rgba(212, 221, 230, .9);
  transition: transform .15s ease, box-shadow .15s ease;
  border-radius: 14px;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.brand:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(27, 36, 47, .14);
}

.brand-mark {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-nav {
  background: #fff;
  color: #10151c !important;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 7px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  padding-top: clamp(3rem, 6vw, 5.2rem);
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.4rem;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.46rem, 3.1vw, 2.5rem);
}

h3 {
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

.lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 65ch;
}

.hero-actions,
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-primary,
.btn-ghost,
.btn-light {
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 1.16rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(196, 18, 21, 0.32);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.66);
  color: #1a2027;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: #b2bcc7;
}

.btn-light {
  background: #fff;
  color: #10151c;
}

.hero-meta {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-meta div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.62rem 0.66rem;
}

.hero-meta strong {
  display: block;
  font-size: 0.92rem;
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-card {
  background: rgba(245, 248, 251, 0.93);
  border: 1px solid #d5dce3;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-card-head {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid #d6dce3;
  background: linear-gradient(90deg, rgba(71, 82, 93, 0.1), rgba(71, 82, 93, 0.04));
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot.red { background: #dc3f35; }
.dot.amber { background: #f5b642; }
.dot.green { background: #63c060; }

.hero-card-body {
  padding: 1.1rem;
  display: grid;
  gap: 0.72rem;
}

.mini-metric {
  border: 1px solid #d6dde4;
  border-radius: 12px;
  padding: 0.8rem;
  background: #fff;
}

.mini-metric .label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.mini-metric strong {
  font-size: 1.38rem;
}

.stats {
  margin-bottom: 2.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.stat h3 {
  margin-bottom: 0.35rem;
  color: var(--brand);
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.2rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(71, 82, 93, 0.07), rgba(71, 82, 93, 0.02));
  border-top: 1px solid #d6dde4;
  border-bottom: 1px solid #d6dde4;
}

.section-accent {
  background: linear-gradient(135deg, var(--header), #394551);
  color: #fff;
}

.section-head {
  margin-bottom: 1.3rem;
  max-width: 840px;
}

.section-head h2 {
  margin-top: 0.2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  min-height: 170px;
}

.feature-card h3 {
  color: var(--brand);
  margin-bottom: 0.4rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #cfd9e3;
  border-radius: 14px;
  padding: 1rem;
}

.timeline-item .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  font-weight: 800;
  background: #fff;
  border: 1px solid #d2dae2;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.timeline-item p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

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

.shot-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d4dbe2;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
}

.shot-card img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.shot-card figcaption {
  padding: 0.72rem 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.mobile-preview-head {
  margin-top: 1.6rem;
  margin-bottom: 0.9rem;
}

.mobile-preview-head h3 {
  margin-top: 0.2rem;
  color: var(--brand);
}

.mobile-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.phone-shot {
  padding: 0.7rem;
}

.phone-frame {
  width: min(286px, 100%);
  margin-inline: auto;
  border-radius: 34px;
  border: 1px solid #2d3946;
  background: linear-gradient(180deg, #19222d, #101823);
  padding: 11px 9px 12px;
  box-shadow: 0 20px 42px rgba(15, 20, 28, 0.35);
}

.phone-notch {
  width: 38%;
  height: 6px;
  margin: 2px auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  border: 1px solid #d4dce4;
  background: #e9eff5;
}

.helper-note {
  color: var(--muted);
  margin-top: 0.8rem;
}

.trial-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trial-wrap h2,
.trial-wrap .eyebrow {
  color: #fff;
}

.trial-wrap p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d4dce3;
  border-radius: 14px;
  padding: 1rem;
}

.contact-card h3 {
  color: var(--brand);
  margin-bottom: 0.6rem;
}

.contact-card p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.contact-card a {
  color: #10151c;
  font-weight: 700;
}

label {
  display: block;
  margin: 0.45rem 0 0.2rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  font: inherit;
  color: #111827;
  background: #fff;
  border: 1px solid #c9d3dd;
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #9fabb8;
  box-shadow: 0 0 0 3px rgba(71, 82, 93, 0.12);
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.ok {
  color: #0f6f35;
}

.form-status.err {
  color: #b71c1c;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer {
  border-top: 1px solid #cfd7df;
  background: rgba(245, 247, 250, 0.92);
}

.footer-inner {
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a {
  color: #111927;
  font-weight: 700;
}

.footer__contacts {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__divider {
  width: 1px;
  height: 20px;
  background: rgba(84, 99, 114, 0.35);
  display: inline-block;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(16, 22, 31, 0.86);
  z-index: 100;
  padding: 1.2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 95vw);
  max-height: 90vh;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 999px;
  font-size: 1.5rem;
  cursor: pointer;
}

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

  .stats,
  .feature-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shots-grid,
  .mobile-app-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem 1rem 1rem;
    background: rgba(48, 59, 71, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    text-align: center;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .stats,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(272px, 100%);
  }

  .trial-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Sync with main page visual language */
body {
  background: radial-gradient(1200px 700px at 20% 10%, rgba(196, 18, 21, 0.12), transparent 60%),
              radial-gradient(900px 600px at 80% 15%, rgba(71, 82, 93, 0.12), transparent 55%),
              radial-gradient(900px 650px at 50% 90%, rgba(71, 82, 93, 0.08), transparent 60%),
              linear-gradient(180deg, #edf2f7, #f8fbfd);
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  filter: blur(55px);
  opacity: 0.5;
  animation: floatA 14s ease-in-out infinite;
}

.blob--1 {
  left: -170px;
  top: -170px;
  background: radial-gradient(circle at 30% 30%, rgba(196, 18, 21, 0.38), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(71, 82, 93, 0.26), transparent 55%);
}

.blob--2 {
  right: -180px;
  top: 120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 30% 30%, rgba(71, 82, 93, 0.34), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(196, 18, 21, 0.28), transparent 55%);
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(71, 82, 93, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(71, 82, 93, 0.14) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.36;
}

.brand__logo {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d4dce3;
  border-radius: 14px;
}

.contact__left h3,
.contact__right h3 {
  color: var(--brand);
  margin: 0 0 8px;
}

.form-note {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.lead-mini {
  margin: 0 0 14px;
  color: var(--muted);
}

.contact__person {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
}

.contact__separator {
  height: 1px;
  margin: 18px 0 22px;
  background: linear-gradient(90deg, rgba(84, 99, 114, 0), rgba(84, 99, 114, 0.26), rgba(84, 99, 114, 0));
}

.billing {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d4dce3;
  background: rgba(255, 255, 255, 0.82);
}

.billing__title {
  margin: 0 0 8px;
  font-weight: 700;
  color: #1a2027;
}

.billing__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.billing__list li {
  font-size: 14px;
  color: #1f2934;
}

.billing__list li span {
  color: var(--muted);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(196, 18, 21, 0.1);
  border: 1px solid rgba(196, 18, 21, 0.22);
}

.avatar--logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.contact__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact__actions .btn-primary,
.contact__actions .btn-ghost {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact__actions .lucide {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.contact__right .form {
  padding: 16px;
  box-shadow: 0 12px 28px rgba(28, 39, 49, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d4dce3;
  border-radius: 14px;
}

.contact__right label {
  display: block;
  margin-bottom: 10px;
}

.contact__right label span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact__right input,
.contact__right textarea {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #c9d3dd;
  background: #fff;
  color: #18212c;
  outline: none;
}

.contact__right input:focus,
.contact__right textarea:focus {
  border-color: rgba(196, 18, 21, 0.35);
  box-shadow: 0 0 0 4px rgba(196, 18, 21, 0.14);
}

.btn-block {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}

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