:root {
  --bg-dark: #0b1728;
  --bg-dark-2: #101d31;
  --bg-dark-3: #13233a;
  --bg-light: #f5f7fb;
  --bg-cream: #faf7f1;
  --surface: #ffffff;
  --surface-soft: #f0f4f8;
  --surface-dark: #182741;
  --surface-dark-2: #1d2d49;
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: #e5eaf1;
  --text-dark: #0f1d31;
  --text-muted: #617086;
  --text-light: #f5f7fb;
  --text-soft: #a6b5c8;
  --accent: #25c78a;
  --accent-2: #1da873;
  --shadow-dark: 0 30px 70px rgba(0, 0, 0, 0.32);
  --shadow-light: 0 22px 55px rgba(15, 29, 49, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  color: var(--text-light);
  background: rgba(11, 23, 40, 0.92);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand {
  font-size: 28px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #36df9c 100%);
  color: #082015;
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(37, 199, 138, 0.22);
}

.brand-mark.small {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--text-soft);
  font-size: 15px;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}

.nav-cta {
  min-height: 52px;
  padding: 0 26px;
  background: linear-gradient(135deg, var(--accent) 0%, #33db99 100%);
  color: #082015;
  box-shadow: 0 16px 34px rgba(37, 199, 138, 0.2);
}

.nav-cta:hover,
.button.primary:hover,
.button.light:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.hero-shell,
.section-dark,
.final-cta,
.site-footer {
  background:
    radial-gradient(circle at top center, rgba(29, 168, 115, 0.12) 0%, rgba(29, 168, 115, 0) 34%),
    linear-gradient(180deg, var(--bg-dark) 0%, #0c182a 100%);
}

.hero-shell {
  color: var(--text-light);
  border-bottom: 1px solid var(--line-dark);
}

.hero,
.brand-ribbon,
.section,
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 56px;
  align-items: center;
  padding: 74px 40px 56px;
}

.hero-copy-block {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(37, 199, 138, 0.22);
  border-radius: 999px;
  background: rgba(37, 199, 138, 0.06);
  box-shadow: inset 0 0 0 1px rgba(37, 199, 138, 0.05);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: -0.03em;
  font-weight: 500;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(60px, 6vw, 86px);
  line-height: 0.96;
}

h1 span {
  color: var(--accent);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy,
.section-copy p,
.workflow-grid p,
.security-grid p,
.objection-grid p,
.quote-card p,
.price-card p,
.faq-list p,
.demo-form .form-note {
  line-height: 1.7;
}

.hero-copy {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 18px;
}

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

.button {
  min-height: 58px;
  padding: 0 24px;
  font-size: 18px;
}

.button.primary,
.button.light {
  background: linear-gradient(135deg, var(--accent) 0%, #2fd095 100%);
  color: #082015;
  box-shadow: 0 18px 36px rgba(37, 199, 138, 0.18);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.full-button {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: 15px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof i {
  color: var(--accent);
  font-style: normal;
}

.hero-visual {
  position: relative;
  padding-top: 22px;
}

.app-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(31, 47, 75, 0.97) 0%, rgba(22, 35, 57, 0.98) 100%);
  box-shadow: var(--shadow-dark);
}

.app-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 15px;
}

.app-card-top em {
  margin-left: auto;
  color: var(--text-soft);
  font-style: normal;
  font-size: 13px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(37, 199, 138, 0.12);
}

.app-photo-row {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 14px;
  margin-bottom: 14px;
}

.photo-box,
.field {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.photo-box {
  position: relative;
  min-height: 84px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 75%, transparent 75%, transparent),
    rgba(255, 255, 255, 0.02);
  background-size: 20px 20px;
}

.photo-box span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #8e9cb0;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.qr-box {
  border-radius: 16px;
  background:
    linear-gradient(90deg, #fff 10px, transparent 10px) 0 0 / 16px 16px,
    linear-gradient(#fff 10px, transparent 10px) 0 0 / 16px 16px,
    #fff;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  position: relative;
  padding: 14px 16px 16px;
}

.field label,
.field span,
.field strong {
  display: block;
}

.field label {
  margin-bottom: 8px;
  color: #95a2b4;
  font-size: 11px;
  letter-spacing: 0.09em;
}

.field strong {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 700;
}

.field span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--accent);
}

.field.wide {
  grid-column: 1 / -1;
}

.field.warn {
  border-color: rgba(219, 186, 88, 0.22);
}

.field.warn label {
  color: #d8c36f;
}

.field.warn span {
  color: #f0bf4e;
}

.hero-panel-button {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #27c78b 0%, #2ed39a 100%);
  color: #082015;
  text-align: center;
  font-weight: 800;
}

.brand-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 22px 40px 28px;
  color: #7f8ca0;
  border-top: 1px solid var(--line-dark);
}

.ribbon-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.section {
  padding: 92px 40px;
}

.section-light {
  background: var(--bg-light);
}

.section-cream {
  background: var(--bg-cream);
}

.section-dark {
  color: var(--text-light);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 540px);
  gap: 52px;
  align-items: start;
}

.section-copy p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 18px;
}

.section-dark .section-copy p,
.section-heading p,
.section-dark .workflow-grid p,
.section-dark .security-grid p {
  color: var(--text-soft);
}

.narrow-center {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.benefit-list,
.price-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
}

.benefit-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 700;
}

