/* ===== Design Tokens ===== */
:root {
  --background: oklch(0.985 0.002 240);
  --foreground: oklch(0.15 0.03 240);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.15 0.03 240);
  --primary: oklch(0.35 0.06 195);
  --primary-foreground: oklch(0.98 0.005 200);
  --muted: oklch(0.96 0.005 240);
  --muted-foreground: oklch(0.50 0.03 240);
  --border: oklch(0.92 0.008 240);
  --hero-bg: oklch(0.28 0.045 195);
  --hero-fg: oklch(0.98 0.005 200);
  --section-alt: oklch(0.97 0.003 240);
  --footer-bg: oklch(0.18 0.035 200);
  --footer-fg: oklch(0.98 0.005 200);
  --footer-link: oklch(0.55 0.12 195);
  --font-heading: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --radius: 0.625rem;

  /* Jet Bank primitives */
  --_primitives---colors--white: #fff;
  --_primitives---colors--neutral-darkest: #010909;
  --_primitives---colors--neutral-lightest: #f2f2f2;
  --_primitives---colors--gallery: #efefef;
  --_primitives---colors--cod-gray: #0c0c0c;
  --_primitives---opacity--transparent: transparent;
  --_primitives---opacity--white-20: #fff3;
  --_primitives---opacity--neutral-darkest-15: #01090926;
  --_ui-styles---radius--large: 36px;
  --_ui-styles---stroke--border-width: 1px;

  /* Jet Bank color schemes */
  --color-scheme-1--text: #010909;
  --color-scheme-1--background: var(--_primitives---colors--white);
  --color-scheme-1--border: var(--_primitives---opacity--neutral-darkest-15);
  --color-scheme-1--foreground: var(--_primitives---colors--neutral-lightest);
  --color-scheme-4--background: var(--_primitives---colors--gallery);
  --color-scheme-4--text: var(--_primitives---colors--cod-gray);
  --color-scheme-4--foreground: var(--_primitives---colors--white);
  --color-scheme-4--border: var(--_primitives---opacity--transparent);
  --color-scheme-4--accent: #2a3e5b;
  --color-scheme-5--background: var(--_primitives---colors--cod-gray);
  --color-scheme-5--text: var(--_primitives---colors--white);
  --color-scheme-5--foreground: var(--_primitives---colors--cod-gray);
  --color-scheme-5--border: var(--_primitives---opacity--white-20);
  --color-scheme-5--accent: #2a3e5b;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { border-color: var(--border); box-sizing: border-box; margin: 0; padding: 0; }

/* ===== Jet Bank Layout Utilities ===== */
.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}
.padding-medium {
  padding: 2rem;
}
.padding-large {
  padding: 3rem;
}
.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}
.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.margin-xsmall {
  margin: 1rem 0;
}

