@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ===== COLORS & BASE STYLES ===== */
:root {
  --ink: #f3f7fb;
  --muted: #a3b1c1;
  --cream: #05080e;
  --lime: #f3c726;
  --line: #22334a;
  --white: #fff;
  --dark: #02060c;
  --blue: #2f93c0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
}
/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 14, 0.88);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  align-items: center;
  height: 92px;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.06em;
}
.official-logo {
  display: block;
  height: 68px;
  width: auto;
}
.footer .official-logo {
  height: 44px;
}
.dashboard-card {
  background: #173c68;
  box-shadow: 0 30px 50px rgba(22, 54, 92, 0.2);
}
.visual-glow {
  display: none;
}
.chart circle {
  stroke: #173c68;
}
.small-logo {
  height: 24px;
  width: auto;
  image-rendering: auto;
}
.company-mark img {
  width: 180px;
  max-width: 100%;
  height: auto;
  background: #fff;
  padding: 14px 22px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  image-rendering: auto;
}
.contact-section {
  background: #173c68;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: 'Space Grotesk';
  font-size: 17px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  color: #52645c;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a,
.footer-links a,
.text-link,
.arrow-link {
  transition: color 0.2s ease;
}
.nav-links a:hover,
.footer-links a:hover,
.text-link:hover,
.arrow-link:hover {
  color: #5e8f17;
}
/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 4px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 18px;
  line-height: 0;
}
.button-small {
  padding: 11px 16px;
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-primary {
  background: var(--lime);
  color: var(--ink);
}
.button-light {
  background: var(--white);
  color: var(--ink);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
}
/* ===== HERO (top section) ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  align-items: center;
  gap: 72px;
  min-height: 650px;
  padding: 42px 0 88px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  color: #718078;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
}
.eyebrow span {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #9dbf42;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.07em;
  line-height: 0.99;
}
h1 {
  max-width: 600px;
  margin-bottom: 26px;
  font-size: clamp(56px, 7vw, 92px);
}
h1 em,
h2 em {
  color: #8aae37;
  font-style: normal;
}
.hero-text {
  max-width: 460px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.text-link span,
.arrow-link span {
  font-size: 18px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
  color: #89958f;
  font-size: 12px;
}
.trust-row p {
  margin: 0;
}
.trust-row strong {
  color: var(--ink);
}
.avatar-stack {
  display: flex;
}
.avatar-stack i {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  margin-left: -5px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: #d6e0d4;
  color: #526259;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}
.avatar-stack i:first-child {
  margin-left: 0;
  background: #e4b9a0;
}
.avatar-stack i:nth-child(2) {
  background: #b4c8d4;
}
.avatar-stack i:nth-child(3) {
  background: #dac68c;
}
.avatar-stack i:last-child {
  background: var(--ink);
  color: var(--lime);
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.store-badge {
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 8px 18px rgba(2, 9, 20, 0.32);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(2, 9, 20, 0.4);
}
.store-badge:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.store-badge img {
  display: block;
  height: 44px;
  width: auto;
}
.hero-visual {
  position: relative;
  min-height: 475px;
  padding: 32px 0 45px 32px;
}
.visual-glow {
  position: absolute;
  inset: 18px 0 0 48px;
  background: radial-gradient(circle at 60% 48%, rgba(184, 243, 74, 0.34), transparent 57%);
}
.dashboard-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 28px 27px 20px;
  background: #203d34;
  color: #fff;
  box-shadow: 0 30px 50px rgba(33, 57, 48, 0.2);
  transform: rotate(2deg);
}
.dashboard-top,
.chart-labels,
.chart-months,
.dashboard-bottom,
.terminal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-label,
.chart-labels small,
.chart-months,
.metric span {
  display: block;
  color: #aec0b9;
  font-size: 10px;
}
.dashboard-top strong {
  display: block;
  margin-top: 7px;
  font-family: 'Space Grotesk';
  font-size: 30px;
  letter-spacing: -0.05em;
}
.icon-button {
  border: 0;
  background: none;
  color: #b7c6bf;
  letter-spacing: 2px;
}
.chart-wrap {
  padding: 48px 0 14px;
}
.chart-labels span {
  font-size: 12px;
}
.chart {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 16px;
  overflow: visible;
}
.chart-area {
  fill: url(#area);
}
.chart-line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
}
.chart circle {
  fill: var(--lime);
  stroke: #213e35;
  stroke-width: 5;
}
.chart-months {
  margin-top: 7px;
}
.dashboard-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  gap: 15px;
}
.metric {
  flex: 1;
}
.metric strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}
.floating-note {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 205px;
  padding: 13px 14px;
  border: 1px solid #e1e8df;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 18px 35px rgba(30, 56, 45, 0.16);
  font-size: 11px;
}
.floating-note strong,
.floating-note small {
  display: block;
}
.floating-note small {
  margin-top: 3px;
  color: #86918c;
  font-size: 10px;
}
.floating-note b {
  margin-left: auto;
  color: #79a52c;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}
.visual-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 18px;
  color: #7f8c84;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
}
.visual-caption span:first-child {
  color: #90b337;
}
/* ===== PARTNER LOGO STRIP ===== */
.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  color: #839088;
}
.logo-row span {
  max-width: 130px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 700;
}
.logo-row strong {
  font-family: 'Space Grotesk';
  font-size: 19px;
  color: #9aa59d;
  letter-spacing: -0.06em;
}
.logo-row strong:nth-child(3) {
  font-weight: 500;
}
.logo-row strong:nth-child(5) {
  letter-spacing: 0.13em;
  font-size: 14px;
}
/* ===== PRODUCTS SECTION ===== */
.section {
  padding: 140px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 62px;
}
.section-heading h2,
.company-copy h2,
.solution-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 67px);
}
.section-heading .eyebrow {
  margin-bottom: 5px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8f8f2;
}
.feature-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  grid-column: span 2;
  min-height: 280px;
}
.feature-number {
  margin-bottom: 28px;
  color: #91a08f;
  font-size: 11px;
}
.feature-card h3 {
  margin-bottom: 12px;
  font-family: 'Space Grotesk';
  font-size: 25px;
  letter-spacing: -0.05em;
}
.feature-card p {
  max-width: 370px;
  color: var(--muted);
  font-size: 14px;
}
.arrow-link {
  margin-top: 14px;
}
.mini-terminal {
  align-self: end;
  max-width: 270px;
  padding: 18px;
  border-radius: 8px;
  background: #e8eee5;
  box-shadow: 0 14px 20px rgba(39, 61, 47, 0.08);
}
.terminal-head {
  color: #78887b;
  font-size: 9px;
}
.brand-mark.small {
  width: 19px;
  height: 19px;
  font-size: 11px;
}
.green-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94c344;
}
.terminal-amount {
  margin: 30px 0 10px;
  font-family: 'Space Grotesk';
  font-size: 31px;
  letter-spacing: -0.06em;
}
.terminal-status {
  color: #6b8d25;
  font-size: 10px;
  font-weight: 700;
}
.bar-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 85px;
  margin-top: 40px;
  border-bottom: 1px solid #d3dbd1;
}
.bar-chart i {
  flex: 1;
  min-width: 11px;
  border-radius: 3px 3px 0 0;
  background: #9fcf40;
}
.bar-chart i:nth-child(odd) {
  background: #d2e1c5;
}
.growth-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 14px;
  border-top: 2px solid #a6cf5a;
  color: #839087;
  font-size: 11px;
}
.growth-line b {
  position: absolute;
  top: -17px;
  right: 18%;
  color: #7ca72a;
  font-size: 24px;
}
.quickpay-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}
.quickpay-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #edf3fa;
}
.quickpay-gallery img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.quickpay-gallery figure:hover img {
  transform: scale(1.04);
}
.quickpay-gallery figcaption {
  padding: 12px 15px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.official-cover {
  position: relative;
  overflow: hidden;
  height: 210px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--dark);
}
.official-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}
.official-cover span {
  position: absolute;
  left: 26px;
  bottom: 22px;
  color: #fff;
  font-family: 'Space Grotesk';
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: -0.04em;
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 28px 0 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-row div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
.proof-row div:last-child {
  border-right: 0;
}
.proof-row strong {
  color: var(--blue);
  font-family: 'Space Grotesk';
  font-size: 24px;
  letter-spacing: -0.05em;
}
.proof-row span {
  color: var(--muted);
  font-size: 11px;
}
/* ===== HOW IT WORKS (3 steps) ===== */
.process-section {
  padding: 120px 0;
  background: #eef3f9;
}
.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.process-heading h2 {
  margin: 0;
  font-family: 'Space Grotesk';
  font-size: clamp(43px, 5vw, 67px);
  letter-spacing: -0.07em;
  line-height: 0.99;
}
.process-heading > p:not(.eyebrow) {
  max-width: 330px;
  margin: 26px 0 0;
  color: var(--muted);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.process-step {
  min-height: 250px;
  padding: 22px;
  border: 1px solid #d7e1ed;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
}
.process-step > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}
.step-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 31px 0 25px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}
.process-step h3 {
  margin-bottom: 9px;
  font-family: 'Space Grotesk';
  font-size: 18px;
  letter-spacing: -0.04em;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
/* ===== MERCHANT SOLUTIONS ===== */
.dark-section {
  padding: 135px 0;
  background: var(--dark);
  color: #f4f5ed;
}
.solution-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.eyebrow.light {
  color: #a2b4a9;
}
.solution-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  max-width: 390px;
  margin: 28px 0 34px;
  color: #aebdb4;
}
.solution-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.solution-item {
  display: grid;
  grid-template-columns: 35px 1fr 20px;
  gap: 20px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #a3b1aa;
}
.solution-item span {
  font-size: 11px;
}
.solution-item h3 {
  margin: 0 0 7px;
  color: #fff;
  font-family: 'Space Grotesk';
  font-size: 22px;
  letter-spacing: -0.04em;
}
.solution-item p {
  max-width: 390px;
  margin: 0;
  font-size: 13px;
}
.solution-item b {
  color: var(--lime);
  font-size: 20px;
  font-weight: 400;
}
.solution-item:not(.active) h3 {
  color: #a3b1aa;
}
/* ===== ABOUT / COMPANY ===== */
.company-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 550px;
}
.company-mark {
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: 'Space Grotesk';
  font-size: 155px;
  letter-spacing: -0.15em;
  text-indent: -12px;
}
.company-copy > p:not(.eyebrow) {
  max-width: 400px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 17px;
}
/* ===== CONTACT + FORM ===== */
.contact-section {
  padding: 120px 0;
  background: #203c34;
  color: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 360px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 55px;
  color: var(--lime);
  font-size: 14px;
}
.contact-details span {
  color: #a9bbb1;
  font-size: 12px;
}
.contact-map {
  margin-top: 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #4a6a5b;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-bottom: 8px;
  color: #b4c1ba;
  font-size: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 23px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #718c7e;
  outline: none;
  background: transparent;
  color: #fff;
  font: inherit;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f998d;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
}
.contact-form .button {
  align-self: flex-start;
  margin-top: 8px;
}
.contact-form .copy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #b4c1ba;
  font-size: 13px;
  cursor: pointer;
}
.contact-form .copy-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid #718c7e;
  background: transparent;
  accent-color: var(--lime);
  cursor: pointer;
}
.contact-form .copy-check input:focus {
  border-color: var(--lime);
}
.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--lime);
  font-size: 12px;
}
/* ===== FOOTER ===== */
.footer {
  padding: 30px 0;
  background: #0f211c;
  color: #91a39a;
}
.footer-row {
  display: flex;
  align-items: center;
  gap: 35px;
}
.footer .brand {
  color: #fff;
}
.footer p {
  margin: 0;
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 12px;
}
.footer small {
  font-size: 11px;
}
/* ===== PAGE SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.75s ease forwards;
}
.reveal-delay {
  animation-delay: 0.15s;
}
.reveal-delay-2 {
  animation-delay: 0.3s;
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keep the whole page within the QuickPay Iraq blue and yellow identity. */
h1 em,
h2 em {
  color: #d2aa16;
}
.eyebrow span {
  background: var(--lime);
}
.nav-links,
.logo-row {
  color: #536a83;
}
.nav-links a:hover,
.footer-links a:hover,
.text-link:hover,
.arrow-link:hover {
  color: #b18b00;
}
.dashboard-card {
  background: #173c68;
  box-shadow: 0 30px 50px rgba(16, 42, 75, 0.2);
}
.visual-glow {
  background: radial-gradient(circle at 60% 48%, rgba(243, 199, 39, 0.34), transparent 57%);
}
.chart circle {
  stroke: #173c68;
}
.floating-note {
  box-shadow: 0 18px 35px rgba(16, 42, 75, 0.16);
}
.feature-card {
  background: #fbfcfe;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: #c6d5e6;
  box-shadow: 0 18px 35px rgba(16, 42, 75, 0.08);
}
.mini-terminal {
  background: #edf3fa;
  box-shadow: 0 14px 20px rgba(16, 42, 75, 0.08);
}
.green-dot {
  background: var(--lime);
}
.terminal-status {
  color: #a17e00;
}
.bar-chart i {
  background: #e7bd20;
}
.bar-chart i:nth-child(odd) {
  background: #c7d9ea;
}
.growth-line {
  border-top-color: #d2aa16;
}
.growth-line b {
  color: #b18b00;
}
.contact-section {
  background: var(--dark);
}
.footer {
  background: #0b1f38;
}
/* ===== AI SUPPORT CHAT (floating button + chat panel) ===== */
.ai-support-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 6;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 42, 75, 0.2);
  font:
    700 13px 'DM Sans',
    sans-serif;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.ai-support-button span {
  font-size: 23px;
  line-height: 1;
}
.ai-support-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(16, 42, 75, 0.26);
}
.ai-support-button:focus-visible {
  outline: 3px solid rgba(243, 199, 39, 0.5);
  outline-offset: 3px;
}
.ai-support-panel {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 6;
  width: min(360px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid #d9e3ee;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(16, 42, 75, 0.2);
}
.ai-support-panel[hidden] {
  display: none;
}
.ai-support-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ai-support-panel-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
}
.ai-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #50b878;
  box-shadow: 0 0 0 4px #e5f5eb;
}
.ai-close-button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #edf3f9;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.ai-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 300px;
  min-height: 154px;
  overflow-y: auto;
  padding: 2px 2px 10px;
}
.ai-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.ai-message-assistant {
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  background: #edf3f9;
}
.ai-message-user {
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  background: var(--lime);
}
.ai-message.is-pending {
  opacity: 0.7;
  font-style: italic;
}
.ai-chat-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.ai-chat-form input {
  min-width: 0;
  flex: 1;
  padding: 10px 11px;
  border: 1px solid #b9cada;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}
.ai-chat-form button {
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--lime);
  color: var(--ink);
  font:
    700 12px 'DM Sans',
    sans-serif;
  cursor: pointer;
}
.ai-chat-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.ai-chat-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ===== WAITLIST / EMAIL UPDATES ===== */
.waitlist-section {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  place-items: center;
  background: #05080e;
  isolation: isolate;
}
.waitlist-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at 50% 38%,
    transparent 0,
    rgba(5, 8, 14, 0.25) 35%,
    rgba(5, 8, 14, 0.96) 90%
  );
  pointer-events: none;
}
.waitlist-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(47, 147, 192, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(18deg);
  pointer-events: none;
}
.waitlist-orbit::before,
.waitlist-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 30px rgba(243, 199, 39, 0.45);
}
.waitlist-orbit::before {
  top: 8%;
  left: 18%;
  width: 8px;
  height: 8px;
}
.waitlist-orbit::after {
  right: 12%;
  bottom: 20%;
  width: 5px;
  height: 5px;
  background: var(--blue);
  box-shadow: 0 0 25px rgba(47, 147, 192, 0.65);
}
.waitlist-orbit-back {
  width: 1250px;
  height: 470px;
  animation: orbit-spin 60s linear infinite;
}
.waitlist-orbit-mid {
  width: 850px;
  height: 360px;
  border-color: rgba(243, 199, 39, 0.22);
  transform: translate(-50%, -50%) rotate(-28deg);
  animation: orbit-spin-reverse 48s linear infinite;
}
.waitlist-orbit-front {
  width: 560px;
  height: 240px;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(44deg);
  animation: orbit-spin 38s linear infinite;
}
.waitlist-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(620px, calc(100% - 40px));
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.waitlist-logo {
  height: 58px;
  width: auto;
  margin-bottom: 30px;
}
.waitlist-content .eyebrow {
  margin-bottom: 18px;
}
.waitlist-content h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
}
.waitlist-content > p:not(.eyebrow) {
  max-width: 390px;
  margin: 0;
  color: #a3b1c1;
}
.waitlist-form-wrap {
  position: relative;
  width: min(500px, 100%);
  height: 62px;
  margin-top: 30px;
}
.waitlist-form {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: #111b29;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.25);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.waitlist-form input {
  min-width: 0;
  flex: 1;
  padding: 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
}
.waitlist-form input::placeholder {
  color: #71839a;
}
.waitlist-form button {
  min-width: 135px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: #07111f;
  font:
    700 14px 'DM Sans',
    sans-serif;
  cursor: pointer;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}
