html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --default-font: "Manrope", system-ui, sans-serif;
  --heading-font: "Outfit", sans-serif;
  --background-color: #f4f7ff;
  --surface-color: #ffffff;
  --surface-muted: #edf2ff;
  --default-color: #202020;
  --heading-color: #111111;
  --muted-color: #5b6475;
  --accent-color: #1f5fbf;
  --accent-dark: #151515;
  --accent-red: #c1121f;
  --line-color: rgba(31, 95, 191, 0.12);
  --soft-shadow: 0 20px 50px rgba(17, 17, 17, 0.08);
  --header-h: 92px;
  --page-title-inline-offset: 18px;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--default-color);
  background: radial-gradient(circle at top, #ffffff 0%, var(--background-color) 62%, #e8eefb 100%);
  font-family: var(--default-font);
  line-height: 1.65;
  position: relative;
}

.header,
.main,
.footer,
.container,
.container-fluid,
.hero-shell,
.download-showcase,
.download-card,
.download-card-content,
.footer-grid {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

section,
.section {
  padding: 72px 0;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.light-background {
  background: transparent;
}

.header {
  min-height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(31, 95, 191, 0.08);
  backdrop-filter: blur(14px);
  top: 0;
  z-index: 1000;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: 10px;
  padding-right: 10px;
}

.logo img {
  height: 52px;
  width: auto;
}

.header .logo {
  margin-left: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-getstarted,
.menu-toggle,
.menu-close,
.app-button,
.store-button,
.footer-download-btn,
.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.btn-getstarted,
.app-button,
.menu-cta,
.footer-download-btn {
  background: var(--accent-color);
  color: #ffffff;
}

.btn-getstarted:hover,
.app-button:hover,
.store-button:hover,
.menu-toggle:hover,
.menu-close:hover,
.menu-cta:hover,
.footer-download-btn:hover {
  transform: translateY(-2px);
}

.footer-download-btn-secondary,
.store-button,
.menu-toggle,
.menu-close {
  background: #111111;
  color: #ffffff;
}

.navmenu {
  position: relative;
}

.menu-toggle,
.menu-close {
  border: 0;
}

.menu-toggle i,
.menu-close i {
  font-size: 20px;
  line-height: 0;
}

@media (min-width: 768px) {
  .menu-close {
    display: none;
  }

  .navmenu-panel-head {
    justify-content: flex-start;
  }
}

.navmenu-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: min(980px, calc(100vw - 32px));
  padding: 24px 26px;
  border: 1px solid var(--line-color);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 70px rgba(24, 41, 84, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.28s ease;
  pointer-events: none;
}

body.menu-open .navmenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.navmenu-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-color);
}

.menu-kicker,
.navmenu-title,
.footer-title,
.process-step,
.eyebrow,
.panel-tag,
.menu-highlight {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow,
.panel-tag,
.menu-highlight,
.process-step {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(193, 18, 31, 0.1);
  color: var(--accent-red);
}

.menu-kicker,
.navmenu-title,
.footer-title {
  color: #66708a;
}

.navmenu-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 26px;
  padding-top: 24px;
}

.navmenu-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.navmenu-col a {
  font-size: 18px;
  font-weight: 800;
  padding: 4px 0;
}

.navmenu-col a.active,
.navmenu-col a:hover {
  color: #111111;
}

.navmenu-brand-block {
  padding: 8px 10px 8px 0;
}

.navmenu-brand-block h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.navmenu-brand-block p {
  max-width: 470px;
}

.menu-cta {
  margin-top: 18px;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding-top: 12px;
}

.hero-shell {
  display: grid;
  gap: 28px;
}

.hero-feature-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 34px;
  padding: 6px 6px 0;
  text-align: center;
}

.hero-feature-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111111;
}

.hero-feature-strip i {
  font-size: 20px;
  color: var(--accent-color);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(3.4rem, 8vw, 7.3rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 1120px;
}

.hero-copy h1 span {
  background: rgba(193, 18, 31, 0.12);
  box-shadow: 12px 0 0 rgba(193, 18, 31, 0.12), -12px 0 0 rgba(193, 18, 31, 0.12);
}

.hero-description {
  max-width: 760px;
  font-size: 1.1rem;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 34px;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.hero-benefits i,
.detail-icon {
  font-size: 20px;
}

.download-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.9fr);
  gap: 20px;
  margin-top: 18px;
}

.download-showcase-single {
  grid-template-columns: 1fr;
}

.download-showcase-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.download-card,
.content-card,
.detail-card,
.process-card,
.contact-actions-panel,
.terms-card,
.info-pill-card,
.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line-color);
  border-radius: 32px;
  box-shadow: var(--soft-shadow);
}