body {
  background-color: var(--color-scheme-1--background);
  color: var(--color-scheme-1--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Layout ===== */
.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-1 { z-index: 1; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-0 { height: 0; }
.w-0 { width: 0; }
.max-w-none { max-width: none; }
.object-cover { object-fit: cover; }
.object-top { object-position: top; }
.object-contain { object-fit: contain; }
.pointer-events-none { pointer-events: none; }
.cursor-not-allowed { cursor: not-allowed; }
.shrink-0 { flex-shrink: 0; }

/* ===== Flex ===== */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 0.25rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ===== Sizing ===== */
.h-5 { height: 1.25rem; }
.w-12 { width: 3rem; }
.h-80 { height: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

/* ===== Padding ===== */
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-32 { padding-top: 8rem; }
.pl-5 { padding-left: 1.25rem; }
.pr-4 { padding-right: 1rem; }

/* ===== Margin ===== */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-4 { margin-left: 1rem; }

/* ===== Background ===== */
.bg-background { background-color: var(--background); }
.bg-hero-bg { background-color: var(--hero-bg); }
.bg-section-alt { background-color: var(--section-alt); }
.bg-footer-bg { background-color: var(--footer-bg); }
.bg-card { background-color: var(--card); }
.bg-footer-link { background-color: var(--footer-link); }

/* ===== Text ===== */
.text-hero-fg { color: var(--hero-fg); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-footer-link { color: var(--footer-link); }
.text-white { color: #fff; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.text-7xl { font-size: 4.5rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-heading { font-family: var(--font-heading); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: 0.025em; }
.underline { text-decoration: underline; }
.list-decimal { list-style: decimal; }
.list-decimal li { margin-bottom: 0.5rem; }

/* ===== Borders ===== */
.rounded-md { border-radius: 0.375rem; }
.rounded-2xl { border-radius: 1rem; }
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-border { border-color: var(--border); }
.border-foreground { border-color: var(--foreground); }

/* ===== Effects ===== */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.opacity-40 { opacity: 0.4; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.transition-opacity { transition: opacity 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease; }
.hover-opacity-80:hover { opacity: 0.8; }
.hover-text-footer-fg:hover { color: var(--footer-fg); }
.hover-no-underline:hover { text-decoration: none; }
.hover-bg-primary-90:hover { background-color: color-mix(in srgb, var(--primary) 90%, transparent); }

/* ===== Grain Overlay ===== */
.grain-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: url(#grain);
  mix-blend-mode: overlay;
  opacity: 0.1;
  pointer-events: none;
}

/* ===== Backdrop blur ===== */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ===== Specific ===== */
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.hidden { display: none; }

/* ===== Liquid Glass Navbar ===== */
:root {
  --lg-page-margin: clamp(12px, 2vw, 24px);
  --lg-top-offset: clamp(10px, 1.5vw, 18px);
  --lg-navbar-height: 64px;
  --lg-radius: 360px;
  --lg-blur: 9px;
  --lg-saturate: 180%;
  --lg-transition: 220ms cubic-bezier(.2, .8, .2, 1);
}

.lg-navbar-wrap {
  position: fixed;
  z-index: 9999;
  top: var(--lg-top-offset);
  left: var(--lg-page-margin);
  right: var(--lg-page-margin);
  width: auto;

  --lg-text: #101319;
  --lg-text-muted: rgba(16, 19, 25, 0.68);
  --lg-pill-hover: rgba(255, 255, 255, 0.34);
  --lg-shadow:
    0 10px 28px rgba(0, 0, 0, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.08);
}

body.lg-over-light .lg-navbar-wrap {
  --lg-text: #101319;
  --lg-text-muted: rgba(16, 19, 25, 0.68);
  --lg-pill-hover: rgba(255, 255, 255, 0.34);
}

body.lg-over-dark .lg-navbar-wrap {
  --lg-text: #ffffff;
  --lg-text-muted: rgba(255, 255, 255, 0.72);
  --lg-pill-hover: rgba(255, 255, 255, 0.12);
  --lg-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    0 1px 4px rgba(0, 0, 0, 0.10);
}

.lg-navbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: var(--lg-navbar-height);
  padding: 8px 30px;
  border-radius: var(--lg-radius);
  overflow: clip;
  isolation: isolate;
  color: var(--lg-text);
  border: 0;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.18) 40%,
      rgba(255, 255, 255, 0.08)
    );

  box-shadow:
    var(--lg-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);

  -webkit-backdrop-filter:
    blur(var(--lg-blur))
    saturate(var(--lg-saturate))
    brightness(1.08);

  backdrop-filter:
    blur(var(--lg-blur))
    saturate(var(--lg-saturate))
    brightness(1.08);

  transform: translateZ(0);

  transition:
    color var(--lg-transition),
    background var(--lg-transition),
    box-shadow var(--lg-transition);

  font-family:
    "Inter Tight",
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body.lg-over-dark .lg-navbar {
  background:
    linear-gradient(
      135deg,
      rgba(20, 22, 28, 0.34),
      rgba(20, 22, 28, 0.22) 42%,
      rgba(20, 22, 28, 0.12)
    );

  box-shadow:
    var(--lg-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.lg-navbar::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.58) 0%,
      rgba(255, 255, 255, 0.16) 24%,
      rgba(255, 255, 255, 0.04) 48%,
      rgba(255, 255, 255, 0.22) 100%
    );

  opacity: 0.55;
  mix-blend-mode: screen;
}

body.lg-over-dark .lg-navbar::before {
  opacity: 0.15;
}

.lg-navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;

  background:
    radial-gradient(
      circle at var(--lg-mx, 18%) var(--lg-my, 10%),
      rgba(255, 255, 255, 0.40),
      rgba(255, 255, 255, 0.08) 26%,
      transparent 48%
    );

  opacity: 0.42;
}

.lg-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  height: 34px;
  width: 150px;
  color: inherit;
  text-decoration: none;
}

.lg-logo-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: opacity var(--lg-transition);
}

.lg-logo-black {
  opacity: 1;
}

.lg-logo-white {
  opacity: 0;
}

body.lg-over-dark .lg-logo-black {
  opacity: 0;
}

body.lg-over-dark .lg-logo-white {
  opacity: 1;
}

.lg-nav-center,
.lg-nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lg-nav-center {
  justify-self: center;
}

.lg-nav-right {
  justify-self: end;
}

.lg-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  border: 0;

  font-family:
    "Inter Tight",
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 14px;
  font-weight: 300 !important;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;

  color: var(--lg-text-muted);
  text-decoration: none;
  background: transparent;
  cursor: pointer;

  transition:
    color var(--lg-transition),
    background var(--lg-transition),
    transform var(--lg-transition);
}

