@font-face {
  font-family: 'RabarWeb';
  src: url('./assets/fonts/Rabar_021.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BalooBhai2Web';
  src: url('./assets/fonts/BalooBhai2-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ececec;
  --bg-soft: #f3f4f6;
  --blue: #0f72b5;
  --blue-deep: #055c93;
  --blue-dark: #044976;
  --blue-soft: #dff0fc;
  --ink: #2f2f33;
  --ink-2: #3f4752;
  --muted: #6b7280;
  --line: #8cc4ea;
  --line-dark: #5aa7dd;
  --white: #ffffff;
  --danger: #c43d36;
  --success: #1f8f54;
  --shadow-soft: 0 14px 34px rgba(14, 70, 113, 0.11);
  --font-family: 'RabarWeb', 'Tajawal', 'Noto Sans Arabic', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-family);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.page {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 16px 10px 24px;
}

.container {
  width: min(1360px, 96vw);
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

.header {
  width: min(1360px, 95vw);
  margin: 0 auto 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  order: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-family: 'BalooBhai2Web', 'RabarWeb', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #1f5d8d;
  line-height: 0.92;
  text-align: left;
}

.nav {
  order: 2;
  flex: 1;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  border: 2px solid var(--line-dark);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #2e4a63;
  background: #f6fbff;
  transition: 120ms ease;
}

.nav a:hover {
  background: #e8f3fb;
}

.nav a.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.hero {
  background: linear-gradient(164deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 20px;
  padding: 30px;
  color: #eaf7ff;
  box-shadow: var(--shadow-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.2fr;
  gap: 28px;
  align-items: center;
}

.hero-visual {
  width: 100%;
  min-height: 340px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.hero-pill {
  margin-inline-start: auto;
  background: #d6ecfb;
  color: #195f8f;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 29px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(42px, 4vw, 74px);
  line-height: 1.15;
  margin: 16px 0 10px;
}

.hero .sub {
  color: #d0e9f8;
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.btn,
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  border: 2px solid var(--line);
  background: #f6fbff;
  color: #1c5989;
  padding: 10px 28px;
  font-family: inherit;
  cursor: pointer;
}

.btn {
  font-size: 38px;
  font-weight: 700;
}

.btn:hover {
  background: #e9f6ff;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.section-box {
  margin-top: 34px;
  background: var(--blue);
  border-radius: 12px;
  color: var(--white);
  padding: 30px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.two-col h2 {
  font-size: clamp(34px, 3.2vw, 62px);
  line-height: 1.18;
}

.two-col h3 {
  font-size: clamp(34px, 3.2vw, 54px);
}

.two-col p {
  font-size: 22px;
}

.features {
  margin-top: 42px;
}

.features-title {
  text-align: center;
  color: #4880ad;
  margin-bottom: 26px;
}

.features-title h3 {
  font-size: clamp(38px, 2.8vw, 56px);
  margin-bottom: 10px;
}

.features-title p {
  font-size: clamp(30px, 2.2vw, 42px);
}

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

.card {
  text-align: center;
  color: #4a4d52;
}

.card-ico {
  margin: 0 auto 16px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--line);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f8fc;
}

.card-ico img {
  width: 98px;
  height: 98px;
  object-fit: contain;
}

.card h4 {
  font-size: 42px;
  color: #2f6a95;
  margin-bottom: 8px;
}

.card p {
  font-size: 20px;
  line-height: 1.45;
}

.cta {
  margin: 60px auto 30px;
  width: min(1120px, 90vw);
  border-radius: 22px 22px 160px 22px;
  background: var(--blue);
  padding: 36px;
  text-align: center;
  color: #e8f7ff;
}

.cta small {
  display: block;
  font-size: 18px;
}

.cta p {
  margin: 12px 0 22px;
  font-size: clamp(30px, 2.6vw, 42px);
}

.footer {
  margin-top: 26px;
  padding: 10px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 12px;
}

.footer h5 {
  color: #1f7ec4;
  font-size: 30px;
  margin-bottom: 12px;
}

.footer p {
  font-size: 16px;
  color: #5f646e;
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.social.social-icon-image {
  background: transparent;
  border: 0;
  padding: 0;
  overflow: hidden;
}

.social.social-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s-yt {
  background: #ff2020;
}

.s-ig {
  background: #d62976;
}

.s-tg {
  background: #2aabee;
}

.s-fb {
  background: #1877f2;
}

.footer-logo {
  text-align: end;
}

.footer-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-logo span {
  display: block;
  font-family: 'BalooBhai2Web', 'RabarWeb', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  color: #1f5d8d;
  line-height: 0.92;
}

.copyright {
  margin: 14px auto 0;
  width: min(1008px, 90vw);
  border-top: 1px solid #7b848f;
  text-align: center;
  padding-top: 10px;
  color: #5d6571;
  font-size: 14px;
}

.panel {
  border: 2px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 16px;
}

.panel-title {
  margin-bottom: 14px;
  color: #2f6a95;
  font-size: clamp(34px, 2.4vw, 54px);
  text-align: center;
  font-weight: 800;
}

.panel-intro {
  color: var(--ink-2);
  font-size: clamp(18px, 1.45vw, 28px);
  line-height: 1.8;
  margin-bottom: 16px;
}

.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}

.tab {
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 12px 30px;
  font-size: clamp(18px, 1.4vw, 28px);
  color: #2f6a95;
  background: #f7fbfe;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.tab.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.table {
  width: 100%;
  overflow-x: auto;
  border: 2px solid var(--line);
  border-radius: 14px;
  margin-bottom: 16px;
  background: #fbfdff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  border: 1px solid #c8dded;
  padding: 12px;
  text-align: center;
  font-size: 18px;
}

th {
  background: #dceffb;
  color: #285f89;
  font-weight: 700;
}

.policies-text h3 {
  color: #245d86;
  font-size: clamp(28px, 2vw, 44px);
  margin-bottom: 10px;
}

.policies-text h4 {
  color: #286c9a;
  font-size: clamp(24px, 1.7vw, 34px);
  margin: 14px 0 8px;
}

.policies-text p,
.policies-text li {
  font-size: clamp(18px, 1.4vw, 25px);
  line-height: 1.8;
  color: #3f4c58;
}

.policy-list {
  margin: 0;
  padding-inline-start: 22px;
}

.policy-list li {
  margin-bottom: 6px;
}

.supplier-hero {
  padding: 18px;
}

.supplier-hero .hero-grid {
  grid-template-columns: 1fr 220px;
}

.supplier-hero h1 {
  margin: 0;
  font-size: clamp(36px, 2.6vw, 58px);
}

.supplier-hero img {
  width: 180px;
  justify-self: center;
}

.form-wrap {
  margin-top: 16px;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: #fff;
}

.form-wrap h2 {
  text-align: center;
  font-size: clamp(32px, 2.4vw, 44px);
  margin-bottom: 24px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #4d6682;
  font-size: 18px;
  font-weight: 600;
}

.input,
textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 18px;
  font-family: inherit;
  background: #fdfefe;
}

textarea {
  border-radius: 18px;
  min-height: 130px;
  resize: vertical;
}

.input.is-invalid,
textarea.is-invalid {
  border-color: var(--danger);
  background: #fff7f7;
}

.error-msg {
  color: var(--danger);
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.error-msg.show {
  display: block;
}

.radio-box {
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 14px;
}

.radio-box p {
  margin: 0 0 10px;
  color: #365b7d;
  font-size: 17px;
}

.radio-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.small-note {
  text-align: center;
  color: #3d6f9a;
  font-size: 14px;
  margin-top: 8px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 660px;
  margin: 26px auto 0;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 700;
  padding: 10px 16px;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-ghost {
  background: #f6fbff;
  color: #286b99;
}

.form-alert {
  margin-top: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  min-height: 22px;
}

.form-alert.success {
  color: var(--success);
}

.form-alert.error {
  color: var(--danger);
}

.faq-intro {
  text-align: center;
  margin: 26px auto 20px;
  max-width: 1120px;
}

.faq-intro h1 {
  font-size: clamp(42px, 3.2vw, 72px);
  margin-bottom: 12px;
}

.faq-intro p {
  font-size: clamp(24px, 2vw, 44px);
  line-height: 1.45;
}

.faq-section-title {
  margin: 20px 0 12px;
  font-size: clamp(32px, 2.2vw, 46px);
  font-weight: 800;
}

.faq-box {
  border: 2px solid var(--line-dark);
  border-radius: 22px;
  background: #f9fcff;
  padding: 16px;
}

.acc-item {
  margin-bottom: 10px;
}

.acc-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: clamp(22px, 1.8vw, 34px);
  padding: 13px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}

.acc-btn .icon {
  font-size: 42px;
  line-height: 1;
  width: 36px;
  text-align: center;
}

.acc-content {
  display: none;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  font-size: clamp(18px, 1.5vw, 30px);
  line-height: 1.8;
  margin-top: 8px;
}

.acc-item.open .acc-content {
  display: block;
}

.video-box {
  background: #4f5566;
  border-radius: 14px;
  padding: 10px;
  color: #fff;
  margin-bottom: 12px;
}

.video-top {
  background: var(--blue);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(20px, 1.4vw, 28px);
  font-weight: 700;
}

.video-frame {
  margin: 14px auto;
  width: min(100%, 663px);
  position: relative;
}

.video-frame img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  height: 68px;
  background: #ff2020;
  border-radius: 14px;
}

.play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.video-tag {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border-radius: 999px;
  background: #20242f;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.guide-card {
  border: 2px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}

.guide-card h3 {
  color: #2e6f9e;
  font-size: 30px;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #394f67;
}

.guide-card a {
  margin-top: 14px;
  display: inline-block;
  color: #0f72b5;
  font-weight: 700;
  text-decoration: none;
}

.guide-hub-head {
  background: linear-gradient(165deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 28px;
}

.guide-hub-head h1 {
  font-size: clamp(40px, 3vw, 64px);
  margin-bottom: 10px;
}

.guide-hub-head p {
  font-size: clamp(20px, 1.6vw, 30px);
  line-height: 1.55;
}

.guide-search {
  margin-top: 18px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}

.guide-search span {
  color: #7a8797;
  font-size: 16px;
}

.guide-search input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 18px;
  font-family: inherit;
  background: transparent;
}

.topic-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-pill {
  border: 2px solid var(--line);
  background: #fff;
  color: #2c6189;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 16px;
  text-decoration: none;
}

.topic-pill:hover,
.topic-pill.active {
  background: var(--blue-soft);
}

.guide-links {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-link-card {
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  min-height: 210px;
}

.guide-link-card h3 {
  font-size: clamp(24px, 1.9vw, 34px);
  color: #2f6a95;
  margin-bottom: 10px;
}

.guide-link-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #3c5268;
}

.guide-link-card a {
  margin-top: 16px;
  display: inline-block;
  font-size: 17px;
  color: #0d5f98;
  text-decoration: none;
  font-weight: 700;
}

.article-panel {
  border: 2px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 26px;
}

.article-head {
  margin-bottom: 18px;
}

.article-kicker {
  color: #1f78b7;
  font-size: 22px;
  margin-bottom: 8px;
}

.article-title {
  color: #1b5f91;
  font-size: clamp(34px, 2.6vw, 54px);
  line-height: 1.3;
}

.article-copy p {
  color: #3f5062;
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.9;
  margin-bottom: 12px;
}

.article-copy h3 {
  color: #206da3;
  font-size: clamp(28px, 2vw, 36px);
  margin: 16px 0 10px;
}

.article-copy ul {
  margin: 0;
  padding-inline-start: 24px;
}

.article-copy li {
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.9;
  color: #3f5062;
  margin-bottom: 6px;
}

.article-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.article-actions a {
  text-decoration: none;
}

.merchant-start {
  margin-top: 14px;
}

.merchant-start .hero {
  padding: 34px;
}

.merchant-start h1 {
  margin: 0;
  font-size: clamp(42px, 3.4vw, 68px);
  line-height: 1.2;
}

.merchant-start .sub {
  font-size: clamp(20px, 1.6vw, 30px);
  margin-top: 14px;
}

.merchant-benefits {
  margin-top: 20px;
  border: 2px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}

.merchant-benefits h2 {
  color: #2f6a95;
  font-size: clamp(32px, 2.4vw, 46px);
  margin-bottom: 12px;
}

.merchant-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.merchant-benefit {
  background: #f4fafe;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.merchant-benefit h3 {
  color: #245d86;
  font-size: clamp(24px, 1.8vw, 32px);
  margin-bottom: 8px;
}

.merchant-benefit p {
  color: #3f5062;
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .page {
    padding-top: 10px;
  }

  .header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .brand {
    order: 0;
  }

  .nav {
    order: 0;
    justify-content: center;
  }

  .brand span {
    font-size: 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .nav a {
    font-size: 14px;
    padding: 7px 14px;
  }

  .hero-grid,
  .two-col,
  .cards,
  .footer-main,
  .form-actions,
  .guide-grid,
  .guide-links,
  .merchant-benefits-grid,
  .supplier-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-pill {
    font-size: 18px;
  }

  .hero h1,
  .merchant-start h1 {
    font-size: 30px;
  }

  .hero .sub,
  .two-col p,
  .card p,
  .policies-text p,
  .acc-content,
  .faq-intro p,
  .article-copy p,
  .article-copy li,
  .merchant-benefit p {
    font-size: 16px;
  }

  .btn {
    font-size: 20px;
  }

  .features-title h3,
  .faq-intro h1,
  .panel-title,
  .form-wrap h2,
  .policies-text h3,
  .faq-section-title,
  .article-title,
  .guide-hub-head h1,
  .merchant-benefits h2 {
    font-size: 30px;
  }

  .card h4,
  .policies-text h4,
  .guide-card h3,
  .article-copy h3,
  .merchant-benefit h3 {
    font-size: 24px;
  }

  .acc-btn {
    font-size: 16px;
  }

  .acc-btn .icon {
    font-size: 24px;
  }

  .footer-logo {
    text-align: start;
  }
}
/* Home page (index) scoped styles */
.home-page {
  --home-bg: #ececec;
  --home-blue: #0a5f96;
  --home-blue-dark: #04436e;
  --home-line: #0e6eb0;
  --home-copy: #222c35;
  --home-muted: #4c5866;
  background: var(--home-bg);
  padding-top: 24px;
  padding-bottom: 34px;
}

.home-page .home-wrap {
  width: min(1360px, calc(100vw - 38px));
  margin: 0 auto;
}

.home-page .home-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.home-page .home-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.home-page .home-logo img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.home-page .home-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-page .home-nav a {
  text-decoration: none;
  border: 1.8px solid var(--home-line);
  color: #155e94;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 700;
  background: #f7fbff;
}

.home-page .home-main {
  display: grid;
  gap: 28px;
}

.home-page .home-hero {
  background: linear-gradient(150deg, var(--home-blue) 0%, var(--home-blue-dark) 100%);
  border-radius: 22px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr minmax(380px, 44%);
  gap: 24px;
  align-items: center;
  color: #fff;
}

.home-page .home-hero-media {
  display: flex;
  justify-content: flex-start;
}

.home-page .home-hero-media img {
  width: min(560px, 100%);
  height: auto;
  display: block;
}

.home-page .home-hero-content {
  display: grid;
  justify-items: end;
  text-align: right;
}

.home-page .home-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #edf3f8;
  color: #0a6198;
  padding: 10px 22px;
  font-size: 37px;
  font-weight: 700;
}

.home-page .home-hero-content h1 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: clamp(36px, 3.65vw, 64px);
  line-height: 1.2;
  max-width: 640px;
}

.home-page .home-hero-content p {
  margin: 0;
  color: #d8ebf7;
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
}

.home-page .home-store-row,
.home-page .home-store-stack {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.home-page .home-store-stack {
  flex-direction: column;
  margin-top: 0;
}

.home-page .home-store-btn {
  display: inline-flex;
  text-decoration: none;
}

.home-page .home-store-btn img {
  width: 220px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.home-page .home-store-btn-appstore {
  width: 220px;
  height: 64px;
  border-radius: 14px;
  background: #1a5c8c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 40px;
  font-weight: 700;
}

.home-page .home-store-btn-appstore::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 4px rgba(15, 72, 112, 0.2);
}

.home-page .home-store-btn-appstore span {
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.2px;
}

.home-page .home-about {
  border: 2px solid var(--home-line);
  border-radius: 20px;
  padding: 24px 26px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  background: #ececec;
}

.home-page .home-about-card h2 {
  color: var(--home-blue);
  font-size: clamp(30px, 2.5vw, 44px);
  margin-bottom: 8px;
}

.home-page .home-about-card p {
  margin: 0;
  color: var(--home-copy);
  font-size: 23px;
  line-height: 1.75;
}

.home-page .home-kicker {
  color: #0a6db0;
  font-size: 18px;
  margin: 0;
}

.home-page .home-testimonials,
.home-page .home-values,
.home-page .home-learning {
  text-align: center;
}

.home-page .home-testimonials h2,
.home-page .home-values h2,
.home-page .home-learning h2,
.home-page .home-cta-copy h2 {
  color: var(--home-blue);
  font-size: clamp(40px, 3vw, 54px);
  line-height: 1.26;
  margin-top: 8px;
}

.home-page .home-testimonial-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-page .home-testimonial-card {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
}

.home-page .home-testimonial-card > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.home-page .home-play-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border: 0;
  background: transparent;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  cursor: pointer;
}

.home-page .home-play-badge img,
.home-page .home-faq-pill img {
  width: 100%;
  height: 100%;
  display: block;
}

.home-page .home-values h2 {
  max-width: 760px;
  margin-inline: auto;
}

.home-page .home-values-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-page .home-value-card {
  border-radius: 24px;
  border: 1.6px solid #d6dce2;
  background: #f8f9fb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 16px 16px 20px;
  text-align: center;
}

.home-page .home-value-card > img {
  width: 66px;
  height: 66px;
  margin-bottom: 10px;
}

.home-page .home-value-card h3 {
  color: var(--home-blue);
  font-size: 34px;
  margin-bottom: 8px;
}

.home-page .home-value-card p {
  margin: 0;
  color: #2f3f4f;
  font-size: 20px;
  line-height: 1.55;
}

.home-page .home-guide-strip {
  border: 2px solid var(--home-line);
  border-radius: 999px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-page .home-guide-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-blue);
  font-size: 42px;
  font-weight: 800;
}

.home-page .home-guide-label img {
  width: 40px;
  height: 40px;
}

.home-page .home-guide-cta {
  text-decoration: none;
  border-radius: 999px;
  background: var(--home-blue);
  color: #fff;
  padding: 10px 24px;
  min-width: 280px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.home-page .home-learning {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  gap: 24px;
  align-items: center;
  text-align: right;
}

.home-page .home-learning-copy {
  text-align: right;
}

.home-page .home-learning-copy p:last-child {
  color: var(--home-copy);
  font-size: 28px;
  line-height: 1.7;
  margin-top: 10px;
}

.home-page .home-learning-faqs {
  display: grid;
  gap: 12px;
}

.home-page .home-faq-pill {
  border: 2px solid var(--home-line);
  border-radius: 999px;
  background: #f9fcff;
  color: #175e92;
  min-height: 82px;
  text-align: right;
  padding: 12px 20px 12px 14px;
  font-size: 24px;
  font-family: inherit;
  font-weight: 700;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.home-page .home-faq-pill img {
  width: 48px;
  height: 48px;
}

.home-page .home-cta-banner {
  border-radius: 20px;
  background: linear-gradient(132deg, #0c5f96 0%, #1f78b4 100%);
  padding: 30px 38px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.home-page .home-cta-copy {
  text-align: right;
}

.home-page .home-cta-copy .home-kicker {
  color: #e6f4ff;
}

.home-page .home-cta-copy h2 {
  margin: 4px 0 0;
  color: #fff;
}

.home-page .home-footer {
  margin-top: 34px;
  border-top: 1px solid #adb7c0;
  padding-top: 24px;
}

.home-page .home-footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 20px;
}

.home-page .home-footer-block h5 {
  font-size: 40px;
  color: var(--home-blue);
  margin-bottom: 8px;
}

.home-page .home-footer-block p {
  color: var(--home-muted);
  font-size: 22px;
  line-height: 1.6;
}

.home-page .home-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.home-page .home-socials a {
  display: inline-flex;
  width: 44px;
  height: 44px;
}

.home-page .home-socials img {
  width: 100%;
  height: 100%;
}

.home-page .home-footer-brand {
  text-align: left;
}

.home-page .home-footer-brand img {
  width: 168px;
  height: auto;
}

.home-page .home-copyright {
  margin-top: 16px;
  border-top: 1px solid #adb7c0;
  text-align: center;
  padding-top: 10px;
  color: #5d6571;
  font-size: 14px;
}

.home-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.home-modal[hidden] {
  display: none;
}

.home-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.home-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 30px));
  border-radius: 14px;
  background: #041b2b;
  padding: 16px;
}

.home-modal-close {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  background: #fff;
  color: #123;
  cursor: pointer;
}

.home-modal-frame {
  border-radius: 12px;
  overflow: hidden;
  padding-top: 20px;
}

.home-modal-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

body.home-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .home-page {
    padding-top: 10px;
  }

  .home-page .home-header,
  .home-page .home-hero,
  .home-page .home-about,
  .home-page .home-values-grid,
  .home-page .home-learning,
  .home-page .home-footer-main {
    grid-template-columns: 1fr;
  }

  .home-page .home-header {
    display: grid;
    justify-items: center;
  }

  .home-page .home-nav {
    justify-content: center;
  }

  .home-page .home-logo img {
    width: 116px;
  }

  .home-page .home-hero {
    padding: 20px;
  }

  .home-page .home-hero-content {
    justify-items: center;
    text-align: center;
  }

  .home-page .home-hero-pill {
    font-size: 24px;
  }

  .home-page .home-hero-content p,
  .home-page .home-about-card p,
  .home-page .home-value-card p,
  .home-page .home-learning-copy p:last-child,
  .home-page .home-footer-block p {
    font-size: 16px;
  }

  .home-page .home-testimonials h2,
  .home-page .home-values h2,
  .home-page .home-learning h2,
  .home-page .home-cta-copy h2 {
    font-size: 30px;
  }

  .home-page .home-testimonial-grid,
  .home-page .home-values-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-guide-strip {
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .home-guide-label {
    justify-content: center;
    font-size: 24px;
  }

  .home-page .home-guide-cta {
    min-width: 0;
    font-size: 20px;
  }

  .home-page .home-faq-pill {
    font-size: 16px;
    min-height: 62px;
  }

  .home-page .home-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    padding: 20px;
  }

  .home-page .home-store-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .home-page .home-footer-brand {
    text-align: center;
  }

  .home-page .home-footer-brand img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .home-page .home-wrap {
    width: min(1360px, calc(100vw - 22px));
  }

  .home-page .home-nav a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .home-page .home-store-btn img {
    width: 176px;
    height: 52px;
  }

  .home-page .home-store-btn-appstore {
    width: 176px;
    height: 52px;
    gap: 10px;
  }

  .home-page .home-store-btn-appstore::before {
    width: 22px;
    height: 22px;
  }

  .home-page .home-store-btn-appstore span {
    font-size: 31px;
  }

  .home-page .home-about {
    padding: 18px;
  }
}

@media (max-width: 390px) {
  .home-page .home-hero-pill {
    font-size: 20px;
  }

  .home-page .home-store-row,
  .home-page .home-store-stack {
    justify-content: center;
  }

  .home-page .home-footer-main {
    gap: 12px;
  }
}
/* Guide screen matching */
.guide-screen {
  background: #ebebeb;
  padding-top: 10px;
  padding-bottom: 20px;
}

.guide-screen .header {
  margin-bottom: 14px;
}

.guide-screen .brand img {
  width: 62px;
  height: 62px;
}

.guide-screen .brand span {
  font-size: 22px;
}

.guide-screen .nav {
  gap: 10px;
}

.guide-screen .nav a {
  border: 1px solid #0e6ba8;
  background: transparent;
  color: #0e6ba8;
  padding: 8px 18px;
  font-size: 15px;
}

.guide-screen .nav a.active {
  color: #fff;
  background: #0e6ba8;
  border-color: #0e6ba8;
}

.guide-screen-main {
  min-height: 2550px;
}

.guide-title-strip {
  border: 1px solid #0e6ba8;
  border-radius: 999px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #0e6ba8;
  font-size: 36px;
  font-weight: 700;
}

.guide-title-strip img {
  width: 28px;
  height: 28px;
}

.guide-learn-header {
  margin-top: 22px;
  text-align: right;
}

.guide-learn-header h1 {
  margin: 0;
  color: #111;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1;
}

.guide-learn-pills {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.guide-learn-pill {
  text-decoration: none;
  min-height: 66px;
  border: 1px solid #0e6ba8;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #0e6ba8;
  font-size: 37px;
  font-weight: 700;
  background: transparent;
}

.guide-learn-pill img {
  width: 31px;
  height: 31px;
}

.guide-learn-header h2 {
  margin: 16px 0 0;
  color: #111;
  font-size: clamp(34px, 3.7vw, 58px);
  line-height: 1;
}

.guide-filter-box {
  margin-top: 18px;
  border: 1px solid #0e6ba8;
  border-radius: 16px;
  padding: 8px;
}

.guide-filter-search {
  border: 1px solid #0e6ba8;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-filter-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #4c5967;
  font-size: 18px;
  font-family: inherit;
}

.guide-filter-search button {
  width: 28px;
  height: 28px;
  border: 1px solid #0e6ba8;
  border-radius: 50%;
  background: #0e6ba8;
  color: #fff;
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.guide-filter-tags {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.guide-filter-tags a {
  text-decoration: none;
  border: 1px solid #0e6ba8;
  border-radius: 999px;
  color: #0e6ba8;
  background: transparent;
  padding: 6px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.guide-filter-tags a.active {
  color: #fff;
  background: #0e6ba8;
}

.guide-cards-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 56px;
}

.guide-article-card {
  text-decoration: none;
  border: 1.4px solid #0e6ba8;
  border-radius: 14px;
  overflow: hidden;
  background: #ececec;
  color: inherit;
}

.guide-card-top {
  min-height: 136px;
  background: #0e6ba8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-card-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #ebebeb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.guide-card-icon img {
  width: 56px;
  height: 56px;
}

.guide-card-body {
  min-height: 204px;
  background: #ececec;
  padding: 14px 16px 10px;
}

.guide-card-body h3 {
  margin: 0;
  color: #0d0d0d;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
}

.guide-card-body p {
  margin: 10px 0 0;
  color: #3a3a3a;
  font-size: 24px;
  line-height: 1.7;
}

.guide-card-body time {
  display: block;
  margin-top: 10px;
  color: #555;
  font-size: 10px;
  direction: ltr;
  text-align: left;
}

.guide-footer {
  margin-top: 26px;
  padding-bottom: 12px;
}

.guide-footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 16px;
}

.guide-footer-block h5 {
  margin: 0 0 8px;
  color: #0e6ba8;
  font-size: 41px;
  line-height: 1;
}

.guide-footer-block p {
  margin: 0;
  color: #343f4b;
  font-size: 20px;
  line-height: 1.6;
}

.guide-footer-socials {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.guide-footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
}

.guide-footer-socials img {
  width: 100%;
  height: 100%;
}

.guide-footer-brand {
  text-align: end;
}

.guide-footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.guide-footer-brand span {
  display: block;
  font-family: 'BalooBhai2Web', 'RabarWeb', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 0.9;
  color: #0e6ba8;
}

.guide-footer-copy {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: #4a5563;
}

@media (max-width: 980px) {
  .guide-screen-main {
    min-height: auto;
  }

  .guide-screen .header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .guide-screen .nav {
    justify-content: center;
  }

  .guide-title-strip {
    font-size: 22px;
    min-height: 52px;
  }

  .guide-learn-header h1,
  .guide-learn-header h2 {
    text-align: center;
    font-size: 30px;
  }

  .guide-learn-pills,
  .guide-cards-grid,
  .guide-footer-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-learn-pill {
    font-size: 18px;
  }

  .guide-filter-search input,
  .guide-filter-tags a,
  .guide-card-body h3,
  .guide-card-body p,
  .guide-footer-block p,
  .guide-footer-block h5 {
    font-size: 16px;
  }

  .guide-footer-brand {
    text-align: center;
  }
}
/* Policies screen matching */
.policies-screen {
  background: #ebebeb;
  padding-top: 10px;
  padding-bottom: 16px;
}

.policies-screen .header {
  margin-bottom: 16px;
}

.policies-screen .brand img {
  width: 62px;
  height: 62px;
}

.policies-screen .brand span {
  font-size: 22px;
}

.policies-screen .nav {
  gap: 10px;
}

.policies-screen .nav a {
  border: 1px solid #0e6ba8;
  background: transparent;
  color: #0e6ba8;
  padding: 8px 18px;
  font-size: 15px;
}

.policies-screen .nav a.active {
  color: #fff;
  background: #0e6ba8;
  border-color: #0e6ba8;
}

.policies-main {
  min-height: 2520px;
}

.policies-shell {
  border: 0;
  background: transparent;
  padding: 0;
}

.policies-strip-title {
  margin: 0;
  min-height: 72px;
  border-radius: 999px;
  background: #0e6ba8;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policies-main-tabs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.policies-main-tabs .tab {
  border: 1px solid #0e6ba8;
  border-radius: 14px 14px 0 0;
  background: transparent;
  color: #0e6ba8;
  min-height: 58px;
  font-size: 27px;
  font-weight: 700;
}

.policies-main-tabs .tab.active {
  color: #fff;
  background: #0e6ba8;
  border-color: #0e6ba8;
}

.policies-intro-box {
  border: 1px solid #0e6ba8;
  border-radius: 14px;
  padding: 10px 12px;
  margin-top: -1px;
}

.policies-intro-box p {
  margin: 0;
  color: #333;
  font-size: 20px;
  line-height: 1.65;
  text-align: right;
}

.policies-intro-box p + p {
  margin-top: 4px;
}

.policies-delivery-table {
  border: 1px solid #0e6ba8;
  border-radius: 14px;
  margin-top: 10px;
  padding: 8px 8px 0;
}

.policies-table-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.policies-table-head span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  background: #0e6ba8;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.policies-table-scroll {
  overflow-x: auto;
  border: 1px solid #0e6ba8;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: transparent;
}

.policies-table-scroll table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}

.policies-table-scroll td {
  border-bottom: 1px solid #6ca3c7;
  border-left: 1px solid #6ca3c7;
  text-align: center;
  padding: 10px 8px;
  color: #0e6ba8;
  font-size: 24px;
  font-weight: 700;
}

.policies-table-scroll tr td:last-child {
  border-left: 0;
}

.policies-rich-text {
  margin-top: 18px;
  text-align: right;
}

.policies-rich-text h3 {
  margin: 0;
  color: #0e6ba8;
  font-size: clamp(36px, 3.1vw, 56px);
  line-height: 1.2;
}

.policies-rich-text h4 {
  margin: 18px 0 8px;
  color: #0e6ba8;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.25;
}

.policies-rich-text p,
.policies-rich-text li {
  margin: 0 0 8px;
  color: #30353b;
  font-size: clamp(20px, 1.7vw, 29px);
  line-height: 1.8;
}

.policies-rich-text ul {
  margin: 0;
  padding-inline-start: 22px;
}

.policies-footer {
  margin-top: 24px;
}

.policies-footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 16px;
}

.policies-footer-block h5 {
  margin: 0 0 8px;
  color: #0e6ba8;
  font-size: 41px;
  line-height: 1;
}

.policies-footer-block p {
  margin: 0;
  color: #343f4b;
  font-size: 20px;
  line-height: 1.6;
}

.policies-footer-socials {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.policies-footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
}

.policies-footer-socials img {
  width: 100%;
  height: 100%;
}

.policies-footer-brand {
  text-align: end;
}

.policies-footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.policies-footer-brand span {
  display: block;
  font-family: 'BalooBhai2Web', 'RabarWeb', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 0.9;
  color: #0e6ba8;
}

.policies-footer-copy {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: #4a5563;
}

@media (max-width: 980px) {
  .policies-main {
    min-height: auto;
  }

  .policies-screen .header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .policies-screen .nav {
    justify-content: center;
  }

  .policies-main-tabs {
    grid-template-columns: 1fr;
  }

  .policies-main-tabs .tab {
    border-radius: 12px;
    min-height: 48px;
  }

  .policies-intro-box p,
  .policies-table-head span,
  .policies-table-scroll td,
  .policies-rich-text p,
  .policies-rich-text li,
  .policies-footer-block p,
  .policies-footer-block h5 {
    font-size: 16px;
  }

  .policies-rich-text h3,
  .policies-rich-text h4,
  .policies-strip-title {
    font-size: 28px;
  }

  .policies-footer-main {
    grid-template-columns: 1fr;
  }

  .policies-footer-brand {
    text-align: center;
  }
}

