/* ============================================
   Now Shipping — Design Tokens & Base
   ============================================ */
:root {
  /* Brand palette */
  --navy: #0E2A5C;
  --navy-light: #1B4DA8;
  --navy-dark: #061634;
  --orange: #FF6B1A;
  --orange-light: #FF8A47;
  --orange-hover: #E85A10;
  --orange-tint: #FFF0E8;
  --green: #16A085;
  --green-bg: #E8F7F2;
  --green-text: #12896F;
  --bg: #FAFBFC;
  --white: #FFFFFF;

  /* Semantic aliases */
  --navy-darker: var(--navy-dark);
  --cream: var(--orange-tint);
  --cream-dark: #FFE8DC;
  --warm-white: #FFFBF8;
  --problem-cream: #FFFAF5;
  --problem-border: #F5E6D3;
  --gray-bg: var(--bg);
  --text: var(--navy);
  --text-muted: #5B6B7E;
  --border: #E2E8F0;
  --red-bg: #FFF5F5;
  --red-text: #C53030;
  --teal: var(--green);
  --teal-bg: var(--green-bg);

  /* Typography */
  --font-display: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --font: var(--font-body);

  --container: 1140px;
  --section-py: 80px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 10px 40px rgba(14, 42, 92, 0.08);
  --shadow-lg: 0 20px 60px rgba(14, 42, 92, 0.12);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Marketing landing pages — always RTL; not affected by global language preference */
html.landing-layout,
html.landing-layout body {
  direction: rtl !important;
  font-family: var(--font-body) !important;
  text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero__title,
.launch__title,
.launch__title-white,
.launch__title-orange,
.solution-card__title,
.problem-card__title,
.feature-card__title,
.trust-card__title,
.launch-card__title,
.faq-item__question,
.form-card__title,
.btn {
  font-family: var(--font-display);
  font-weight: 700;
}

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

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

ul,
ol {
  list-style: none;
}

.ltr {
  direction: ltr;
  unicode-bidi: embed;
  display: inline;
}

.text-orange {
  color: var(--orange);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-py);
}

.section--tight {
  padding-block: 48px;
}

/* Alternating section surfaces */
.section--surface {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.section--muted {
  background: var(--bg);
  border-block: 1px solid var(--border);
}

/* ============================================
   Typography
   ============================================ */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 12px;
}

.eyebrow--light {
  color: var(--orange);
}

.eyebrow-chip {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title--center {
  text-align: center;
}

.section-title--light {
  color: var(--white);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
}

.btn--navy:hover {
  background: var(--navy-dark);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
}

.btn--orange:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.35);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 17px;
}

.btn--pill {
  border-radius: var(--radius-pill);
  padding: 14px 32px;
}