.lg-nav-link:hover {
  color: var(--lg-text);
  background: var(--lg-pill-hover);
  transform: translateY(-1px);
}

.lg-nav-link.active {
  color: var(--lg-text);
  font-weight: 400 !important;
}

.lg-menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--lg-text);
  background: transparent;
  cursor: pointer;
}

.lg-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform var(--lg-transition);
}

.lg-menu-toggle span:first-child {
  transform: translateY(-5px);
}

.lg-menu-toggle span:last-child {
  transform: translateY(5px);
}

body.lg-menu-open .lg-menu-toggle span:first-child {
  transform: rotate(45deg);
}

body.lg-menu-open .lg-menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.lg-mobile-panel {
  display: none;
}

@media (max-width: 767px) {
  :root {
    --lg-page-margin: 12px;
    --lg-top-offset: 10px;
    --lg-navbar-height: 60px;
    --lg-blur: 8px;
  }

  .lg-navbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 7px 22px;
  }

  .lg-logo {
    height: 30px;
    width: 132px;
  }

  .lg-logo-img {
    height: 30px;
    max-width: 132px;
  }

  .lg-nav-center,
  .lg-nav-right {
    display: none;
  }

  .lg-menu-toggle {
    display: inline-flex;
  }

  .lg-mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border-radius: 28px;
    border: 0;
    color: var(--lg-text);

    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.42),
        rgba(255, 255, 255, 0.18) 40%,
        rgba(255, 255, 255, 0.08)
      );

    box-shadow:
      var(--lg-shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      inset 0 -1px 0 rgba(255, 255, 255, 0.10);

    -webkit-backdrop-filter:
      blur(var(--lg-blur))
      saturate(var(--lg-saturate))
      brightness(1.08);

    backdrop-filter:
      blur(var(--lg-blur))
      saturate(var(--lg-saturate))
      brightness(1.08);

    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;

    transition:
      opacity var(--lg-transition),
      transform var(--lg-transition);
  }

  body.lg-over-dark .lg-mobile-panel {
    background:
      linear-gradient(
        135deg,
        rgba(20, 22, 28, 0.34),
        rgba(20, 22, 28, 0.22) 42%,
        rgba(20, 22, 28, 0.12)
      );
  }

  body.lg-menu-open .lg-mobile-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .lg-mobile-panel .lg-nav-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: 15px;
  }
}