.waitlist-form button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}
.waitlist-form button span {
  margin-left: 9px;
  font-size: 17px;
}
.waitlist-form.is-hidden {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}
.waitlist-success {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: #10b981;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.45);
  animation: success-pulse 0.6s ease both;
}
.waitlist-success[hidden] {
  display: none;
}
.success-check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.waitlist-form-wrap canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 600px;
  height: 360px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes orbit-spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes success-pulse {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* ===== DARK THEME OVERRIDES (final look & hover effects) ===== */
body {
  background: radial-gradient(circle at 50% -10%, #142943 0, #05080e 42%, #030509 100%);
}
h1,
h2,
h3 {
  color: #f7fbff;
}
.nav-links {
  color: #a8b7c8;
}
.nav-links a:hover,
.footer-links a:hover,
.text-link:hover,
.arrow-link:hover {
  color: var(--lime);
}
.button-dark {
  background: var(--lime);
  color: #07111f;
}
.button-light {
  background: #fff;
  color: #07111f;
}
.logo-strip,
.hero + .logo-strip {
  border-color: rgba(255, 255, 255, 0.1);
  background: #070d16;
}
.logo-row {
  color: #9cabbc;
}
.section {
  background: transparent;
}
.section-heading h2,
.company-copy h2,
.solution-copy h2,
.contact-copy h2 {
  color: #f7fbff;
}
.feature-card {
  border-color: #223852;
  background: #0b1625;
  color: var(--ink);
}
.feature-card p,
.company-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.feature-number {
  color: #7f9ab6;
}
.quickpay-gallery figure {
  border-color: #223852;
  background: #0b1625;
}
.quickpay-gallery figcaption {
  background: #0b1625;
  color: #f3f7fb;
}
.proof-row {
  border-color: #223852;
}
.proof-row div {
  border-color: #223852;
}
.proof-row span {
  color: #8ea2b8;
}
.process-section {
  background: #08111e;
}
.process-step {
  border-color: #223852;
  background: #0d1a2b;
}
.process-step h3 {
  color: #f7fbff;
}
.process-step p {
  color: var(--muted);
}
.company-section {
  background: transparent;
}
.contact-section {
  background: #0b2742;
}
.contact-form input,
.contact-form textarea {
  border-color: #56728f;
}
.footer {
  background: #02060c;
  color: #93a6b9;
}
.ai-support-panel {
  border-color: #2b4561;
  background: #0b1625;
}
.ai-support-panel-head > div,
.ai-support-panel p {
  color: #f3f7fb;
}
.ai-close-button {
  background: #172940;
  color: #f3f7fb;
}
.ai-message-assistant {
  background: #172940;
  color: #f3f7fb;
}
.ai-chat-form input {
  border-color: #2b4561;
  background: #0d2034;
  color: #f3f7fb;
}
.quickpay-gallery figure {
  border: 1px solid var(--line);
}
.quickpay-gallery {
  grid-template-columns: repeat(4, 1fr);
}
.hero {
  background: linear-gradient(135deg, #0b304b 0%, #258eaf 100%);
}
.hero {
  overflow: hidden;
}
body {
  background:
    radial-gradient(circle at 82% 4%, rgba(37, 142, 175, 0.18), transparent 25%),
    radial-gradient(circle at 10% 80%, rgba(243, 199, 39, 0.06), transparent 26%), #030509;
}
.logo-row strong {
  color: #b9c9d8;
}
.process-section {
  background: linear-gradient(135deg, #07101c 0%, #0b1e32 100%);
}
.process-step {
  background: linear-gradient(145deg, #101f31, #0a1523);
}
.feature-card {
  background: linear-gradient(145deg, #0e1d2e, #08121f);
}
.quickpay-gallery figure {
  background: linear-gradient(145deg, #0e1d2e, #08121f);
}
.contact-section {
  background: linear-gradient(135deg, #0b2944, #0c4561);
}
.ai-support-button {
  background: linear-gradient(135deg, #ffd84a, #f0b91e);
}
.hero,
.section,
.process-section {
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(27, 95, 174, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 95, 174, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}
.hero-copy,
.hero-visual {
  animation-duration: 0.9s;
}
.button {
  box-shadow: 0 8px 18px rgba(16, 42, 75, 0.08);
}
.button-primary {
  box-shadow: 0 9px 20px rgba(198, 157, 0, 0.2);
}
.button:active {
  transform: translateY(0);
}
.official-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(16, 42, 75, 0.58), transparent 70%);
}
.official-cover span {
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}
.solution-item {
  transition:
    background 0.25s ease,
    padding 0.25s ease;
}
.solution-item:hover {
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    transparent 0 49.8%,
    rgba(27, 95, 174, 0.04) 50%,
    transparent 50.2%
  );
  background-size: 72px 72px;
}
.process-layout {
  position: relative;
}
.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-section::after {
  content: 'Q';
  position: absolute;
  right: 5vw;
  bottom: -0.25em;
  color: rgba(255, 255, 255, 0.035);
  font-family: 'Space Grotesk';
  font-size: clamp(180px, 30vw, 420px);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}
.contact-layout {
  position: relative;
  z-index: 1;
}
/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ===== RESPONSIVE LAYOUTS (tablet & mobile) ===== */
@media (max-width: 850px) {
  .container {
    width: min(100% - 40px, 620px);
  }
  .nav {
    height: 76px;
  }
  .official-logo {
    height: 52px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: 8px 0 8px 8px;
  }
  .menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--ink);
  }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--cream);
    box-shadow: 0 14px 30px rgba(30, 50, 40, 0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-child {
    border: 0;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 70px 0 80px;
  }
  .hero-visual {
    min-height: 390px;
    padding-left: 0;
  }
  .dashboard-card {
    transform: rotate(1deg);
  }
  .floating-note {
    right: -5px;
    bottom: 52px;
  }
  .logo-row {
    flex-wrap: wrap;
    gap: 18px 28px;
    padding: 28px 0;
  }
  .logo-row span {
    width: 100%;
  }
  .section {
    padding: 90px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 38px;
  }
  .section-heading .eyebrow {
    margin-bottom: 25px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .mini-terminal {
    justify-self: end;
  }
  .process-section {
    padding: 90px 0;
  }
  .process-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .solution-layout,
  .contact-layout,
  .company-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .company-section {
    min-height: 0;
  }
  .company-mark {
    width: 190px;
    height: 190px;
    font-size: 110px;
  }
  .contact-section,
  .dark-section {
    padding: 90px 0;
  }
  .footer-row {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer p {
    width: 100%;
    order: 3;
  }
  .footer-links {
    margin-left: 0;
  }
  .footer small {
    margin-left: auto;
  }
  .quickpay-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-row div:nth-child(2) {
    border-right: 0;
  }
  .proof-row div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .official-cover {
    height: 175px;
  }
}
@media (max-width: 480px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-visual {
    min-height: 330px;
    padding-top: 12px;
  }
  .dashboard-card {
    padding: 21px 18px 16px;
  }
  .dashboard-top strong {
    font-size: 25px;
  }
  .chart-wrap {
    padding-top: 30px;
  }
  .floating-note {
    right: -10px;
    bottom: 32px;
  }
  .visual-caption {
    display: none;
  }
  .feature-card {
    padding: 24px;
  }
  .mini-terminal {
    max-width: 100%;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step {
    min-height: 0;
  }
  .footer-links {
    gap: 14px;
  }
  .footer small {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .hero {
    background: linear-gradient(180deg, #0b304b 0%, #1f7897 100%);
  }
  .hero h1 em {
    color: #ffdc61;
  }
  .hero-text {
    color: rgba(255, 255, 255, 0.82);
  }
  .feature-card,
  .process-step,
  .quickpay-gallery figure {
    background: #0a1625;
  }
  .ai-support-button {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }
  .ai-support-panel {
    right: 18px;
    bottom: 80px;
  }
}
/* ===== CONTACT FORM FIXES (select & message states) ===== */
.contact-form select {
  width: 100%;
  margin-bottom: 23px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #718c7e;
  outline: none;
  background: transparent;
  color: #fff;
  font: inherit;
  appearance: none;
  cursor: pointer;
}
.contact-form select:focus {
  border-color: var(--lime);
}
.contact-form select option {
  color: #07111f;
}
.contact-form .button {
  background: var(--lime);
  color: #07111f;
}
.contact-form .button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}
.form-message.is-sent {
  color: #8ff0c4;
}
.form-message.is-error {
  color: #ffb3a3;
}
.voucher-orbit {
  display: none;
}
/* ===== HERO VISUAL: VOUCHER RINGS & POS DEVICE ===== */
.voucher-ring {
  position: absolute;
  top: 50%;
  left: 52%;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.voucher-ring-back {
  width: 760px;
  height: 430px;
  animation: dashboard-spin 58s linear infinite;
}
.voucher-ring-mid {
  width: 590px;
  height: 330px;
  border-color: rgba(243, 199, 39, 0.22);
  animation: dashboard-spin-reverse 44s linear infinite;
}
.voucher-ring-front {
  width: 430px;
  height: 245px;
  border-color: rgba(255, 255, 255, 0.22);
  animation: dashboard-spin 34s linear infinite;
}
.ring-logo {
  position: absolute;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.07em;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}
.ring-logo::after {
  content: 'voucher';
  position: absolute;
  bottom: 9px;
  font:
    700 7px 'DM Sans',
    sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.ring-korek {
  top: 0;
  left: 18%;
  background: #d64a32;
}
.ring-zain {
  top: 100%;
  left: 76%;
  background: #e7b91d;
  color: #17263b;
}
.ring-online {
  top: 54%;
  left: 100%;
  background: #237eb4;
}
.ring-asiacell {
  top: 4%;
  left: 78%;
  background: #c92743;
}
.ring-fastlink {
  top: 98%;
  left: 22%;
  background: #6040a8;
}
.ring-internet {
  top: 50%;
  left: 0;
  background: #078c72;
}
.voucher-ring-front .ring-korek {
  top: 0;
  left: 22%;
}
.voucher-ring-front .ring-asiacell {
  top: 100%;
  left: 78%;
}
.ring-logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  border-radius: 8px;
}
.ring-logo::after {
  display: none;
}
.ring-logo img {
  width: 78%;
  height: 78%;
}
.ring-logo {
  border: 0;
  background: transparent !important;
  box-shadow: none;
}
.ring-logo img {
  width: 86%;
  height: 86%;
  border-radius: 0;
}
.hero-visual {
  isolation: isolate;
}
.hero-visual::after {
  display: none;
}
.hero {
  background:
    radial-gradient(circle at 78% 42%, rgba(37, 142, 175, 0.32), transparent 30%),
    linear-gradient(135deg, #06101d 0%, #0a273d 52%, #0e4762 100%);
}
.hero::before {
  background-image:
    linear-gradient(rgba(111, 210, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 210, 232, 0.04) 1px, transparent 1px);
}
.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(32px, calc((100% - 1160px) / 2));
  padding-right: max(32px, calc((100% - 1160px) / 2));
}
@media (max-width: 850px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.dashboard-21st-layer {
  position: absolute;
  top: 50%;
  left: 52%;
  z-index: 0;
  pointer-events: none;
  transform-origin: center;
}
.dashboard-21st-layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  border-radius: 50%;
}
.dashboard-21st-back {
  width: 740px;
  height: 740px;
  transform: translate(-50%, -50%) rotate(18deg);
  animation: dashboard-spin 60s linear infinite;
  opacity: 0.65;
}
.dashboard-21st-mid {
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%) rotate(42deg);
  animation: dashboard-spin-reverse 48s linear infinite;
  opacity: 0.6;
}
.dashboard-21st-front {
  width: 390px;
  height: 390px;
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: dashboard-spin 38s linear infinite;
  opacity: 0.5;
}
@keyframes dashboard-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes dashboard-spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.voucher-tile {
  display: none;
}
.voucher-logo {
  display: block;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}
.voucher-tile span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.voucher-korek {
  background: linear-gradient(145deg, #ee642c, #b9282d);
}
.voucher-asiacell {
  background: linear-gradient(145deg, #eb3349, #9c1230);
}
.voucher-fastlink {
  background: linear-gradient(145deg, #7248c7, #2c267c);
}
.voucher-zain {
  background: linear-gradient(145deg, #f8c928, #d89000);
  color: #152236;
}
.voucher-zain .voucher-logo,
.voucher-zain span {
  color: #152236;
  text-shadow: none;
}
.voucher-online {
  background: linear-gradient(145deg, #168eb7, #154e9b);
}
.voucher-internet {
  background: linear-gradient(145deg, #14a97c, #08715d);
}
.voucher-tile-one {
  top: 28px;
  left: 8px;
  transform: rotate(-14deg);
}
.voucher-tile-two {
  top: 4px;
  right: 42px;
  transform: rotate(10deg);
}
.voucher-tile-three {
  right: 2px;
  bottom: 84px;
  transform: rotate(13deg);
}
.voucher-tile-four {
  bottom: 8px;
  left: 8px;
  transform: rotate(-10deg);
}
.pos-device {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 640px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.pos-device-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}
.pos-device > :not(.pos-device-image) {
  display: none;
}
.pos-device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -13px -12px 7px;
  padding: 0 5px;
  color: #7794ad;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.pos-device-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 9px var(--lime);
}
.voucher-tile-five {
  top: 51%;
  left: -8px;
  transform: rotate(-18deg);
}
.voucher-tile-six {
  top: 48%;
  right: -10px;
  transform: rotate(16deg);
}
.voucher-tile {
  animation: voucher-float 5s ease-in-out infinite;
}
.voucher-tile-two {
  animation-delay: -1.2s;
}
.voucher-tile-three {
  animation-delay: -2.4s;
}
.voucher-tile-four {
  animation-delay: -3.6s;
}
.voucher-tile-five {
  animation-delay: -1.8s;
}
.voucher-tile-six {
  animation-delay: -3s;
}
@keyframes voucher-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}
@media (max-width: 850px) {
  .dashboard-21st-back {
    width: 560px;
    height: 560px;
  }
  .dashboard-21st-mid {
    width: 400px;
    height: 400px;
  }
  .dashboard-21st-front {
    width: 300px;
    height: 300px;
  }
  .voucher-tile {
    width: 72px;
    height: 86px;
    border-radius: 14px;
  }
  .voucher-tile img {
    height: 58px;
  }
  .voucher-tile-one {
    left: -5px;
  }
  .voucher-tile-two {
    right: 20px;
  }
  .voucher-tile-three {
    right: -6px;
    bottom: 70px;
  }
  .voucher-tile-four {
    left: -4px;
    bottom: 4px;
  }
  .voucher-tile-five {
    left: -7px;
  }
  .voucher-tile-six {
    right: -7px;
  }
}
@media (max-width: 850px) {
  .voucher-ring-back {
    width: 590px;
    height: 350px;
  }
  .voucher-ring-mid {
    width: 455px;
    height: 270px;
  }
  .voucher-ring-front {
    width: 335px;
    height: 205px;
  }
  .ring-logo {
    width: 62px;
    height: 62px;
    border-radius: 17px;
    font-size: 10px;
  }
  .ring-logo::after {
    bottom: 7px;
    font-size: 6px;
  }
}
@media (max-width: 850px) {
  .pos-device {
    max-width: 340px;
    height: 540px;
  }
}
@media (max-width: 480px) {
  .dashboard-21st-back {
    width: 430px;
    height: 430px;
  }
  .dashboard-21st-mid {
    width: 300px;
    height: 300px;
  }
  .dashboard-21st-front {
    width: 225px;
    height: 225px;
  }
  .pos-device {
    max-width: 280px;
    height: 440px;
  }
  .pos-device-top {
    margin: -9px -8px 5px;
    font-size: 6px;
  }
  .voucher-tile {
    width: 60px;
    height: 72px;
    border-width: 2px;
    border-radius: 12px;
  }
  .voucher-tile img {
    height: 47px;
  }
  .voucher-tile span {
    font-size: 8px;
  }
  .voucher-tile-one {
    top: 18px;
  }
  .voucher-tile-two {
    top: 0;
    right: 28px;
  }
  .voucher-tile-three {
    right: -2px;
    bottom: 58px;
  }
  .voucher-tile-four {
    bottom: 0;
  }
  .voucher-tile-five {
    left: -4px;
  }
  .voucher-tile-six {
    right: -4px;
  }
}
@media (max-width: 480px) {
  .voucher-ring-back {
    width: 430px;
    height: 270px;
  }
  .voucher-ring-mid {
    width: 330px;
    height: 210px;
  }
  .voucher-ring-front {
    width: 245px;
    height: 155px;
  }
  .ring-logo {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 8px;
  }
  .ring-logo::after {
    bottom: 6px;
    font-size: 5px;
  }
}

/* ---------- POS demo modal (QuickPay POS mockup) ---------- */
.pos-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pos-modal[hidden] {
  display: none;
}
.pos-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.78);
}
.pos-modal-dialog {
  position: relative;
  width: min(600px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 16px;
  border: 1px solid #35507a;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(4, 10, 20, 0.55);
  display: flex;
  flex-direction: column;
}
.pos-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #173c68;
  color: #fff;
}
.pos-modal-head h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  letter-spacing: -0.03em;
}
.pos-modal-close {
  flex: none;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}
.pos-modal-body {
  display: flex;
  justify-content: center;
}
.pos-modal-body iframe {
  width: 100%;
  height: 76vh;
  border: 0;
  border-radius: 8px;
  background: #fff;
}
.pos-modal-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
}
.pos-modal-actions .text-link {
  color: #173c68;
}
@media (max-width: 850px) {
  .pos-modal {
    padding: 12px;
  }
  .pos-modal-dialog {
    width: calc(100vw - 24px);
  }
  .pos-modal-body iframe {
    height: calc(100vh - 190px);
  }
}