.btn--full {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  border-radius: var(--radius-sm);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding-block: 16px;
  --navbar-height: 84px;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo__mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.logo__text {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.logo__accent {
  color: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-inline-start: auto;
}

.navbar__lang-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navbar__lang-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 36px 10px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  min-width: 132px;
  line-height: 1.25;
  box-shadow: 0 4px 14px rgba(255, 107, 26, 0.35);
  transition: filter var(--transition);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: right 12px center, center;
  background-size: 11px 11px, 100% 100%;
}

.navbar__lang-select:hover {
  filter: brightness(1.05);
}

.navbar__lang-select:focus {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.navbar__lang-select option {
  color: var(--navy);
  background: var(--white);
}

.navbar #languageSwitcher {
  display: none !important;
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  background: var(--bg);
  padding-block: 64px 88px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(255, 107, 26, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -4%;
  width: 58%;
  height: 85%;
  background: radial-gradient(ellipse at 35% 50%, rgba(27, 77, 168, 0.09) 0%, rgba(14, 42, 92, 0.04) 38%, transparent 72%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 40px 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .hero__grid {
    gap: 56px 72px;
  }

  .dash-preview {
    max-width: 660px;
  }
}

.hero__content {
  text-align: right;
}

/* Top chip */
.hero__chip {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(14, 42, 92, 0.04);
  max-width: 100%;
}

.hero__chip-text {
  line-height: 1.55;
  text-wrap: pretty;
}

.hero__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 0.45em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 52px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--navy);
  margin-bottom: 22px;
}

.hero__title-line {
  display: block;
}

.hero__desc {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__cta.btn--orange {
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 10px;
  padding: 16px 34px;
  margin-bottom: 28px;
  box-shadow: 0 10px 28px rgba(255, 107, 26, 0.28);
}

.hero__cta.btn--orange:hover {
  box-shadow: 0 10px 32px rgba(255, 107, 26, 0.4);
}

.hero__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__checks-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
}

.hero__check-group,
.hero__check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* RTL: icon first in DOM → sits on the right of the phrase */
.hero__check-group {
  flex-direction: row;
}

/* LTR English: text then icon → check on the right */
.hero__check-item--ltr {
  direction: ltr;
}

.hero__check-icon {
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
}

.hero__checks-sep {
  color: var(--text-muted);
  font-weight: 400;
}

/* Dashboard preview — flat mockup, slight 3D tilt (matches 1.png) */
.hero__visual {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 16px 0 24px 4px;
  perspective: 1000px;
}

.dash-preview {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow:
    0 32px 64px rgba(14, 42, 92, 0.1),
    0 12px 28px rgba(14, 42, 92, 0.06);
  transform: rotateX(1deg) rotateZ(-2deg);
  transform-origin: center center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dash-preview:hover {
  transform: rotateX(1deg) rotateZ(-2deg) translateY(-4px);
  box-shadow:
    0 36px 72px rgba(14, 42, 92, 0.12),
    0 14px 32px rgba(14, 42, 92, 0.07);
}

.dash-preview__badge {
  position: absolute;
  top: -11px;
  right: 14px;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(255, 107, 26, 0.32);
  white-space: nowrap;
}

.dash-preview__topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
  min-height: 12px;
}

.dash-preview__dots {
  display: flex;
  align-items: center;
  gap: 6px;
  direction: ltr;
}

.dash-preview__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-preview__dot--red {
  background: #FF5F57;
}

.dash-preview__dot--yellow {
  background: #FFBD2E;
}

.dash-preview__dot--green {
  background: #28CA41;
}

.dash-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
  direction: ltr;
}

.dash-preview__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0;
  padding: 18px 16px 16px;
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 14px;
  min-height: 104px;
  box-shadow: 0 1px 4px rgba(14, 42, 92, 0.04);
}

.dash-preview__stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: #7A8699;
  line-height: 1.35;
  margin-bottom: 8px;
  width: 100%;
}

.dash-preview__stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
  width: 100%;
}

.dash-preview__stat-meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  margin-top: auto;
  width: 100%;
  line-height: 1.2;
}

.dash-preview__stat-meta span[aria-hidden] {
  font-size: 10px;
  margin-right: 1px;
}

.dash-preview__chart {
  padding: 18px 18px 18px;
  border: 1px solid #E8ECF0;
  border-radius: 14px;
  background: var(--white);
}

.dash-preview__chart-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  direction: rtl;
}

.dash-preview__chart-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.dash-preview__chart-sep {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #C5CDD6;
  line-height: 1;
}

.dash-preview__chart-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 7px;
  width: 100%;
  height: 108px;
  padding: 0;
  direction: ltr;
}

.bar-chart__bar {
  flex: 1 1 0;
  min-width: 0;
  height: 4px;
  min-height: 4px;
  background: var(--orange);
  border-radius: 5px 5px 0 0;
  transition: height 0.7s ease;
}

/* ============================================
   Problems — المشاكل اللي بتعيشها
   ============================================ */
.problems {
  background: var(--white);
  padding-block: 72px 64px;
  border-bottom: 1px solid var(--border);
}

.problems__header {
  text-align: right;
  margin-bottom: 40px;
}

