:root {
  --navy: #0f172a;
  --red: #e63946;
  --coral: #ff6b5e;
  --bg: #f3f4f6;
  --white: #ffffff;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card-shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background: var(--bg);
  color: var(--navy);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  color: var(--coral);
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(107, 114, 128, 0.2);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.navbar {
  min-height: 76px;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  padding-bottom: 0;
  padding-top: 0;
}

.brand-logo {
  display: block;
  height: auto;
  max-width: 100%;
}

.brand-logo-horizontal {
  width: clamp(160px, 18vw, 214px);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.btn {
  border-radius: 8px;
  font-weight: 700;
  padding: 0.78rem 1.1rem;
}

.btn-lg {
  padding: 0.9rem 1.25rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--coral));
  border-color: var(--red);
  box-shadow: 0 12px 24px rgba(230, 57, 70, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--coral), var(--red));
  border-color: var(--coral);
}

.btn-disabled,
.btn-disabled:hover,
.btn-disabled:focus {
  cursor: default;
  opacity: 0.86;
  pointer-events: none;
}

.btn-outline-primary {
  border-color: rgba(230, 57, 70, 0.35);
  color: var(--red);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: rgba(230, 57, 70, 0.08);
  border-color: var(--red);
  color: var(--red);
}

.nav-cta {
  white-space: normal;
}

.hero-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 107, 94, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  overflow: hidden;
  padding: 150px 0 88px;
}

.eyebrow,
.section-kicker {
  color: var(--red);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.15rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 1.3rem 0 1.8rem;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.app-store-badge {
  align-items: center;
  background: var(--navy);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  gap: 0.7rem;
  line-height: 1.05;
  margin: 0.4rem 0 1.2rem;
  padding: 0.72rem 1rem;
}

.app-store-badge i {
  font-size: 1.8rem;
}

.app-store-badge small {
  color: #d1d5db;
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-row span {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 0.45rem;
  padding: 0.52rem 0.75rem;
}

.trust-row i {
  color: var(--red);
}

.phone-stage {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-stage::before {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.14), rgba(255, 107, 94, 0.14));
  border-radius: 999px;
  content: "";
  height: 420px;
  position: absolute;
  top: 10%;
  width: 420px;
}

.phone-mockup {
  background: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 36px;
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.24);
  max-width: 390px;
  padding: 0.85rem;
  position: relative;
  width: min(100%, 390px);
}

.phone-top {
  display: flex;
  justify-content: center;
  padding: 0.45rem 0 0.75rem;
}

.phone-top span {
  background: rgba(243, 244, 246, 0.16);
  border-radius: 999px;
  display: block;
  height: 8px;
  width: 88px;
}

.phone-screen {
  background:
    linear-gradient(180deg, rgba(255, 107, 94, 0.12), transparent 42%),
    #f3f4f6;
  border-radius: 26px;
  min-height: 585px;
  padding: 1.1rem;
}

.screen-header,
.render-panel {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 0.95rem;
}

.mini-label {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.screen-header i {
  color: var(--red);
  font-size: 1.8rem;
}

.workflow-chain {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.3rem;
  margin: 1rem 0;
}

.workflow-chain > div {
  align-items: center;
  background: rgba(255, 107, 94, 0.09);
  border: 1px solid rgba(230, 57, 70, 0.18);
  border-radius: 8px;
  color: var(--red);
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.35rem;
  min-height: 78px;
  justify-content: center;
  padding: 0.5rem 0.25rem;
  text-align: center;
}

.workflow-chain i {
  color: var(--red);
  font-size: 1.25rem;
}

.workflow-chain > i {
  font-size: 1.25rem;
}

.clip-stack {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.clip-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: auto 1fr auto;
  padding: 1rem;
}

.clip-card span {
  align-items: center;
  background: rgba(255, 107, 94, 0.1);
  border-radius: 8px;
  color: var(--red);
  display: inline-flex;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.clip-card.active {
  border-color: rgba(230, 57, 70, 0.38);
  box-shadow: 0 14px 30px rgba(230, 57, 70, 0.13);
}

.clip-card small {
  color: var(--muted);
  font-weight: 700;
}

.render-panel button {
  background: var(--red);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  padding: 0.65rem 0.85rem;
}

.section-pad {
  padding: 88px 0;
}

.section-heading {
  margin: 0 auto 2.4rem;
  max-width: 820px;
  text-align: center;
}

.lead {
  color: var(--muted);
}

.workflow-section {
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(255, 107, 94, 0.08) 100%);
}

.workflow-card,
.feature-group,
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  height: 100%;
  padding: 1.55rem;
}

.workflow-card i,
.feature-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 94, 0.16));
  border-radius: 8px;
  color: var(--red);
  display: inline-flex;
  font-size: 1.55rem;
  height: 52px;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 52px;
}

.workflow-card p,
.feature-group p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-group h3,
.pricing-card h3 {
  margin-bottom: 1rem;
}

.check-list {
  display: grid;
  gap: 0.72rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  color: var(--muted);
  padding-left: 1.7rem;
  position: relative;
}

.check-list li::before {
  color: var(--red);
  content: "\F26A";
  font-family: "bootstrap-icons";
  font-weight: 400;
  left: 0;
  position: absolute;
  top: 0;
}

