:root {
  --bg_1: #0a0b0f;
  --bg_2: #0d0e13;
  --bg_3: #111218;
  --surface_1: rgba(255, 255, 255, 0.03);
  --surface_2: rgba(255, 255, 255, 0.05);
  --surface_3: rgba(0, 0, 0, 0.25);
  --line: rgba(255, 255, 255, 0.07);
  --line_strong: rgba(255, 255, 255, 0.12);
  --text_1: #e7e9ee;
  --text_2: #a7adba;
  --text_3: #8b909c;
  --accent_1: #ffb454;
  --accent_2: #ff7849;
  --accent_3: #b061ff;
  --success: #22c55e;
  --danger: #ff6b6b;
}

html,
body {
  background: var(--bg_1);
  color: var(--text_1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

.top_nav {
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(10, 11, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 6px 10px 6px 6px;
  letter-spacing: 0;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

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

.brand_mark_wrap {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
}

.brand_logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand_wordmark {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand_wordmark::after {
  content: "";
  display: block;
  width: 44%;
  height: 2px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent_1), var(--accent_2), transparent);
}

.nav-link {
  color: #a7adba;
  font-size: 14px;
  font-weight: 600;
  transition: color .15s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #ffffff;
}

.nav_download_link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav_download_link i {
  color: var(--accent_1);
}

.lang_button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #e7e9ee;
  font-weight: 700;
}

.lang_button:hover,
.lang_button:focus {
  border-color: rgba(255, 180, 84, 0.38);
  color: #ffffff;
}

.lang_menu {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 15, 0.98);
  border-radius: 12px;
}

.lang_menu .dropdown-item {
  color: #c4c9d4;
}

.lang_menu .dropdown-item:hover,
.lang_menu .dropdown-item:focus,
.lang_menu .dropdown-item.active {
  background: rgba(255, 180, 84, 0.14);
  color: #ffffff;
}

.hero_section {
  min-height: 86vh;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 92px;
}

.hero_overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 180, 80, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(217, 119, 87, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(120, 90, 255, 0.1), transparent 70%);
}

.hero_content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about_hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 92px;
}

.about_hero_content {
  position: relative;
  z-index: 2;
}

.about_hero h1 {
  max-width: 860px;
  letter-spacing: -0.03em;
}

.about_hero .lead {
  max-width: 760px;
  color: #b3b8c4;
}

.about_statement,
.about_copy_panel,
.about_quote_panel,
.about_cta {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: none;
}

.about_statement {
  padding: 28px;
}

.about_statement_icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 180, 84, 0.32);
  border-radius: 14px;
  background: rgba(255, 180, 84, 0.12);
  color: var(--accent_1);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.about_statement h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.about_statement p,
.about_copy_panel p,
.about_quote_panel p,
.about_cta p {
  color: var(--text_2);
}

.about_copy_panel {
  padding: 28px;
}

.about_copy_panel p:last-child {
  margin-bottom: 0;
}

.about_feature {
  min-height: 330px;
}

.about_quote_panel {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.about_quote_panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent_1), var(--accent_2), var(--accent_3));
}

.about_quote_panel i {
  color: var(--accent_1);
  font-size: 2rem;
}

.about_quote_panel p {
  font-size: 1.25rem;
  line-height: 1.55;
  margin: 16px 0;
}

.about_quote_panel strong {
  color: #ffffff;
}

.about_cta {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  text-align: center;
}

.about_cta h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 12px;
}

.about_cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c4c9d4;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: lunc-pulse 2.2s ease-in-out infinite;
}

@keyframes lunc-pulse {
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.08); }
}

.text_lunc {
  color: var(--accent_1);
}

.hero_section h1 {
  max-width: 980px;
  letter-spacing: -0.03em;
  margin-left: auto;
  margin-right: auto;
}

.hero_section h1,
.about_hero h1 {
  line-height: 1.05;
  font-weight: 800;
}

.text-secondary {
  color: var(--text_2) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 180, 84, 0.14);
}

.hero_section .lead {
  color: #b3b8c4;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero_badge {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #a7adba;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 500;
}

.hero_badge i {
  color: var(--accent_1);
  margin-right: 6px;
}