.problems__title {
  margin-bottom: 0;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.45;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.problem-card {
  position: relative;
  display: block;
  background: var(--problem-cream);
  border: 1px solid var(--problem-border);
  border-radius: 14px;
  padding: 28px 32px 28px 112px;
  overflow: hidden;
  min-height: 196px;
  transition: border-color var(--transition);
}

.problem-card:hover {
  border-color: #EDD4BC;
}

/* Large faded number — left side (matches design photo) */
.problem-card__num {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 138, 71, 0.2);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.problem-card__content {
  position: relative;
  z-index: 1;
  text-align: right;
}

.problem-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.5;
}

.problem-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.9;
}

/* Quote banner inside problems section */
.quote-banner--problems {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 16px;
  padding: 40px 44px 40px 110px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.quote-banner--problems::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.02) 12px,
      rgba(255, 255, 255, 0.02) 24px);
  pointer-events: none;
}

.quote-banner--problems .quote-banner__glyph {
  font-size: 140px;
  color: rgba(255, 255, 255, 0.06);
  left: 24px;
  top: 10px;
}

.quote-banner--problems .quote-banner__title--orange {
  color: var(--orange) !important;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.5;
}

.quote-banner--problems .quote-banner__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.85;
  max-width: 900px;
}

.problems__cta {
  text-align: center;
}

.problems__cta .btn--pill {
  padding: 14px 32px;
  box-shadow: 0 6px 20px rgba(14, 42, 92, 0.2);
}

/* ============================================
   Quote Banner
   ============================================ */
.quote-banner {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 48px 40px 100px;
  overflow: hidden;
}

.quote-banner__glyph {
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  font-family: Georgia, serif;
}

.quote-banner__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.quote-banner__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ============================================
   Solution — الحل (centered card)
   ============================================ */
.solution {
  background: var(--bg);
  padding-block: 56px 64px;
  border-bottom: 1px solid var(--border);
}

.solution-card {
  max-width: 1040px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 64px 52px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(14, 42, 92, 0.06);
}

.solution-card__eyebrow {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}

.solution-card__title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 24px;
}

.solution-card__title-navy {
  color: var(--navy);
}

.solution-card__title-orange {
  color: var(--orange);
}

.solution-card__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 900px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .solution-card {
    padding: 36px 24px 40px;
    border-radius: 16px;
  }

  .solution-card__title {
    font-size: 22px;
  }

  .solution-card__desc {
    font-size: 15px;
  }
}

/* ============================================
   Features — ليه Now تحديداً؟
   ============================================ */
.features {
  background: var(--white);
  padding-block: 72px 64px;
  border-bottom: 1px solid var(--border);
}

.features__header {
  text-align: right;
  margin-bottom: 36px;
}

.features__header .section-title {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 10px;
}

.features__header .section-sub {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text-muted);
}

.features__grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

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

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

.feature-card {
  background: var(--white);
  border-radius: 14px;
  position: relative;
  transition: box-shadow var(--transition);
}

.feature-card--large {
  border: 1px solid var(--border);
  padding: 0;
  min-height: 220px;
  text-align: right;
  display: flex;
  flex-direction: column;
}

.feature-card--large:hover {
  box-shadow: 0 6px 24px rgba(14, 42, 92, 0.1);
  border-color: var(--border);
}

/* Icon row — separate from title, no overlap */
.feature-card__head {
  display: flex;
  justify-content: flex-start;
  padding: 18px 20px 0;
  flex-shrink: 0;
}

.feature-card__body {
  position: relative;
  padding: 12px 24px 52px;
  flex: 1;
}

.feature-card--compact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: right;
}

.feature-card--compact:hover {
  box-shadow: 0 4px 14px rgba(14, 42, 92, 0.06);
}

.feature-card__compact-body {
  flex: 1;
  min-width: 0;
}

/* Orange icon badge — in own row, never overlaps text */
.feature-card__icon-tab {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--orange) 100%);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(255, 107, 26, 0.35);
  flex-shrink: 0;
}

.feature-card__icon-tab i {
  font-size: 20px;
  line-height: 1;
}

/* Navy icon — compact cards */
.feature-card__icon-square {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(14, 42, 92, 0.2);
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
  padding-top: 0;
  padding-inline-end: 0;
}