/* ===== Hero ===== */
.hero { position: relative; background-color: var(--hero-bg); overflow: hidden; }
.hero-inner { position: relative; width: 100%; margin: 0 auto; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 10; margin: 0 auto; max-width: 1200px; padding: 78px 1.5rem 3rem; display: flex; flex-direction: column; gap: 2rem; }
.hero-card { display: inline-block;  padding: 1.5rem 1.5rem; max-width: 48rem; }
.hero-title { font-size: 2.25rem; font-weight: 700; color: var(--hero-fg); font-family: var(--font-heading); line-height: 1.25; }
.hero-subtitle { color: rgba(245,250,252,0.8); font-size: 1rem; margin-top: 0.75rem; }
.hero-phone-mobile { position: relative; width: 100%; height: 400px; }
.hero-phone-mobile img { position: absolute; top: 0; left: 50%; transform: translateX(-68px); width: 450px; max-width: none; object-fit: contain; object-position: top; }
.lg-hidden { display: block; }
.hero-phone-desktop { display: none; }

/* ===== Sections ===== */
/* .section-container { margin: 0 auto; max-width: 1440px; padding: 3.5rem 1.5rem; } */
.section-container { margin: 0 auto; max-width: 1200px; padding: 3.5rem 1.5rem; }

/* ===== Pay with Apple Pay ===== */
.apple-pay-section { background-color: var(--background); }
.apple-pay-inner { display: flex; flex-direction: column; align-items: center; gap: 30px; max-width: 1200px; }
.apple-pay-image { display: flex; justify-content: center; }
.apple-pay-image img { width: 100%; max-width: 510px; }
.apple-pay-content { flex: 1; }
.apple-pay-button { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 600; color: #fff; background-color: #000; border: 2px solid #000; border-radius: 20px; padding: 0.75rem 2rem; cursor: pointer; margin-bottom: 1.5rem; }
.wallet-icon { display: inline-block; width: 22px; height: 22px; object-fit: contain; }
.apple-pay-symbols { max-width: 1440px; margin: 0 auto; padding: 3.5rem 1.5rem; text-align: center; }

/* ===== Add Card ===== */
.add-card-section { background-color: var(--section-alt); }
.add-card-inner { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.add-card-content { flex: 1; order: 2; }
.add-card-image { flex: 1; display: flex; justify-content: center; order: 1; }
.add-card-image img { width: 100%; max-width: 250px; }
.add-card-steps { display: flex; align-items: center; gap: 0.5rem; }
.step-arrow { width: 1rem; height: 1rem; color: var(--muted-foreground); opacity: 0.5; flex-shrink: 0; }

/* ===== How to Pay ===== */
.how-to-pay-inner { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.how-to-pay-image { flex: 1; display: flex; justify-content: center; }
.how-to-pay-image img { width: 100%; max-width: 280px; }
.how-to-pay-content { flex: 1; }

/* ===== Get Started ===== */
.get-started-section { padding-top: 3.5rem; padding-bottom: 2.5rem; background-color: var(--section-alt); text-align: center; }

/* ===== FAQ ===== */
/* Jet Bank faq1_component styles */
.section_faq1 { background-color: var(--color-scheme-4--background); }

.padding-section-large {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.faq1_component { max-width: 48rem; margin: 0 auto; padding-top: 2rem; }

.margin-bottom.margin-xxlarge { margin-bottom: 3rem; }

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

.max-width-large { max-width: 48rem; }
.max-width-large.align-center { margin-left: auto; margin-right: auto; }

.margin-bottom.margin-small { margin-bottom: 1.5rem; }

.heading-style-h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-size-medium {
  font-size: 1.125rem;
  line-height: 1.5;
}

.text-weight-bold { font-weight: 700; }

.faq1_list {
  border-bottom: 1px solid var(--color-scheme-1--border);
}

.faq1_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.faq1_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-top: 1px solid var(--color-scheme-1--border);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  display: flex;
  text-align: left;
  width: 100%;
  color: var(--color-scheme-1--text);
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  user-select: none;
}

.faq1_question:hover {
  opacity: 0.8;
}

.faq1_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  flex-shrink: 0;
  display: flex;
  transition: transform 0.3s ease;
}

.faq1_icon-wrapper.open {
  transform: rotate(180deg);
}

.icon-embed-small.w-embed {
  display: flex;
  width: 100%;
  height: 100%;
}

.faq1_answer {
  overflow: hidden;
  width: 100%;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq1_answer.open {
  max-height: 100vh;
}

.margin-bottom.margin-small.faq-answer-wrap {
  margin-bottom: 1.5rem;
}

.text-size-regular {
  font-size: 1rem;
  line-height: 1.625;
}

@media (max-width: 991px) {
  .faq1_question {
    padding: 1rem 0;
  }
  .faq1_icon-wrapper {
    width: 1.75rem;
  }
  .padding-section-large {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .faq1_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .faq1_icon-wrapper {
    width: 1.75rem;
  }
  .heading-style-h2 {
    font-size: 2rem;
  }
}

@media (max-width: 479px) {
  .heading-style-h2 {
    font-size: 1.75rem;
  }
}

/* ===== Footer ===== */
/* ===== Footer (Jet Bank Webflow) ===== */
.footer10_component {
  align-self: stretch;
}
.footer10_component.color-scheme-4 {
  align-self: stretch;
}
.footer10_top-wrapper {
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  border: 1px solid var(--color-scheme-1--border);
  border-radius: 36px;
  background-color: var(--color-scheme-1--foreground);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 3rem;
}
.footer10_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: flex;
}
.footer10_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.footer10_right-wrapper {
  flex-direction: column;
  display: flex;
}
.footer10_credit-text {
  font-size: .875rem;
}
.footer10_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: .75rem;
  display: flex;
}
.icon-embed-xsmall {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.footer10_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}
.footer10_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.footer10_link {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
}
.footer10_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}
.footer10_logo-link {
  padding-left: 0;
}
.footer10_left-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
}
.footer10_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}
.footer10_form-block {
  max-width: 35rem;
  margin-bottom: 0;
}
.padding-top.padding-medium.footer10_bottom-wrapper-border {
  border-top: 1px solid #fff;
}
.color-scheme-4 {
  --color-scheme-1--text: var(--color-scheme-4--text);
  --color-scheme-1--background: var(--color-scheme-4--background);
  --color-scheme-1--foreground: var(--color-scheme-4--foreground);
  --color-scheme-1--border: var(--color-scheme-4--border);
  --color-scheme-1--accent: var(--color-scheme-4--accent);
  color: var(--color-scheme-1--text);
}
.color-scheme-5 {
  --color-scheme-1--text: var(--color-scheme-5--text);
  --color-scheme-1--background: var(--color-scheme-5--background);
  --color-scheme-1--foreground: var(--color-scheme-5--foreground);
  --color-scheme-1--border: var(--color-scheme-5--border);
  --color-scheme-1--accent: var(--color-scheme-5--accent);
  color: var(--color-scheme-1--text);
}
.text-weight-semibold {
  font-weight: 600;
}