.btn_lunc {
  background: linear-gradient(135deg, var(--accent_1), var(--accent_2));
  border: 0;
  border-radius: 12px;
  color: #1a0e05;
  font-weight: 800;
  box-shadow: 0 10px 30px -10px rgba(255, 120, 73, 0.5);
}

.btn_lunc:hover,
.btn_lunc:focus {
  color: #1a0e05;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(255, 120, 73, 0.6);
}

.btn_download {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 180, 84, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 180, 84, 0.16), rgba(176, 97, 255, 0.12)),
    rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 44px -22px rgba(176, 97, 255, 0.85);
}

.btn_download::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-130%);
  transition: transform .45s ease;
}

.btn_download i,
.btn_download span {
  position: relative;
}

.btn_download:hover,
.btn_download:focus {
  border-color: rgba(255, 180, 84, 0.58);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 52px -20px rgba(255, 180, 84, 0.56);
}

.btn_download:hover::before,
.btn_download:focus::before {
  transform: translateX(130%);
}

.btn_outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.btn_outline:hover,
.btn_outline:focus {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.countdown_wrap {
  background: var(--surface_1);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: none;
}

.countdown_label {
  color: #c4c9d4;
  font-weight: 600;
}

.count_box {
  border: 1px solid var(--line);
  background: var(--surface_3);
  border-radius: 12px;
  padding: 12px 6px;
}

.count_box span {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color: var(--accent_1);
}

.count_box small {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text_2);
}

.countdown_text {
  color: var(--text_2);
}

.section_block {
  padding: clamp(60px, 9vw, 100px) 0;
}

.section_kicker {
  color: var(--accent_1);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section_header {
  margin-bottom: 18px;
}

.section_header h2 {
  max-width: 920px;
}

.section_header p:last-child {
  max-width: 860px;
}

.section_header_full h2,
.section_header_full p:last-child {
  max-width: none;
}

.section_header_center {
  text-align: center;
}

.section_header_center h2,
.section_header_center p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.bg_dark_1 {
  background: var(--bg_1);
}

.bg_dark_2 {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015)),
    var(--bg_2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bg_dark_3 {
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(255, 180, 84, 0.12), transparent 70%),
    var(--bg_3);
}

.launch_metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  border-radius: 8px;
  overflow: visible;
  background: transparent;
}

.metric_item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface_1);
  box-shadow: none;
}

.metric_icon {
  display: inline-grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 180, 84, 0.28);
  border-radius: 12px;
  background: rgba(255, 180, 84, 0.12);
  color: var(--accent_1);
  font-size: 1.35rem;
}

.metric_icon_green {
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.metric_icon_orange {
  border-color: rgba(176, 97, 255, 0.24);
  background: rgba(176, 97, 255, 0.12);
  color: var(--accent_3);
}

.metric_copy strong {
  display: block;
  color: #ffffff;
  font-size: 1.32rem;
  line-height: 1.2;
}

.metric_copy span {
  display: block;
  color: var(--text_2);
  margin-top: 5px;
}

.feature_box {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: none;
  transition: border-color .18s ease, transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.feature_box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent_1), var(--accent_2), var(--accent_3));
  opacity: .9;
}

.feature_box:hover {
  border-color: rgba(255, 180, 84, 0.3);
  background: linear-gradient(180deg, rgba(255, 180, 84, 0.08), rgba(255, 120, 73, 0.03));
  box-shadow: none;
  transform: translateY(-2px);
}

.feature_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.feature_icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 180, 84, 0.28);
  background: rgba(255, 180, 84, 0.12);
  color: var(--accent_1);
  font-size: 1.34rem;
}

.feature_icon_green {
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.feature_icon_blue {
  border-color: rgba(176, 97, 255, 0.24);
  background: rgba(176, 97, 255, 0.12);
  color: var(--accent_3);
}

.feature_icon_orange {
  border-color: rgba(255, 120, 73, 0.26);
  background: rgba(255, 120, 73, 0.12);
  color: var(--accent_2);
}

.feature_tag {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px 9px;
  color: #c4c9d4;
  background: rgba(255, 255, 255, 0.04);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature_box h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.feature_box p {
  margin: 0;
  color: var(--text_2);
  font-size: 1rem;
}

.list_clean {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list_clean li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface_3);
  margin-bottom: 14px;
  color: #c4c9d4;
}

.list_clean i {
  flex: 0 0 auto;
  color: var(--accent_1);
  margin-top: 3px;
}

.value_panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 28px;
  box-shadow: none;
}

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

