/* ============================================================
   Pakravan Capital Group — Design System
   Brand palette derived from the company logo (navy + gold)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --navy-950: #050e1d;
  --navy-900: #081a30;
  --navy-800: #0c2545;
  --navy-700: #123258;
  --blue-600: #1257c4;
  --blue-500: #1b6be0;
  --blue-100: #dbe8fb;
  --gold-500: #f5a623;
  --gold-600: #d98f0f;
  --gold-300: #ffc35c;
  --gold-tint: #fdf3e0;

  /* Neutrals */
  --ink: #0f1e33;
  --slate-700: #31415c;
  --slate-500: #52637d;
  --slate-400: #7a8aa3;
  --line: #e3eaf3;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;

  /* Semantic */
  --color-cta: var(--gold-500);
  --color-cta-hover: var(--gold-600);
  --danger: #d64545;

  /* Type */
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --header-h: 88px;
  --shadow-sm: 0 1px 2px rgba(8, 26, 48, 0.06), 0 2px 8px rgba(8, 26, 48, 0.06);
  --shadow-md: 0 6px 24px rgba(8, 26, 48, 0.1);
  --shadow-lg: 0 18px 50px rgba(8, 26, 48, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

html.has-smooth-scroll {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  color: var(--blue-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.on-dark :focus-visible {
  outline-color: var(--gold-300);
}

::selection {
  background: var(--gold-300);
  color: var(--navy-900);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease);
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  transform: translateY(0);
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-500);
}

.on-dark .eyebrow {
  color: var(--gold-300);
}

.section {
  padding: clamp(64px, 9vw, 104px) 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.section-head p {
  color: var(--slate-500);
  font-size: 1.06rem;
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: 17px 28px;
  border-radius: 999px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease), color 0.18s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(245, 166, 35, 0.38);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  box-shadow: 0 10px 26px rgba(245, 166, 35, 0.45);
}

.btn-navy {
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  background: #fff;
  color: var(--navy-900);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--navy-800);
}

.btn-sm {
  padding: 12px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 19px 34px;
  font-size: 1.04rem;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-950);
  color: #c8d6ea;
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}

.topbar a {
  color: #e7eefb;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar a:hover {
  color: var(--gold-300);
  text-decoration: none;
}

.topbar svg {
  width: 13px;
  height: 13px;
  color: var(--gold-300);
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-tagline {
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding: 6px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  line-height: 1;
}

.brand img {
  height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s var(--ease);
}

.brand:hover {
  text-decoration: none;
}

.brand:hover img {
  transform: scale(1.02);
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--slate-700);
  border-radius: 8px;
}

.main-nav a:hover {
  color: var(--navy-900);
  background: var(--bg-soft);
  text-decoration: none;
}

.main-nav a[aria-current="page"] {
  color: var(--blue-600);
  background: var(--blue-100);
}

.header-cta {
  flex: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile navigation overlay ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 28px;
  background: linear-gradient(165deg, var(--navy-950) 0%, #06152b 50%, var(--navy-900) 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease),
    visibility 0.24s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 8px;
}

.mobile-nav-brand {
  display: inline-flex;
  align-items: center;
}

.mobile-nav-brand img {
  height: 42px;
  width: auto;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
}

.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.05);
}

.mobile-nav-close:active {
  transform: scale(0.95);
}

.mobile-nav-close svg {
  width: 22px;
  height: 22px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.18s var(--ease), padding-left 0.18s var(--ease);
}

.mobile-nav ul a svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
}

.mobile-nav ul a[aria-current="page"] {
  color: var(--gold-300);
}

.mobile-nav a:hover {
  text-decoration: none;
}

.mobile-nav-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-cta .btn {
  padding: 14px 20px;
  font-size: 0.95rem;
}

.mobile-nav-contact {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 9px;
  font-size: 0.88rem;
  color: #b9c9e2;
}

.mobile-nav-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eaf1fc;
  transition: color 0.18s var(--ease);
}

.mobile-nav-contact a:hover {
  color: var(--gold-300);
}

.mobile-nav-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
  flex: none;
}

body.nav-locked {
  overflow: hidden;
}

/* ---------- Sticky mobile CTA bar ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(8, 26, 48, 0.12);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta .btn {
  padding: 15px 12px;
  font-size: 0.93rem;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(1100px 620px at 82% -10%, #17438f 0%, rgba(23, 67, 143, 0) 60%),
    radial-gradient(900px 540px at -12% 108%, #0e3a7e 0%, rgba(14, 58, 126, 0) 55%),
    linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
  padding: clamp(72px, 10vw, 128px) 0 clamp(80px, 11vw, 136px);
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4.4vw, 3.45rem);
  margin-bottom: 20px;
  overflow-wrap: break-word;
}

.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  color: #c3d2e8;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  max-width: 54ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: #9fb3d1;
  font-size: 0.9rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
  flex: none;
}

/* Hero visual — layered business cards */
.hero-visual {
  position: relative;
  justify-self: center;
  width: min(480px, 100%);
  padding: 10px 0;
}