.download-card {
  padding: 42px;
}

.download-card-primary {
  min-height: 0;
}

.download-card-full {
  width: 100%;
}

.download-copy-card,
.download-image-card {
  height: 100%;
}

@media (min-width: 1200px) {
  .header-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .header .logo {
    margin-left: 120px;
  }

  .header-actions {
    margin-right: 100px;
  }

  .download-showcase-single {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }

  .download-showcase-split {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr);
    gap: 24px;
  }
}

.download-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.download-card-head strong {
  display: block;
  font-size: 2rem;
}

.download-card-head span {
  color: #66708a;
  font-weight: 700;
}

.brand-badge {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--accent-color), #3c7ae0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-card-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.download-copy h2,
.content-card h2,
.process-card h2,
.contact-actions-panel h3,
.page-title h1 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  margin-bottom: 14px;
}

.download-copy {
  min-width: 0;
  margin-top: 34px;
}

.download-visual {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31, 95, 191, 0.04), rgba(31, 95, 191, 0.01));
}

.download-visual img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.store-button {
  margin-top: 22px;
  width: fit-content;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.store-buttons .store-button,
.store-buttons .app-button {
  margin-top: 0;
}

.download-card-secondary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.download-card-secondary .download-copy {
  margin-top: 90px;
}

.app-button {
  margin-top: 28px;
  width: fit-content;
}

.download-summary-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(31, 95, 191, 0.06);
  border: 1px solid var(--line-color);
}

.download-summary-box i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  font-size: 18px;
}

.download-summary-box strong,
.download-summary-box span {
  display: block;
}

.download-summary-box strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.download-summary-box span {
  color: var(--muted-color);
}

.page-title {
  padding: 62px 0 26px;
}

.page-title > .container {
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + var(--page-title-inline-offset));
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5 + var(--page-title-inline-offset));
}

.page-title p {
  max-width: 720px;
  font-size: 1.08rem;
}

.content-split,
.process-grid,
.detail-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.content-split {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.content-card,
.contact-actions-panel,
.terms-card {
  padding: 34px;
}

.content-card-lg {
  min-height: 100%;
}

.info-stack {
  display: grid;
  gap: 16px;
}

.info-pill-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
}

.info-pill-card i,
.contact-action-icon,
.detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 95, 191, 0.1);
  color: var(--accent-color);
}

.info-pill-card strong,
.contact-action-card strong {
  display: block;
  font-size: 1.12rem;
}

.info-pill-card span,
.contact-action-card span {
  color: var(--muted-color);
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

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

.detail-card,
.process-card {
  padding: 30px;
}

.detail-card h3 {
  margin: 18px 0 10px;
  font-size: 1.55rem;
}

.content-card-banner {
  margin-top: 22px;
}

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

.process-card .process-step {
  margin-bottom: 18px;
}

.process-highlight {
  margin-top: 24px;
}

.footer {
  margin-top: 10px;
  padding-top: 20px;
  background: rgba(31, 95, 191, 0.05);
  border-top: 1px solid rgba(31, 95, 191, 0.08);
}

.footer-top {
  padding-top: 34px;
  padding-bottom: 18px;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.7fr;
  align-items: start;
}

.footer-brand,
.footer-links-group,
.footer-download {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 800;
}

.copyright {
  padding: 20px 0 28px;
}

.contact-action-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line-color);
}

.whatsapp-card .contact-action-icon {
  background: #25d366;
  color: #ffffff;
}

.faq-container {
  display: grid;
  gap: 14px;
}

.faq-item {
  position: relative;
  padding: 24px 64px 24px 58px;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-icon,
.faq-toggle {
  position: absolute;
  top: 28px;
  font-size: 20px;
}

.faq-icon {
  left: 22px;
}

.faq-toggle {
  right: 22px;
  transition: transform 0.25s ease;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.25s ease;
  opacity: 0;
}

.faq-content p {
  overflow: hidden;
  padding-top: 0;
}

.faq-active {
  background: linear-gradient(135deg, #111111, #1f5fbf);
}

.faq-active h3,
.faq-active .faq-icon,
.faq-active .faq-toggle,
.faq-active p {
  color: #ffffff;
}

.faq-active .faq-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-active .faq-content p {
  padding-top: 14px;
}

.faq-active .faq-toggle {
  transform: rotate(90deg);
}

.terms-block + .terms-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-color);
}

.terms-block h2 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.terms-block ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.terms-block li {
  margin-bottom: 8px;
  color: var(--muted-color);
}

.scroll-top,
.whatsapp-float {
  position: fixed;
  right: 18px;
  z-index: 1001;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.15);
}