.value_panel h3::before {
  content: "\F586";
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 180, 84, 0.12);
  color: var(--accent_1);
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
}

.value_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 16px;
  padding: 12px 0;
}

.value_row strong {
  color: var(--accent_1);
  white-space: nowrap;
}

.packages_container {
  margin-bottom: 82px;
}

.packages_container .section_header_center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.packages_container .section_header_center h2 {
  max-width: 900px;
}

.package_grid > [class*="col-"] {
  display: flex;
}

.package_card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 180, 84, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: #e7e9ee;
  padding: 28px;
  text-decoration: none;
  box-shadow: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.package_card:hover {
  border-color: rgba(255, 180, 84, 0.3);
  color: #e7e9ee;
  transform: translateY(-3px);
  box-shadow: none;
}

.package_card_featured {
  border-color: rgba(255, 180, 84, 0.5);
  background:
    radial-gradient(circle at top right, rgba(255, 180, 84, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 180, 84, 0.08), rgba(255, 120, 73, 0.03));
}

.package_ribbon {
  position: absolute;
  top: 24px;
  right: -56px;
  z-index: 2;
  width: 210px;
  padding: 8px 0;
  background: linear-gradient(135deg, var(--accent_1), var(--accent_2));
  color: #1a0e05;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(35deg);
}

.package_badges {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.discount_badge,
.package_badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 800;
  line-height: 1;
}

.discount_badge {
  gap: 8px;
  border: 1px solid rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.package_badge {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #c4c9d4;
}

.package_intro {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  min-height: 132px;
}

.package_icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent_1), var(--accent_2));
  color: #1a0e05;
  font-size: 1.45rem;
  font-weight: 900;
}

.package_intro strong {
  display: block;
  color: #f0f2f4;
  font-size: 1.8rem;
  line-height: 1.08;
  margin-bottom: 10px;
}

.package_intro small {
  display: block;
  color: #aeb2b8;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.package_separator {
  display: block;
  height: 1px;
  margin: 2px 0 24px;
  background: rgba(255, 255, 255, 0.07);
}

.package_price_row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.package_price_main {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: #d9dde2;
}

.package_price_main small {
  font-size: .92rem;
  font-weight: 900;
}

.package_price_main strong {
  color: #f1f3f5;
  font-size: clamp(2.8rem, 4vw, 3.65rem);
  line-height: .95;
}

.package_direct_cost {
  display: grid;
  gap: 2px;
  color: #aeb2b8;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.18;
}

.package_direct_cost s {
  color: #92969d;
  font-size: 1.02rem;
}

.package_saving,
.package_burn {
  display: flex;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 18px;
}

.package_saving {
  flex-direction: column;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.08);
}

.package_saving strong,
.package_burn strong {
  color: #f1f3f5;
  font-size: 1.05rem;
  line-height: 1.25;
}

.package_saving small,
.package_burn small {
  display: block;
  color: #aeb2b8;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.32;
  margin-top: 5px;
}

.package_burn {
  gap: 12px;
  border: 1px solid rgba(255, 120, 73, 0.28);
  background: rgba(255, 120, 73, 0.1);
}

.package_burn i {
  color: var(--accent_2);
  font-size: 1.3rem;
  margin-top: 2px;
}

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

.package_stats span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  padding: 14px;
}

.package_stats small {
  display: block;
  color: #9ea3aa;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}

.package_stats strong {
  color: #f1f3f5;
  font-size: 1.24rem;
  line-height: 1.08;
}

.package_features {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.package_features span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aeb2b8;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.package_features i {
  color: var(--accent_1);
  font-size: 1.08rem;
}

.package_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent_1), var(--accent_2));
  color: #1a0e05;
  font-size: 1rem;
  font-weight: 900;
}

.form-label {
  color: #c4c9d4;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  background: rgba(0, 0, 0, 0.25);
  border-color: var(--line);
  color: #e7e9ee;
  border-radius: 12px;
  min-height: 48px;
}

.form-control:focus,
.form-select:focus {
  background: rgba(0, 0, 0, 0.35);
  border-color: var(--accent_1);
  box-shadow: 0 0 0 .25rem rgba(255, 180, 84, 0.12);
  color: #e7e9ee;
}