.cc-scene {
  position: relative;
  aspect-ratio: 1.28;
  perspective: 1200px;
}

.cc {
  position: absolute;
  width: 82%;
  aspect-ratio: 1.586;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(2, 10, 24, 0.5), 0 6px 14px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  user-select: none;
}

.cc-inner {
  position: absolute;
  inset: 7px;
  z-index: 2;
  border-radius: 11px;
  padding: clamp(12px, 2.5vw, 18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* BACK CARD — Premium Blue 0% APR Business Credit Card */
.cc-back {
  top: 0;
  right: 0;
  background:
    radial-gradient(130% 120% at 85% 15%, #1d64db 0%, #1049b0 40%, #0c337c 75%, #061942 100%);
  border: 1px solid rgba(170, 218, 255, 0.45);
  color: #fff;
  transform: rotate(7.5deg);
  animation: cc-float-back 7.5s ease-in-out infinite;
}

/* Guilloche & Security Grid Overlay for Back Card */
.cc-pattern-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(147, 197, 253, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 197, 253, 0.08) 1px, transparent 1px);
  background-size: 24px 24px, 12px 12px, 12px 12px;
  pointer-events: none;
}

.cc-back .cc-inner {
  border: 1px solid rgba(191, 225, 255, 0.4);
  background: rgba(6, 22, 58, 0.32);
}

.cc-badge-apr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.apr-pill {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.68rem, 1.4vw, 0.8rem);
  letter-spacing: 0.08em;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.apr-sub {
  font-family: var(--font-display);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #93c5fd;
  text-transform: uppercase;
}

.cc-apr-headline {
  margin: 2px 0;
}

.cc-apr-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(2, 12, 32, 0.7);
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.cc-apr-num span {
  font-size: 0.56em;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #93c5fd;
}

.cc-apr-label {
  font-size: clamp(0.54rem, 1.1vw, 0.64rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #bfdbfe;
  margin-top: 3px;
  text-transform: uppercase;
}

.cc-num-back {
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  letter-spacing: 0.2em;
  color: rgba(224, 238, 255, 0.85);
}

/* FRONT CARD — Pakravan Capital Signature Obsidian & Gold Card */
.cc-front {
  bottom: 2%;
  left: 0;
  background:
    radial-gradient(130% 150% at 100% 0%, rgba(27, 107, 224, 0.45) 0%, transparent 60%),
    linear-gradient(155deg, #102648 0%, #08172c 50%, #030a14 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 65px rgba(1, 7, 16, 0.75), 0 8px 22px rgba(0, 0, 0, 0.45);
  color: #fff;
  transform: rotate(-3.5deg);
  animation: cc-float-front 7.5s ease-in-out 1.2s infinite;
}

.cc-front .cc-inner {
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.cc-mid-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2px 0;
}

.cc-status-pill {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-300);
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.35);
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* Realistic EMV Chips */
.cc-chip {
  width: 38px;
  height: 28px;
  border-radius: 6px;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 2px 5px rgba(0, 0, 0, 0.35);
  flex: none;
}

.cc-chip-gold {
  background: linear-gradient(135deg, #ffe5ab 0%, #d4982a 50%, #f7c768 100%);
  border: 1px solid rgba(138, 92, 10, 0.6);
}

.cc-chip-silver {
  background: linear-gradient(135deg, #ffffff 0%, #b8cce4 50%, #e2e8f0 100%);
  border: 1px solid rgba(100, 116, 139, 0.6);
}

.chip-circuit {
  position: absolute;
  inset: 4px 6px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 3px;
}

.chip-circuit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  right: -6px;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}

.chip-circuit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  bottom: -4px;
  width: 1px;
  background: rgba(0, 0, 0, 0.3);
}

.cc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cc-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.cc-brand small {
  display: block;
  font-weight: 600;
  font-size: 0.6em;
  letter-spacing: 0.3em;
  color: var(--gold-300);
}

.cc-contactless svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.75);
}

.cc-front .cc-contactless svg {
  color: var(--gold-300);
}

.cc-num {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.8vw, 1.08rem);
  letter-spacing: 0.22em;
  color: #f1f5f9;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.cc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: #9fb3d1;
  text-transform: uppercase;
}

.cc-bottom strong {
  display: block;
  color: #ffffff;
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.cc-exp {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #cbd5e1;
}

/* Animations */
@keyframes cc-float-back {
  0%, 100% {
    transform: rotate(7.5deg) translateY(0);
  }
  50% {
    transform: rotate(8.5deg) translateY(-9px);
  }
}

@keyframes cc-float-front {
  0%, 100% {
    transform: rotate(-3.5deg) translateY(0);
  }
  50% {
    transform: rotate(-4.2deg) translateY(-11px);
  }
}

/* ---------- Value strip ---------- */
.value-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  position: relative;
  z-index: 10;
}