.feature-card--compact .feature-card__title {
  padding-top: 0;
  padding-inline-end: 0;
  font-size: 16px;
  margin-bottom: 6px;
}

.feature-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.feature-card__chip {
  position: absolute;
  bottom: 18px;
  right: 24px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-hover);
  background: var(--orange-tint);
  border: 1px solid rgba(255, 107, 26, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
}

.features__cta {
  margin-top: 36px;
}

.features__cta .btn--lg {
  padding: 16px 40px;
  font-size: 17px;
  border-radius: var(--radius-pill);
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--orange) 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.35);
}

/* ============================================
   Steps
   ============================================ */
.steps {
  background: var(--navy-dark);
  padding-block: 72px 80px;
}

.steps__header {
  text-align: right;
  margin-bottom: 48px;
}

.steps__header .section-title {
  margin-bottom: 0;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step__circle {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px rgba(255, 107, 26, 0.15), 0 4px 16px rgba(255, 107, 26, 0.35);
}

.step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 200px;
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison {
  background: var(--bg);
  padding-block: 72px 64px;
  border-bottom: 1px solid var(--border);
}

.comparison__title {
  margin-bottom: 36px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
}

.compare-table {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(14, 42, 92, 0.1);
  background: var(--white);
  margin-bottom: 32px;
}

.compare-table__header,
.compare-table__row {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.15fr;
}

.compare-table__cell {
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.compare-table__header .compare-table__cell {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  border-bottom: none;
  padding: 20px 18px;
}

/* Header cells */
.compare-table__cell--criteria-h {
  background: var(--navy-dark);
  border-top-right-radius: 18px;
}

.compare-table__cell--traditional-h {
  background: var(--navy-light);
}

.compare-table__cell--now-h {
  background: var(--orange);
  border-top-left-radius: 18px;
}

/* Body — criteria column (right in RTL) */
.compare-table__cell--label {
  background: var(--bg);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  justify-content: center;
}

/* Body — traditional column (middle) */
.compare-table__cell--neg {
  background: var(--red-bg);
  color: var(--red-text);
  font-weight: 600;
}

/* Body — Now column (left in RTL) */
.compare-table__cell--pos {
  background: var(--green-bg);
  color: var(--green-text);
  font-weight: 700;
  gap: 6px;
}

.compare-table__check {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-table__row:last-child .compare-table__cell {
  border-bottom: none;
}

/* Quote + CTA inside comparison section */
.comparison__quote {
  margin-bottom: 28px;
}

.quote-banner--comparison {
  background: linear-gradient(180deg, #0d214a 0%, #081635 100%);
  border-radius: 16px;
  padding: 40px 44px 40px 110px;
  position: relative;
  overflow: hidden;
}

.quote-banner--comparison::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.02) 12px,
      rgba(255, 255, 255, 0.02) 24px);
  pointer-events: none;
}

.quote-banner--comparison .quote-banner__glyph {
  font-size: 140px;
  color: rgba(255, 255, 255, 0.06);
  left: 24px;
  top: 10px;
}

.quote-banner--comparison .quote-banner__title--orange {
  color: #ff7c33 !important;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.5;
}

.quote-banner--comparison .quote-banner__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.85;
  max-width: 900px;
}

.quote-banner__title--orange {
  color: var(--orange) !important;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.comparison__cta {
  text-align: center;
}

.comparison__cta .btn--pill {
  padding: 14px 32px;
  box-shadow: 0 6px 20px rgba(8, 22, 53, 0.28);
}

.btn--comparison {
  background: #0d214a;
  padding: 16px 36px;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(8, 22, 53, 0.28);
}

.btn--comparison:hover {
  background: #081635;
  box-shadow: 0 8px 24px rgba(8, 22, 53, 0.35);
}

/* ============================================
   Trust
   ============================================ */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust .section-title {
  margin-bottom: 40px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow var(--transition);
}

.trust-card:hover {
  box-shadow: var(--shadow);
}

.trust-card__icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.trust-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.trust-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   Launch Partners — matches design photo
   ============================================ */
.launch {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  padding-block: 64px 72px;
}

/* Orange glow — top right behind badge */
.launch__neon {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 50% 50%,
      rgba(255, 107, 26, 0.4) 0%,
      rgba(255, 138, 71, 0.22) 40%,
      rgba(255, 107, 26, 0.08) 55%,
      transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

.launch__container {
  position: relative;
  z-index: 1;
}

/* —— Hero: right-aligned —— */
.launch__hero {
  text-align: right;
  margin-bottom: 0;
}

.launch__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 18, 36, 0.7);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--orange);
  margin-bottom: 22px;
}