.feedback {
  min-height: 24px;
  font-size: .95rem;
}

.feedback.is_success {
  color: #9af4d0;
}

.feedback.is_error {
  color: #ffb4b4;
}

.faq_section {
  background:
    linear-gradient(180deg, rgba(13, 20, 28, 0), rgba(255, 180, 84, 0.03)),
    var(--bg_1);
}

.faq_item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface_1);
  padding: 24px;
}

.faq_item h3 {
  font-size: 1.08rem;
  margin: 16px 0 8px;
}

.faq_item p {
  margin: 0;
  color: var(--text_2);
}

.faq_icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 180, 84, 0.28);
  background: rgba(255, 180, 84, 0.12);
  color: var(--accent_1);
  font-size: 1.16rem;
}

.faq_icon_green {
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.faq_icon_orange {
  border-color: rgba(255, 120, 73, 0.28);
  background: rgba(255, 120, 73, 0.12);
  color: var(--accent_2);
}

footer {
  border-color: rgba(255, 255, 255, 0.06) !important;
  color: #8b909c;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 18px 0 10px;
    text-align: center;
  }

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

  .navbar-nav .dropdown {
    margin-bottom: 12px;
  }

  .hero_section {
    min-height: auto;
    background-position: 62% center;
    text-align: center;
  }

  .about_hero {
    min-height: auto;
    text-align: center;
    padding: 118px 0 68px;
  }

  .hero_section h1,
  .hero_section .lead,
  .about_hero h1,
  .about_hero .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero_section .d-flex.flex-wrap {
    justify-content: center;
  }

  .about_hero .d-flex.flex-wrap {
    justify-content: center;
  }

  .hero_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .countdown_wrap {
    text-align: center;
    max-width: 560px;
    margin: 18px auto 0;
  }

  .section_header,
  .section_header_full {
    text-align: center;
  }

  .section_header h2,
  .section_header p:last-child,
  .section_header_full h2,
  .section_header_full p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

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

  .metric_item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .feature_box {
    align-items: center;
    min-height: auto;
    text-align: center;
  }

  .feature_header {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
  }

  .feature_tag {
    align-self: center;
  }

  .list_clean li {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .value_panel {
    text-align: center;
  }

  .value_panel h3 {
    justify-content: center;
  }

  .package_card {
    max-width: 640px;
    margin: 0 auto;
  }

  .faq_item,
  .about_copy_panel,
  .about_quote_panel {
    text-align: center;
  }

  footer .container {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .section_block {
    padding: 64px 0;
  }

  .hero_section {
    padding-top: 88px;
    padding-bottom: 56px;
  }

  .hero_section .display-3 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .about_hero .display-3 {
    font-size: 2.18rem;
    line-height: 1.12;
  }

  .brand_logo {
    width: 100%;
    height: 100%;
  }

  .brand_mark_wrap {
    width: 28px;
    height: 28px;
  }

  .brand_wordmark {
    font-size: 1.02rem;
  }

  .hero_section .lead {
    font-size: 1.18rem;
  }

  .hero_section .btn {
    width: 100%;
    max-width: 342px;
  }

  .kicker {
    text-align: center;
  }

  .count_box span {
    font-size: 1.38rem;
  }

  .countdown_wrap,
  .value_panel,
  .about_statement,
  .about_copy_panel,
  .about_quote_panel,
  .about_cta {
    padding: 20px;
  }

  .package_card {
    padding: 20px;
  }

  .package_badges {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .package_badges .discount_badge {
    align-self: flex-end;
  }

  .package_badges .package_badge {
    align-self: center;
  }

  .package_intro {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    min-height: auto;
  }

  .package_intro strong {
    font-size: 1.48rem;
  }

  .package_intro small {
    font-size: .96rem;
  }

  .package_price_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .package_price_main strong {
    font-size: 2.75rem;
  }

  .package_ribbon {
    top: 18px;
    right: -62px;
  }

  .feature_box {
    padding: 30px 22px;
  }

  .list_clean li {
    align-items: center;
    padding: 16px;
    text-align: left;
  }

  .value_row {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .form-label {
    width: 100%;
    text-align: center;
  }

  .about_cta .btn {
    width: 100%;
  }
}
