@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --font-sans: "__Inter_aaf875", "__Inter_Fallback_aaf875", sans-serif;
  --color-bg: #f5f7fb;
  --color-surface: #ffffff;
  --color-surface-alt: #eef3fb;
  --color-text: #212b36;
  --color-muted: #637381;
  --color-line: #d9e3f0;
  --color-primary: #DE5C5C;
  --color-primary-dark: #c44b4b;
  --color-accent: #14b8a6;
  --color-shadow: 0 24px 70px rgba(16, 35, 63, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  font-weight: 400;
  font-style: normal;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

code {
  padding: 0.18em 0.42em;
  border-radius: 8px;
  background: rgba(222, 92, 92, 0.08);
  color: var(--color-primary);
  font-size: 0.95em;
  font-weight: 700;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 700;
}

p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(248, 251, 255, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 227, 240, 0.9);
  box-shadow: 0 10px 30px rgba(16, 35, 63, 0.06);
}

.site-nav {
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text);
}

.brand-logo {
  width: auto;
  height: 42px;
  max-width: 180px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff8b2c 0%, #ef4444 48%, #0d63f3 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.brand-text {
  letter-spacing: -0.02em;
}

.navbar-collapse {
  align-items: center;
}

.navbar-nav {
  gap: 10px;
}

.nav-link {
  color: var(--color-muted);
  font-weight: 600;
  padding: 10px 14px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-text);
}

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

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 13px 22px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #267bff 100%);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(13, 99, 243, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.btn-trial {
  background: linear-gradient(135deg, #de5c5c 0%, #c44b4b 100%);
  border: 1px solid rgba(196, 75, 75, 0.28);
  color: #fff;
  box-shadow: 0 16px 36px rgba(222, 92, 92, 0.26);
}

.btn-trial:hover,
.btn-trial:focus {
  background: linear-gradient(135deg, #c44b4b 0%, #b44343 100%);
  border-color: rgba(180, 67, 67, 0.34);
  color: #fff;
  box-shadow: 0 18px 38px rgba(196, 75, 75, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-text);
  border-color: var(--color-line);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #fff;
  color: var(--color-text);
  border-color: #c6d6ea;
}

.btn-link {
  color: var(--color-text);
  text-decoration: none;
  padding: 12px 10px;
}

.btn-link:hover,
.btn-link:focus {
  color: var(--color-primary);
}

.hero-section {
  padding: 52px 0 24px;
}

.hero-copy h1 {
  max-width: 18ch;
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.hero-subheadline {
  max-width: 620px;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-muted);
}

.hero-copy {
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(13, 99, 243, 0.35);
}

.product-shot {
  position: relative;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 243, 251, 0.98) 100%);
  border: 1px solid rgba(217, 227, 240, 0.95);
  box-shadow: var(--color-shadow);
}

.hero-image-frame {
  padding: 12px;
  background:
    radial-gradient(circle at top right, rgba(222, 92, 92, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 243, 251, 0.98) 100%);
}

.hero-image-frame img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.shot-caption {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-muted);
}

.shot-caption code {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-primary-dark);
}

.trust-strip {
  padding: 24px 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 28px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(16, 35, 63, 0.05);
}

.trust-grid span {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.section {
  padding: 76px 0;
}

.section-light {
  background: rgba(255, 255, 255, 0.55);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.left-aligned {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.cta-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.section-heading p,
.footer-brand p,
.pricing-copy p,
.faq-body,
.step-card p,
.feature-card p,
.cta-panel p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-muted);
}

.feature-card,
.step-card,
.faq-item,
.pricing-card,
.cta-panel {
  border: 1px solid rgba(217, 227, 240, 0.95);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(16, 35, 63, 0.06);
}

.feature-card {
  height: 100%;
  padding: 26px;
  border-radius: var(--radius-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13, 99, 243, 0.12), rgba(20, 184, 166, 0.16));
  color: var(--color-primary);
  font-size: 1.4rem;
}

.feature-card h3,
.step-card h3,
.pricing-copy h3,
.footer-links h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.step-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: var(--radius-md);
}

.step-number {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  font-weight: 800;
}

.operations-section .product-shot {
  background: linear-gradient(180deg, #fff 0%, #edf3fb 100%);
}

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

.ops-grid span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
  border-radius: 32px;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(217, 227, 240, 0.98);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(16, 35, 63, 0.1);
}