.launch__chip i {
  color: var(--orange);
  font-size: 13px;
}

.launch__title {
  margin: 0 0 18px;
  line-height: 1.15;
}

.launch__title-white {
  display: block;
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.launch__title-orange {
  display: block;
  font-size: clamp(34px, 4.8vw, 52px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
  margin-top: 2px;
}

.launch__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 0 0 auto;
  line-height: 1.85;
}

.launch__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 36px 0 28px;
  border: none;
}

/* —— Body: progress + grid + CTA —— */
.launch__body {
  text-align: right;
}

/* Small progress pill — aligned right */
.launch__progress-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 22px;
}

.launch__progress {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
}

.launch__progress-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.launch__progress-track {
  flex: 1;
  height: 6px;
  min-width: 100px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
  direction: ltr;
}

.launch__progress-fill {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-pill);
}

.launch__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.launch-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(120, 160, 200, 0.15);
  border-radius: 12px;
  padding: 22px 24px;
  text-align: right;
  transition: background var(--transition), border-color var(--transition);
}

.launch-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(120, 160, 200, 0.25);
}

.launch-card__emoji {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.launch-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}

.launch-card__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.launch__cta {
  display: flex;
  justify-content: flex-start;
}

.btn--launch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-light) 0%, var(--orange) 50%, var(--orange-hover) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 0 24px rgba(255, 107, 26, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn--launch:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(255, 107, 26, 0.55),
    0 12px 28px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .launch__neon {
    width: 260px;
    height: 260px;
    top: -40px;
    right: -40px;
  }

  .launch__progress-row {
    justify-content: stretch;
  }

  .launch__progress {
    max-width: 100%;
  }

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

  .launch__cta {
    justify-content: center;
  }

  .btn--launch {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg);
  padding-block: 72px;
  border-bottom: 1px solid var(--border);
}

.faq__header {
  text-align: right;
  margin-bottom: 36px;
}

.faq__header .section-title {
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition), background var(--transition);
}

.faq-item.is-open {
  border-color: rgba(255, 107, 26, 0.25);
  background: var(--white);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: right;
}

.faq-item__question {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
  line-height: 1.5;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  background: transparent;
  color: var(--orange);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 320px;
}

.faq-item__answer p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: right;
}

/* ============================================
   Register / Form
   ============================================ */
.register {
  background: var(--navy-dark);
  padding-block: 72px 80px;
}

.register__grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: 48px 64px;
  align-items: start;
}

.register__info {
  text-align: right;
  padding-top: 8px;
}

.register__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 16px;
}

.register__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
}

.register__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  line-height: 1.85;
  max-width: 520px;
  margin-inline-start: auto;
}

.register__subhead {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 22px;
}

.register-steps {
  margin-bottom: 32px;
  list-style: none;
}

.register-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.register-steps li:last-child {
  margin-bottom: 0;
}

.register-steps__num {
  width: 30px;
  height: 30px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.register__note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--orange);
  font-weight: 500;
  line-height: 1.6;
}

.register__note i {
  color: var(--orange);
  margin-left: 6px;
  font-size: 13px;
}

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.form-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-align: right;
}

.form-card__sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: right;
}

.form-card .form-group {
  margin-bottom: 18px;
}

.form-card .form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: right;
}

.form-card .form-group input,
.form-card .form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  transition: border-color var(--transition);
  text-align: right;
}