.value-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 44px);
  padding: clamp(28px, 4vw, 36px) 0;
  align-items: center;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.value-img-wrap {
  flex: none;
  width: 72px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(12, 37, 69, 0.12));
  transition: transform 0.25s var(--ease);
}

.value-item:hover .value-img-wrap img {
  transform: translateY(-2px) scale(1.04);
}

.value-item-text {
  flex: 1;
  min-width: 0;
}

.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}

.value-item span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--slate-500);
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--slate-500);
  font-size: 0.95rem;
  margin: 0;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-600);
}

.step-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s var(--ease);
}

.step-link:hover svg {
  transform: translateX(3px);
}

/* ---------- Solution cards ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}

.solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--gold-tint), #fbe6c2);
  color: var(--gold-600);
  margin-bottom: 18px;
}

.solution-icon svg {
  width: 25px;
  height: 25px;
}

.solution-card h3 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}

.solution-card p {
  color: var(--slate-500);
  font-size: 0.94rem;
  margin-bottom: 16px;
}

.solution-card .step-link {
  margin-top: auto;
}

/* Solutions page variant: list-style rows */
.solution-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px 24px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 30px;
  box-shadow: var(--shadow-sm);
}

.solution-row + .solution-row {
  margin-top: 18px;
}

.solution-row .solution-icon {
  margin-bottom: 0;
}

.solution-row h3 {
  margin-bottom: 6px;
}

.solution-row p {
  color: var(--slate-500);
  font-size: 0.96rem;
  margin: 0;
}

.solution-row .row-meta {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 999px;
  padding: 5px 12px;
}

.chip svg {
  width: 12px;
  height: 12px;
}

.solution-row .row-cta {
  align-self: center;
}

/* ---------- Compare (old way vs our way) ---------- */
.section-compare {
  background: #ffffff;
  position: relative;
  padding-top: clamp(60px, 8vw, 96px);
  padding-bottom: clamp(60px, 8vw, 96px);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 16px;
}