/* Footer responsive */
@media (min-width: 768px) and (max-width: 991px) {
  .footer10_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }
  .footer10_social-list {
    margin-bottom: 2rem;
  }
  .footer10_bottom-wrapper {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer10_left-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 479px) and (max-width: 767px) {
  .footer10_top-wrapper {
    grid-row-gap: 3rem;
    padding: 2rem;
  }
  .footer10_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-auto-flow: row;
    justify-content: center;
    align-items: flex-start;
  }
  .footer10_credit-text {
    margin-top: 1rem;
  }
  .footer10_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .footer10_left-wrapper {
    grid-column-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 478px) {
  .footer10_top-wrapper {
    grid-row-gap: 3rem;
    padding: 1.5rem;
  }
  .footer10_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 0.75rem;
    flex-flow: column;
    grid-auto-flow: row;
    align-items: flex-start;
  }
  .footer10_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .footer10_credit-text {
    margin-top: 1rem;
  }
  .footer10_form {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .footer10_left-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }
}

/* ===== Terms ===== */
.terms-hero { position: relative; background-color: var(--hero-bg); overflow: hidden; }
.terms-hero-inner { position: relative; z-index: 10; margin: 0 auto; max-width: 1440px; padding: 8rem 1.5rem 4rem; display: flex; justify-content: center; }
.terms-hero-card { border-radius: 1rem; background-color: rgba(0,0,0,0.3); backdrop-filter: blur(4px); padding: 2.5rem 2rem; max-width: 42rem; text-align: center; color: #fff; }
.terms-list { margin-top: 0; padding-left: 1.25rem; }

/* ===== Media Queries ===== */

/* md: 768px */
@media (min-width: 768px) {
  .hero-content { padding: 124px 2rem 0; }
  .hero-card { padding: 1.5rem 2rem; }
  .hero-title { font-size: 3.75rem; }
  .hero-subtitle { font-size: 1.125rem; }
  .hero-phone-mobile { height: 420px; }
  .hero-phone-mobile img { transform: translateX(-120px); width: 660px; }
  .section-container { padding: 6rem 3rem; }
  .apple-pay-inner { flex-direction: row; gap: 40px; }
  .apple-pay-image img { max-width: 510px; }
  .add-card-inner { flex-direction: row; gap: 4rem; }
  .add-card-content { order: 1; }
  .add-card-image { order: 2; }
  .add-card-image img { max-width: 100%; }
  .how-to-pay-inner { flex-direction: row; gap: 4rem; }
  .how-to-pay-image img { max-width: 448px; }
  .get-started-section { padding-top: 6rem; padding-bottom: 4rem; }
  .padding-section-large { padding-top: 4rem; padding-bottom: 4rem; }

  .terms-hero-inner { padding: 10rem 3rem 6rem; }
  .terms-hero-card { padding: 3rem 4rem; }
  .text-2xl { font-size: 1.875rem; }
  .text-4xl { font-size: 3rem; }
  .text-5xl { font-size: 3rem; }
  .pt-32 { padding-top: 10rem; }
  .pb-16 { padding-bottom: 6rem; }
  .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pb-24 { padding-bottom: 6rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-\[15px\] { font-size: 15px; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:pr-16 { padding-right: 4rem; }
}

/* ≤767px */
@media (max-width: 767px) {
  .apple-pay-button { width: 100%; justify-content: center; }
  .section-container { padding: 2.5rem 1rem; }
  .apple-pay-symbols { padding: 2.5rem 1rem; }
  .get-started-section { padding-top: 2.5rem; padding-bottom: 2rem; }
  .hero-content { padding: 70px 1rem 2rem; }
  .add-card-image img { max-width: 200px; }
  .how-to-pay-image img { max-width: 220px; }
  .step-line { gap: 0.375rem; }
}

/* ≤479px */
@media (max-width: 479px) {
  .hero-title { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.875rem; }
  .hero-phone-mobile { height: 320px; }
  .hero-phone-mobile img { width: 360px; transform: translateX(-60px); }
  .apple-pay-button { font-size: 0.875rem; padding: 0.625rem 1rem; }
  .wallet-icon { width: 18px; height: 18px; }
  .section-container { padding: 2rem 0.75rem; }
  .apple-pay-symbols { padding: 2rem 0.75rem; }
  .faq1_component { padding-top: 1.25rem; }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .hero-content { flex-direction: row; align-items: flex-end; gap: 0; min-height: 820px; padding-bottom: 6rem; }
  .hero-card-area { flex: 1; padding-bottom: 212px; }
  .hero-phone-mobile { display: none; }
  .lg-hidden { display: none; }
  .hero-phone-desktop { display: block; position: absolute; z-index: 2; right: -450px; bottom: -420px; width: 825px; max-width: none; object-fit: contain; pointer-events: none; }
}

/* xl: 1280px */
@media (min-width: 1280px) {
  .hero-content { min-height: 900px; }
  .hero-phone-desktop { bottom: -450px; width: 937px; right: -350px; }
}

/* ===== Row helpers ===== */
.row { display: flex; flex-direction: row; }
.col { display: flex; flex-direction: column; }

/* ===== Inline SVG for grain ===== */
.grain-svg { position: absolute; width: 0; height: 0; }

/* ===== Step with inline SVG arrow ===== */
.step-line { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 1rem; color: var(--muted-foreground); }
.step-number { font-weight: 700; flex-shrink: 0; color: var(--foreground); }
.step-text { display: inline; }