.benefit-list strong {
  color: var(--text-dark);
}

.proof-card,
.price-card,
.objection-grid article,
.quote-card,
.faq-list details {
  border: 1px solid var(--line-light);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-light);
}

.proof-card {
  padding: 28px;
}

.price-highlight {
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #14573f 0%, #179b68 100%);
  color: #effff8;
}

.price-kicker,
.price-highlight strong,
.price-highlight p,
.proof-points strong,
.proof-points span {
  display: block;
}

.price-kicker {
  margin-bottom: 10px;
  color: #c9f3e0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-highlight strong {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 800;
}

.price-highlight p {
  margin: 0;
  color: #effff8;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.proof-points div {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.proof-points strong {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 800;
}

.proof-points span {
  margin-top: 4px;
  color: var(--text-muted);
}

.workflow-grid,
.objection-grid,
.pricing-grid-3 {
  display: grid;
  gap: 20px;
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-grid article,
.security-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.step {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
}

.security-section {
  padding-top: 22px;
}

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

.security-icon {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 24px;
}

.objection-grid,
.pricing-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.objection-grid article,
.quote-card {
  padding: 28px;
}

.objection-grid p,
.quote-card p,
.price-card p,
.faq-list p {
  color: #5c564c;
}

.quote-card {
  position: relative;
  max-width: 760px;
  margin: 34px auto 0;
  text-align: center;
}

.quote-mark {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-family: "Newsreader", Georgia, serif;
  font-size: 44px;
}

.quote-card p {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.45;
}

.quote-meta strong,
.quote-meta span {
  display: block;
}

.quote-meta strong {
  margin-bottom: 6px;
}

.quote-meta span {
  color: #8f8578;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 26px;
}

.price-card.featured {
  border-color: rgba(37, 199, 138, 0.36);
  box-shadow: 0 28px 62px rgba(21, 79, 58, 0.16);
}

.badge {
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e7fff4;
  color: #13533d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-copy {
  margin-bottom: 0;
}

.price {
  margin: 2px 0 0;
  color: var(--text-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.price.free,
.price.custom {
  font-size: 40px;
}

.setup {
  margin: -4px 0 0;
  color: #8e8579;
  font-size: 14px;
}

.price-card ul li {
  margin-bottom: 12px;
  color: #50493f;
  line-height: 1.6;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 4px 22px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-sign {
  color: var(--accent-2);
  font-size: 24px;
  font-weight: 500;
}

.faq-list p {
  margin-bottom: 18px;
}

.final-cta {
  color: var(--text-light);
}

.final-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 30px;
  color: #c9d6e6;
  font-size: 18px;
  line-height: 1.7;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin: 0 0 24px;
}

.contact-strip a,
.footer-contact {
  color: #d9e5f2;
  text-decoration: none;
}

.contact-strip a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.demo-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.demo-form .full {
  grid-column: 1 / -1;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
}

.demo-form textarea {
  resize: vertical;
}

.light-note {
  color: #bdd0df;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  color: #d9e5f2;
}

.form-status.success {
  color: #86f0c4;
}

.form-status.error {
  color: #ffb4b4;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 40px 40px;
  color: #c5d1df;
}

.site-footer p,
.site-footer span {
  margin: 0;
  color: #91a2b7;
}

.footer-contact {
  color: #c5d1df;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal a {
  color: #c5d1df;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-contact:hover {
  color: var(--text-light);
}

.legal-main {
  background: var(--bg-light);
}

.legal-hero {
  padding: 78px 40px 56px;
  color: var(--text-light);
  background:
    radial-gradient(circle at top center, rgba(29, 168, 115, 0.12) 0%, rgba(29, 168, 115, 0) 34%),
    linear-gradient(180deg, var(--bg-dark) 0%, #0c182a 100%);
}

.legal-hero-inner,
.legal-content {
  max-width: 920px;
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 62px;
}

.legal-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.legal-content {
  padding: 56px 40px 88px;
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-light);
}

.legal-card h2 {
  margin-top: 34px;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 800;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-note {
  padding: 16px 18px;
  border: 1px solid #d8efe5;
  border-radius: 16px;
  background: #f0fff8;
  color: #245844;
}

.legal-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
}

.legal-contact a {
  color: var(--accent-2);
  font-weight: 700;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .hero,
  .section-grid,
  .workflow-grid,
  .objection-grid,
  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-copy-block,
  .section-copy {
    max-width: none;
  }

  .hero-visual {
    max-width: 620px;
  }

  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .brand-ribbon,
  .section,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .nav-links {
    display: none;
  }

  .security-grid,
  .proof-points,
  .demo-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-cta {
    display: none;
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .hero {
    gap: 26px;
    padding-top: 34px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-copy,
  .section-copy p,
  .benefit-list li,
  .final-cta p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .app-card {
    padding: 18px;
    border-radius: 22px;
  }

  .app-photo-row {
    grid-template-columns: 1fr 78px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-ribbon {
    justify-content: flex-start;
    gap: 14px 18px;
    font-size: 14px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .footer-legal {
    width: 100%;
  }

  .contact-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-hero {
    padding: 54px 22px 42px;
  }

  .legal-hero h1 {
    font-size: 44px;
  }

  .legal-content {
    padding: 32px 22px 72px;
  }

  .legal-card {
    padding: 24px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, #2ed39a 100%);
    color: #082015;
    font-weight: 800;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-sticky-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