.scroll-top {
  bottom: 86px;
  visibility: hidden;
  opacity: 0;
  background: #111111;
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.whatsapp-float {
  bottom: 18px;
  background: #25d366;
  color: #ffffff;
}

.whatsapp-float i,
.scroll-top i {
  font-size: 26px;
  line-height: 0;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
}

#preloader:before {
  content: "";
  position: absolute;
  top: calc(50% - 26px);
  left: calc(50% - 26px);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 5px solid var(--accent-color);
  border-top-color: var(--accent-red);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199px) {
  .download-showcase,
  .download-showcase-split,
  .content-split,
  .footer-grid,
  .process-grid,
  .detail-grid,
  .detail-grid-benefits,
  .download-card-content,
  .navmenu-grid {
    grid-template-columns: 1fr;
  }

  .navmenu-panel {
    width: min(720px, calc(100vw - 24px));
  }

  .footer-grid {
    gap: 28px;
  }

  .download-card-content {
    gap: 10px;
  }

}

@media (max-width: 767px) {
  :root {
    --header-h: 90px;
    --page-title-inline-offset: 10px;
  }

  section,
  .section {
    padding: 25px 0;
  }

  .header-shell {
    min-height: var(--header-h);
    gap: 14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo img {
    height: 44px;
  }

  .header .logo {
    margin-left: 8px;
  }

  .btn-getstarted {
    display: none;
  }

  .menu-toggle,
  .menu-close,
  .app-button,
  .store-button,
  .footer-download-btn,
  .menu-cta {
    min-height: 46px;
    padding: 0 18px;
  }

  .navmenu-panel {
    position: fixed;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    padding: 14px;
    border-radius: 0 0 22px 22px;
  }

  .navmenu-panel-head {
    display: none;
  }

  .menu-kicker {
    display: none;
  }

  .navmenu-grid {
    padding-top: 14px;
    gap: 16px;
  }

  .navmenu-brand-block {
    display: none;
  }

  .navmenu-col {
    gap: 8px;
  }

  .navmenu-title {
    display: none;
  }

  .navmenu-col a {
    font-size: 16px;
    padding: 10px 0;
  }

  .menu-close span {
    display: none;
  }

  .hero {
    padding-top: 10px;
    min-height: auto;
  }

  .hero-shell {
    gap: 6px;
  }

  .hero-feature-strip {
    display: none;
  }

  .hero-copy h1 {
    font-size: 3.25rem;
    overflow-wrap: anywhere;
  }

  .hero-benefits {
    gap: 12px;
  }

  .hero-benefits span {
    font-size: 0.95rem;
  }

  .download-card,
  .content-card,
  .detail-card,
  .process-card,
  .contact-actions-panel,
  .terms-card,
  .faq-item {
    padding: 18px;
  }

  .download-card {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .download-card-content,
  .download-showcase,
  .download-showcase-split {
    gap: 12px;
  }

  .download-showcase,
  .download-showcase-split {
    margin-top: 4px;
    margin-bottom: 0;
  }

  .download-card-head,
  .download-copy,
  .footer-brand,
  .footer-links-group,
  .footer-download {
    min-width: 0;
  }

  .download-copy-card {
    order: 2;
  }

  .download-image-card {
    order: 1;
  }

  .download-copy {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
  }

  .download-copy-text {
    display: none;
  }

  .store-buttons {
    order: 1;
    margin-top: 0;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .store-buttons .store-button,
  .store-buttons .app-button {
    width: 100%;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .download-card-head strong {
    font-size: 1.5rem;
  }

  .brand-badge {
    width: 68px;
    height: 68px;
    border-radius: 22px;
  }

  .download-visual {
    min-height: 230px;
  }

  .download-card-primary {
    background: none;
  }

  .download-visual img {
    max-width: 88%;
    max-height: 420px;
    transform: translateY(-18px);
  }

  .shape-accent {
    width: 190px;
    height: 190px;
    right: 10px;
  }

  .page-title h1,
  .download-copy h2,
  .content-card h2,
  .process-card h2,
  .contact-actions-panel h3 {
    font-size: 2.2rem;
  }

  .faq-item {
    padding: 20px 54px 20px 48px;
  }

  .faq-icon,
  .faq-toggle {
    top: 23px;
  }

  .faq-icon {
    left: 18px;
  }

  .faq-toggle {
    right: 18px;
  }

  .scroll-top,
  .whatsapp-float {
    right: max(12px, env(safe-area-inset-right) + 12px);
    width: 50px;
    height: 50px;
  }

  .scroll-top {
    bottom: 76px;
  }

  .whatsapp-float {
    bottom: 12px;
  }
}