.plan-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(222, 92, 92, 0.1);
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-copy {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(217, 227, 240, 0.92);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--color-text);
}

.plan-price strong {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.plan-price span {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted);
  font-weight: 600;
}

.pricing-details {
  padding: 18px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pricing-details ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.pricing-details li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 600;
}

.pricing-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #f08a8a 0%, var(--color-primary) 100%);
  box-shadow: 0 0 0 6px rgba(222, 92, 92, 0.12);
}

.pricing-details .btn-trial {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.pricing-details p {
  margin-top: 14px;
  text-align: center;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item,
.accordion-item.faq-item {
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 18px !important;
  border: 1px solid rgba(217, 227, 240, 0.95);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(16, 35, 63, 0.06);
}

.accordion-item.faq-item:first-of-type,
.accordion-item.faq-item:last-of-type {
  border-radius: 18px !important;
}

.faq-toggle {
  width: 100%;
  padding: 20px 24px;
  padding-right: 56px;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  position: relative;
  border-radius: 18px;
}

.faq-icon {
  position: absolute;
  right: 24px;
  top: 20px;
  color: var(--color-primary);
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.faq-toggle:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 20px;
}

.final-cta {
  padding: 48px 0;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 32px;
  border: 1px solid rgba(222, 92, 92, 0.16);
  background:
    radial-gradient(circle at top right, rgba(222, 92, 92, 0.14), transparent 28%),
    linear-gradient(180deg, #fff9f9 0%, #ffffff 100%);
  box-shadow: 0 24px 60px rgba(16, 35, 63, 0.08);
}

.cta-copy h2 {
  margin: 8px 0 10px;
  max-width: 24ch;
  color: var(--color-text);
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(222, 92, 92, 0.08);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-copy p {
  max-width: 52ch;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 250px;
}

.cta-actions .btn-trial {
  justify-content: center;
}

.cta-note {
  margin-top: 12px;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer {
  padding: 0 0 32px;
}

.policy-page {
  padding-top: 24px;
}

.policy-shell {
  max-width: 860px;
  margin: 0 auto;
}

.policy-heading {
  margin-bottom: 28px;
}

.policy-heading h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.policy-section {
  padding: 0 0 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(217, 227, 240, 0.9);
}

.policy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-section h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.policy-section p + p {
  margin-top: 12px;
}

.policy-list {
  margin: 18px 0;
  padding-left: 22px;
}

.policy-list li {
  margin-bottom: 10px;
  color: var(--color-text);
  line-height: 1.7;
}

.policy-bullets {
  margin: 18px 0 0;
  padding-left: 22px;
}

.policy-bullets li {
  margin-bottom: 10px;
  color: var(--color-text);
  line-height: 1.7;
}

.policy-section code {
  background: rgba(16, 35, 63, 0.06);
  color: var(--color-text);
  font-weight: 600;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 22px 0;
  border-top: 1px solid var(--color-line);
}

.footer-brand {
  max-width: 460px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 40px;
}

.footer-links h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--color-primary);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(217, 227, 240, 0.7);
}

.footer-bottom p {
  margin: 0;
  color: var(--color-muted);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 12px 30px rgba(16, 35, 63, 0.2);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .site-header {
    padding: 12px 0;
  }

  .navbar-collapse {
    margin-top: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--color-line);
    box-shadow: 0 18px 40px rgba(16, 35, 63, 0.08);
  }

  .navbar-collapse:not(.show) {
    display: none;
  }

  .navbar-nav {
    margin-bottom: 16px;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-link {
    text-align: center;
  }

  .hero-section {
    padding-top: 34px;
  }

  .trust-grid,
  .footer-top,
  .cta-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .pricing-details,
  .pricing-card {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .trust-grid,
  .ops-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .feature-card,
  .step-card,
  .pricing-card,
  .pricing-details,
  .product-shot {
    padding: 22px;
  }

  .cta-panel {
    padding: 22px;
  }

  .final-cta {
    padding: 32px 0;
  }

  .cta-copy h2,
  .cta-copy p {
    max-width: none;
  }

  .cta-actions {
    width: 100%;
    min-width: 0;
  }

  .faq-toggle,
  .faq-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-toggle {
    padding-right: 48px;
  }

  .faq-toggle::after {
  }

  .faq-icon {
    right: 20px;
    top: 20px;
  }
}