.compare-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4.5vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* Old / Conventional Card */
.compare-card.compare-old {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.compare-card.compare-old:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

/* Pakravan Strategic Advantage Card */
.compare-card.compare-new {
  background: linear-gradient(160deg, #0a1e3b 0%, #061529 60%, #020914 100%);
  border: 1px solid rgba(245, 166, 35, 0.38);
  box-shadow: 0 20px 50px rgba(2, 9, 20, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  color: #ffffff;
  overflow: hidden;
}

.compare-card.compare-new::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.compare-card.compare-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(2, 9, 20, 0.5), 0 0 0 1px rgba(245, 166, 35, 0.55) inset;
}

/* Card Header */
.compare-card-header {
  margin-bottom: 26px;
}

.compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pill-neutral {
  background: #edf2f7;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.pill-gold {
  background: rgba(245, 166, 35, 0.16);
  color: var(--gold-300);
  border: 1px solid rgba(245, 166, 35, 0.42);
}

.compare-title {
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 6px;
}

.compare-card.compare-old .compare-title {
  color: var(--ink);
}

.compare-card.compare-new .compare-title {
  color: #ffffff;
}

.compare-subtitle {
  font-size: 0.94rem;
  line-height: 1.45;
  margin: 0;
}

.compare-card.compare-old .compare-subtitle {
  color: var(--slate-500);
}

.compare-card.compare-new .compare-subtitle {
  color: #94a3b8;
}

/* Compare List */
.compare-list {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  flex: 1;
}

.compare-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.45;
}

.compare-card.compare-old .compare-list li {
  color: #334155;
  font-weight: 500;
}

.compare-card.compare-new .compare-list li {
  color: #f1f5f9;
  font-weight: 500;
}

.compare-bullet {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.bullet-neutral {
  background: #e2e8f0;
  color: #64748b;
}

.bullet-neutral svg {
  width: 14px;
  height: 14px;
}

.bullet-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #050e1d;
  box-shadow: 0 2px 10px rgba(245, 166, 35, 0.4);
}

.bullet-gold svg {
  width: 15px;
  height: 15px;
  stroke: #050e1d;
}

/* Footer elements */
.compare-footer-note {
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.45;
}

.compare-card-action {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-card-action .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- About Page Apply Card ---------- */
.about-apply-card {
  background: linear-gradient(160deg, #0a1e3b 0%, #061529 60%, #020914 100%);
  border: 1px solid rgba(245, 166, 35, 0.38);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4.5vw, 44px);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(3, 10, 24, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-apply-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.about-apply-card h3 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.about-apply-card p {
  color: #d1e0f3;
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 22px;
}

.about-apply-highlights {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-apply-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #f1f5f9;
  font-weight: 500;
}

.about-apply-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex: none;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold-500), var(--gold-300) 70%);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 85% 20%, rgba(255, 255, 255, 0.5), transparent 65%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(40px, 6vw, 64px) 0;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}

.cta-band p {
  margin: 0;
  color: rgba(8, 26, 48, 0.75);
  font-size: 1.02rem;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex: none;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(900px 480px at 88% -20%, #17438f 0%, rgba(23, 67, 143, 0) 60%),
    linear-gradient(155deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 25%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  padding: clamp(60px, 8vw, 96px) 0;
  max-width: 780px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 16px;
}

.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  color: #c3d2e8;
  font-size: 1.08rem;
  max-width: 60ch;
  margin-bottom: 0;
}

.page-hero .hero-actions {
  margin-top: 28px;
  margin-bottom: 0;
}

/* ---------- Feature / checklist blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-list svg {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-600);
  flex: none;
  margin-top: 2px;
}

.check-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 2px;
}

.check-list span {
  color: var(--slate-500);
  font-size: 0.93rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}

.value-card .solution-icon {
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.value-card p {
  color: var(--slate-500);
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-card .solution-icon {
  margin-bottom: 0;
  flex: none;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-card p {
  color: var(--slate-500);
  font-size: 0.93rem;
  margin-bottom: 6px;
}

.contact-card a.label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}

.contact-card a.label:hover {
  color: var(--blue-600);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
  flex: none;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
}

.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--slate-500);
  font-size: 0.96rem;
}

.faq-item .faq-body p:last-child {
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #a9bcd8;
  font-size: 0.92rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(52px, 7vw, 72px) 0 44px;
}

.footer-brand .brand-chip {
  display: inline-block;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  margin-bottom: 20px;
}

.footer-brand .brand-chip img {
  height: 42px;
  width: auto;
}

.footer-brand p {
  max-width: 34ch;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 11px;
}

.footer-col a {
  color: #a9bcd8;
}

.footer-col a:hover {
  color: var(--gold-300);
  text-decoration: none;
}

.footer-contact li a,
.footer-col address {
  font-style: normal;
}

.footer-contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold-500);
  flex: none;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 calc(24px + env(safe-area-inset-bottom));
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
  color: #7e93b4;
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #66799b;
  max-width: 90ch;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cc-back,
  .cc-front,
  .hero-badge {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  :root {
    --header-h: 84px;
  }

  .brand img {
    height: 60px;
    max-width: calc(100vw - 110px);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 1020px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: clamp(48px, 7vw, 72px);
    padding-bottom: clamp(52px, 8vw, 80px);
    gap: 36px;
  }

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

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(420px, 92%);
    margin-inline: auto;
  }

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

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

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

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

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  :root {
    --header-h: 80px;
  }

  .brand img {
    height: 58px;
    max-width: calc(100vw - 105px);
  }
}

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

  body {
    /* room for the sticky action bar */
    padding-bottom: 74px;
  }

  .sticky-cta {
    display: grid;
  }

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

  .cta-band-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-band-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-band-actions .btn {
    width: 100%;
  }

  .solution-row {
    grid-template-columns: 52px 1fr;
    padding: 24px 20px;
  }

  .solution-row .row-cta {
    grid-column: 2;
    justify-self: start;
    margin-top: 16px;
  }

  .solution-row .row-meta {
    grid-column: 1 / -1;
  }

  .value-strip-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .value-item {
    gap: 16px;
  }

  .value-img-wrap {
    width: 62px;
    height: 68px;
  }

  .hero-visual {
    width: min(370px, 94%);
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 78px;
  }

  .brand img {
    height: 56px;
    max-width: calc(100vw - 95px);
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 6.4vw, 2.15rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .page-hero .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .steps-grid,
  .solutions-grid,
  .values-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .mobile-nav ul a {
    font-size: 1.25rem;
    padding: 14px 4px;
  }

  .faq-item summary {
    padding: 17px 18px;
    font-size: 0.95rem;
  }

  .faq-item .faq-body {
    padding: 0 18px 17px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    width: min(330px, 100%);
  }
}

@media (max-width: 400px) {
  :root {
    --header-h: 72px;
  }

  .brand img {
    height: 50px;
    max-width: calc(100vw - 85px);
  }

  .hero-visual {
    width: min(290px, 100%);
  }

  .cc-inner {
    inset: 5px;
    border-radius: 13px;
    padding: 10px;
  }

  .cc-chip {
    width: 32px;
    height: 24px;
  }

  .apr-pill {
    font-size: 0.64rem;
    padding: 2px 7px;
  }

  .cc-apr-num {
    font-size: 1.1rem;
  }
}