.trust-section {
  background: linear-gradient(135deg, #0f172a, #24111a);
  color: #f3f4f6;
}

.trust-section h2,
.trust-section .section-kicker {
  color: var(--white);
}

.trust-section p {
  color: #d1d5db;
}

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

.trust-grid div {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  font-weight: 700;
  gap: 0.7rem;
  min-height: 74px;
  padding: 1rem;
}

.trust-grid i {
  color: var(--coral);
  font-size: 1.35rem;
}

.positioning-panel {
  background: linear-gradient(135deg, rgba(255, 107, 94, 0.1), #ffffff);
  border: 1px solid rgba(230, 57, 70, 0.18);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(230, 57, 70, 0.42);
  box-shadow: 0 28px 70px rgba(230, 57, 70, 0.14);
  transform: translateY(-10px);
}

.plan-badge {
  align-self: flex-start;
  background: rgba(255, 107, 94, 0.1);
  border-radius: 999px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  padding: 0.36rem 0.7rem;
}

.price {
  color: var(--navy);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.annual,
.trial,
.pricing-note {
  color: var(--muted);
}

.trial {
  color: var(--red);
  font-weight: 800;
}

.pricing-card .check-list {
  margin: 1.2rem 0 1.5rem;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-note {
  margin: 1.4rem auto 0;
  max-width: 760px;
  text-align: center;
}

.faq-accordion {
  margin: 0 auto;
  max-width: 900px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.accordion-button {
  color: var(--navy);
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  background: rgba(255, 107, 94, 0.1);
  color: var(--red);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.12);
}

.final-cta {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  padding: 36px 0 92px;
}

.cta-panel {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 107, 94, 0.16), transparent 34%),
    radial-gradient(circle at 86% 100%, rgba(230, 57, 70, 0.1), transparent 30%),
    #ffffff;
  border: 1px solid rgba(230, 57, 70, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
  color: var(--navy);
  padding: clamp(2rem, 6vw, 4.5rem);
  position: relative;
  text-align: center;
}

.cta-logo {
  display: block;
  height: auto;
  margin: 0 auto 1.2rem;
  max-width: 150px;
  width: 46%;
}

.cta-panel h2 {
  color: var(--navy);
  margin-bottom: 1.4rem;
}

.cta-panel .section-kicker {
  color: var(--red);
}

.cta-panel .btn-light {
  background: linear-gradient(135deg, var(--red), var(--coral));
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(230, 57, 70, 0.2);
}

.cta-panel .btn-light:hover,
.cta-panel .btn-light:focus {
  background: linear-gradient(135deg, var(--coral), var(--red));
  border-color: var(--coral);
  color: var(--white);
}

.site-footer {
  background: var(--navy);
  color: #d1d5db;
  padding: 46px 0 28px;
}

.site-footer p {
  margin: 0.35rem 0 0;
}

.footer-brand {
  display: inline-flex;
}

.footer-logo {
  display: block;
  height: auto;
  max-width: 156px;
  width: 100%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  justify-content: flex-lg-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-links a:hover {
  color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 0.92rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
}

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

.legal-hero {
  background:
    linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 94, 0.1)),
    var(--white);
  border-bottom: 1px solid var(--line);
  padding: 142px 0 54px;
}

.legal-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.legal-hero p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0;
}

.legal-document {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(1.3rem, 4vw, 3rem);
}

.legal-document h2 {
  border-top: 1px solid var(--line);
  font-size: 1.45rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
}

.legal-document h2:first-of-type {
  border-top: 0;
  margin-top: 1.2rem;
  padding-top: 0;
}

.legal-document h3 {
  font-size: 1.05rem;
  margin-top: 1.4rem;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-document ul {
  padding-left: 1.3rem;
}

.legal-document address {
  color: var(--muted);
  line-height: 1.8;
}

.support-hero p {
  max-width: 680px;
}

.support-aside,
.support-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.support-aside {
  position: sticky;
  top: 104px;
}

.support-aside h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 1rem;
}

.support-aside p {
  color: var(--muted);
}

.support-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.support-points div {
  align-items: center;
  background: rgba(255, 107, 94, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.12);
  border-radius: 8px;
  color: var(--navy);
  display: flex;
  font-weight: 700;
  gap: 0.75rem;
  padding: 0.9rem;
}

.support-points i {
  color: var(--red);
  font-size: 1.3rem;
}

.support-form .form-label {
  color: var(--navy);
  font-weight: 800;
}

.support-form .form-control,
.support-form .form-select {
  border-color: var(--line);
  border-radius: 8px;
  color: var(--navy);
  min-height: 48px;
}

.support-form textarea.form-control {
  min-height: 170px;
}

.support-form .form-control:focus,
.support-form .form-select:focus {
  border-color: rgba(230, 57, 70, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.12);
}

.form-status {
  border-radius: 8px;
  display: none;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: #15803d;
}

.form-status.is-error {
  background: rgba(230, 57, 70, 0.09);
  border: 1px solid rgba(230, 57, 70, 0.22);
  color: var(--red);
}

.support-hidden {
  height: 1px !important;
  left: -10000px !important;
  overflow: hidden !important;
  position: absolute !important;
  top: auto !important;
  width: 1px !important;
}

.support-hidden input {
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 1px !important;
}

.submit-loading {
  display: none;
}

.submit-loading[hidden],
.submit-label[hidden] {
  display: none !important;
}

.is-loading .submit-label {
  display: none;
}

.is-loading .submit-loading {
  display: inline !important;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    margin-top: 0.8rem;
    padding: 1rem;
  }

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

  .pricing-card.featured {
    transform: none;
  }

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

  .support-aside {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .hero-actions .btn {
    width: 100%;
  }

  .app-store-badge {
    width: 100%;
  }

  .section-pad {
    padding: 64px 0;
  }

  .phone-screen {
    min-height: 520px;
    padding: 0.85rem;
  }

  .workflow-chain {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-chain > i {
    display: none;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