.form-card .form-group input:focus,
.form-card .form-group select:focus {
  outline: none;
  border-color: var(--orange);
}

.form-card .form-group input::placeholder {
  color: #A8B4C0;
}

.form-card .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235B6B7E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.form-card .form-group.has-error input,
.form-card .form-group.has-error select {
  border-color: #E74C3C;
}

.form-error {
  display: block;
  font-size: 12px;
  color: #E74C3C;
  margin-top: 6px;
  min-height: 18px;
}

.form-card__submit {
  margin-top: 4px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
}

.form-card__secure {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

.form-card__secure i {
  color: var(--orange);
  margin-left: 4px;
  font-size: 12px;
}

.form-card__contact {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.form-card__contact-lead {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-card__contact-wa {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-card__contact-wa a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.form-card__contact-wa a:hover {
  color: var(--orange);
}

.form-card__contact-email {
  margin: 0;
}

.form-card__contact-email a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #6B8CAE;
  text-decoration: none;
}

.form-card__contact-email a:hover {
  text-decoration: underline;
  color: var(--navy-light);
}

.form-card--success {
  text-align: center;
  padding: 60px 32px;
}

.form-card--success i {
  font-size: 48px;
  color: var(--green);
  margin-bottom: 20px;
}

.form-card--success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-card--success p {
  color: var(--text-muted);
}

.form-submit-error {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(220, 53, 69, 0.08);
  color: #b42318;
  font-size: 14px;
  font-weight: 600;
}

.form-submit-error i {
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--navy-darker);
  padding: 24px;
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }

  .hero__visual {
    justify-content: center;
    padding: 0;
  }

  .dash-preview {
    max-width: 580px;
    margin-inline: auto;
    transform: rotateX(1deg) rotateZ(-2deg);
  }

  .dash-preview:hover {
    transform: rotateX(1deg) rotateZ(-2deg) translateY(-4px);
  }

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

  .register__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .register__desc {
    max-width: none;
  }

  .form-card {
    max-width: 440px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding-block: 12px;
    --navbar-height: 68px;
  }

  .logo__img {
    height: 44px;
  }

  .navbar__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav-toggle {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .navbar__actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin-inline-start: 0;
    gap: 8px;
  }

  .nav {
    position: fixed;
    top: var(--navbar-height);
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    z-index: 999;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar .navbar__login {
    display: inline-flex;
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .navbar__lang-select {
    min-width: 118px;
    padding: 9px 32px 9px 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
  }

  .problems__grid,
  .features__grid--large,
  .features__grid--compact,
  .trust__grid,
  .launch__grid {
    grid-template-columns: 1fr;
  }

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

  .compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table__header,
  .compare-table__row {
    min-width: 640px;
  }

  .quote-banner--comparison {
    padding: 32px 24px 32px 24px;
  }

  .quote-banner--comparison .quote-banner__glyph {
    font-size: 80px;
    left: 12px;
  }

  .quote-banner {
    padding: 32px 28px 32px 28px;
  }

  .quote-banner__glyph {
    font-size: 80px;
    left: 16px;
    top: 12px;
  }

  .problem-card {
    padding: 24px 22px 24px 88px;
    min-height: auto;
  }

  .problem-card__num {
    font-size: 58px;
    left: 12px;
  }

  .quote-banner--problems {
    padding: 32px 24px 32px 24px;
  }

  .quote-banner--problems .quote-banner__glyph {
    font-size: 80px;
    left: 12px;
  }

  .hero__checks-line {
    gap: 6px 8px;
  }

  .dash-preview__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 16px;
  }

  .btn--pill {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

/* Override Bootstrap .btn when landing nav is used on app-layout pages */
.navbar a.btn.btn--navy,
.navbar a.btn.btn--orange,
.navbar button.btn.btn--orange {
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  text-decoration: none;
  line-height: 1.2;
}

.navbar a.btn.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.navbar a.btn.btn--navy:hover {
  background: var(--navy-dark);
  color: var(--white);
}