/* =========================
   VeeraPay
   ========================= */

:root{
  --bg: #070A10;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.09);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted-2: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.10);

  /* Brand colors (approx from your logo) */
  --blue: #0A74FF;
  --blue-2: #0B57D0;
  --green: #22C55E;
  --green-2: #10B981;
  --teal: #14B8A6;

  --danger: #FF4D4D;

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --shadow: 0 14px 40px rgba(0,0,0,0.45);
  --shadow-soft: 0 10px 26px rgba(0,0,0,0.28);

  --max: 1120px;
}

/* =========================
   Fonts
========================= */

@font-face {
  font-family: DegularDisplay;
  src: url("../../cms/fonts/degulardisplaydemo-bold-webfont.woff");
  font-weight: 700;
}

@font-face {
  font-family: DegularDisplay;
  src: url("../../cms/fonts/degulardisplaydemo-semibold-webfont.woff");
  font-weight: 500;
}

@font-face {
  font-family: DegularDisplay;
  src: url("../../cms/fonts/degulardisplaydemo-regular-webfont.woff");
  font-weight: 400;
}

@font-face {
  font-family: IBMPlexSans;
  src: url("../../cms/fonts/IBMPlexSans-Bold.ttf");
  font-weight: 700;
}

@font-face {
  font-family: IBMPlexSans;
  src: url("../../cms/fonts/IBMPlexSans-Regular.ttf");
  font-weight: 400;
}


*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: IBMPlexSans, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 70% 10%, rgba(10,116,255,0.20), transparent 55%),
              radial-gradient(900px 700px at 20% 0%, rgba(34,197,94,0.18), transparent 55%),
              linear-gradient(180deg, #060810 0%, #070A10 30%, #050712 100%);
  overflow-x: hidden;
}

/* =========================
   Headings
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: DegularDisplay, IBMPlexSans, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* Background glow accents */
.bg-glow{
  position: fixed;
  inset: -200px;
  pointer-events: none;
  background:
    radial-gradient(600px 600px at 15% 20%, rgba(34,197,94,0.12), transparent 60%),
    radial-gradient(700px 700px at 85% 25%, rgba(10,116,255,0.14), transparent 62%),
    radial-gradient(700px 700px at 70% 80%, rgba(20,184,166,0.10), transparent 60%);
  filter: blur(10px);
  z-index: 0;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: 0.95; }
img{ max-width: 100%; display: block; }

.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;          /* was 10 */
  isolation: isolate;     /* prevents weird stacking/blur bugs */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7,10,16,0.55);
  border-bottom: 1px solid var(--border);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

/* =========================
   Brand / Logo
========================= */

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0; /* VERY important */
}

.brand-logo {
  height: 44px;        /* 👈 increase to 48px if you want stronger presence */
  width: auto;
  max-height: none;
  min-height: 44px;
  display: block;
}

.menu{
  display: flex;
  gap: 4px;
  align-items: center;
}
.menu a{
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.menu a:hover{
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.menu a.active{
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--border);
}

.nav-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--text);
  background: rgba(255,255,255,0.05);
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  user-select: none;
}
.btn:hover{ background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }
.btn.primary{
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(90deg, rgba(34,197,94,0.95), rgba(10,116,255,0.95));
  box-shadow: 0 12px 30px rgba(10,116,255,0.18);
}
.btn.primary:hover{
  box-shadow: 0 16px 40px rgba(10,116,255,0.25);
}
.btn.ghost{
  background: transparent;
}
.btn.small{
  padding: 8px 12px;
  font-size: 14px;
}
.btn.block{
  width: 100%;
}

.icon-btn{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}

.hero{
  padding: 64px 0 30px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}
.kicker .dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  box-shadow: 0 0 0 4px rgba(34,197,94,0.15);
}

h1{
  margin: 16px 0 10px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}
.lead{
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 58ch;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-metrics{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 22px;
}
.metric{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: 14px;
}
.metric strong{
  display:block;
  font-size: 18px;
}
.metric span{
  color: var(--muted-2);
  font-size: 13px;
}

.hero-card{
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}
.hero-card .card-top{
  padding: 18px 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.pill b{ color: var(--text); font-weight: 650; }
.hero-card .preview{
  padding: 18px;
}
.preview .panel{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: radial-gradient(800px 400px at 50% 0%, rgba(10,116,255,0.25), transparent 60%),
              radial-gradient(700px 400px at 20% 80%, rgba(34,197,94,0.22), transparent 60%),
              rgba(255,255,255,0.03);
  padding: 16px;
}
.panel-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.panel-row:last-child{ border-bottom: none; }
.panel-row .left{
  display:flex;
  align-items:center;
  gap: 10px;
}
.avatar{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,0.10);
}
.avatar svg{ opacity: 0.9; }
.panel-row .meta{
  display:flex;
  flex-direction: column;
  gap: 2px;
}
.panel-row .meta strong{ font-size: 13px; }
.panel-row .meta span{ font-size: 12px; color: var(--muted-2); }
.status{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}
.status.ok{
  color: rgba(209,255,230,0.95);
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.25);
}
.status.hold{
  color: rgba(215,235,255,0.95);
  background: rgba(10,116,255,0.12);
  border-color: rgba(10,116,255,0.25);
}

.section{
  padding: 42px 0;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.2px;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.card h3{
  margin: 10px 0 6px;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.card .icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(34,197,94,0.22), rgba(10,116,255,0.22));
  display: grid;
  place-items: center;
}
.card .icon svg{ opacity: 0.95; }

.banner{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.banner img{
  width: 100%;
  height: auto;
}

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.list li{
  display:flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.list li:last-child{ border-bottom: none; }
.check{
  width: 20px; height: 20px;
  border-radius: 6px;
  background: rgba(34,197,94,0.16);
  border: 1px solid rgba(34,197,94,0.25);
  display: grid;
  place-items:center;
  margin-top: 2px;
}
.check svg{ width: 14px; height: 14px; }

.pricing-toggle{
  display:flex;
  align-items:center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  background: rgba(255,255,255,0.04);
}
.toggle-btn{
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
}
.toggle-btn.active{
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.10);
}

.price{
  font-size: 34px;
  letter-spacing: -0.3px;
  margin: 10px 0 6px;
}
.price small{
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 600;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 10px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}

.table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.table th, .table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 14px;
}
.table th{
  text-align: left;
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  background: rgba(255,255,255,0.04);
}
.table tr:last-child td{ border-bottom: none; }

.form{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.field{
  display:flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.field label{
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  font-weight: 650;
}
.field input, .field textarea, .field select{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,10,16,0.30);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 12px;
  outline: none;
}
.field textarea{ min-height: 120px; resize: vertical; }
.hint{ color: var(--muted-2); font-size: 13px; margin-top: 6px; }

.footer{
  border-top: 1px solid var(--border);
  background: rgba(7,10,16,0.55);
  margin-top: 48px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 26px 0;
}
.footer h4{
  margin: 0 0 10px;
  font-size: 14px;
}
.footer a{
  display:block;
  color: var(--muted);
  padding: 7px 0;
  font-size: 14px;
}
.footer a:hover{ color: var(--text); }
.subfooter{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  color: var(--muted-2);
  font-size: 13px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.mini-brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.mini-brand img{ width: 26px; height: 26px; }

.notice{
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 940px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .menu, .nav-actions .btn.ghost{ display: none; }
  .icon-btn{ display: inline-grid; place-items:center; }
}

/* Mobile drawer */
.drawer{
  display:none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 99;
  padding: 18px;
}
.drawer .panel{
  margin-left: auto;
  width: min(420px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,10,16,0.92);
  box-shadow: var(--shadow);
  padding: 14px;
  backdrop-filter: blur(12px);
}
.drawer .panel .head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 6px 6px 12px;
}
.drawer .panel nav a{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--muted);
}
.drawer .panel nav a:hover{
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.drawer .panel .cta{
  margin-top: 12px;
  display:flex;
  gap: 10px;
}
.drawer.show{ display:block; }

kbd.key{
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  padding: 2px 8px;
  border-radius: 8px;
}

/* Utility */
.row{
  display:flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.spacer{ height: 12px; }


/* =========================
   Animated Hero (subtle gradient movement)
   ========================= */

.hero-animated {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-animated::before{
  content:"";
  position:absolute;
  inset:-200px;
  background:
    radial-gradient(900px 700px at 20% 20%, rgba(34,197,94,0.18), transparent 60%),
    radial-gradient(900px 700px at 80% 10%, rgba(10,116,255,0.20), transparent 62%),
    radial-gradient(800px 700px at 70% 85%, rgba(20,184,166,0.14), transparent 60%);
  filter: blur(8px);
  animation: vpGradientShift 12s ease-in-out infinite alternate;
  pointer-events:none;
  z-index: 0;
}

@keyframes vpGradientShift{
  0%   { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: 0.85; }
  50%  { transform: translate3d(1.0%, 1.2%, 0) scale(1.02); opacity: 0.95; }
  100% { transform: translate3d(2.2%, -1.0%, 0) scale(1.04); opacity: 0.90; }
}

.hero-animated .container{ position: relative; z-index: 1; }

/* =========================
   Counters (stats)
   ========================= */
.stats-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.stat{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.stat .num{
  font-size: 34px;
  letter-spacing: -0.4px;
  font-weight: 800;
  line-height: 1.05;
}
.stat .label{
  color: var(--muted);
  margin-top: 6px;
  font-size: 13px;
}
.stat .note{
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 12px;
}

@media (max-width: 940px){
  .stats-row{ grid-template-columns: 1fr; }
}

/* =========================
   Auth Hint Modals (Login/Signup)
   ========================= */
.modal-overlay{
  display:none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 120;
  padding: 18px;
}
.modal-overlay.show{ display:block; }

.modal{
  margin: 3vh auto 0;
  width: min(520px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7,10,16,0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.modal .top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.modal .top strong{ font-size: 14px; }
.modal .body{ padding: 16px; }

.modal .tabs{
  display:flex;
  gap: 8px;
  padding: 0 16px 12px;
}
.modal .tab{
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 700;
}
.modal .tab.active{
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.modal .fineprint{
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}

/* =========================
   FAQ accordion
   ========================= */
.faq{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item{
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:last-child{ border-bottom: none; }

.faq-q{
  width: 100%;
  text-align: left;
  padding: 16px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.90);
  font-weight: 750;
}
.faq-q span{ color: var(--muted); font-weight: 650; }
.faq-a{
  display:none;
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.faq-item.open .faq-a{ display:block; }
.faq-chevron{
  width: 18px;
  height: 18px;
  opacity: 0.9;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-chevron{ transform: rotate(180deg); }

/* =========================
   Testimonials
   ========================= */
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.testimonial{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.testimonial .quote{
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  font-size: 14px;
  margin: 0 0 14px;
}
.testimonial .who{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.testimonial .who strong{ font-size: 14px; }
.testimonial .who span{ color: var(--muted-2); font-size: 12px; }

@media (max-width: 940px){
  .testimonials{ grid-template-columns: 1fr; }
}

/* =========================
   Footer redesign (GenioPay-like layout)
   ========================= */
.footer-pro{
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.55);
  margin-top: 52px;
  padding: 26px 0 18px;
}

.footer-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-brand img{ width: 34px; height: 34px; }
.footer-brand strong{ font-size: 16px; }
.footer-brand .hint{ margin: 0; }

.footer-social{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social .label{
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-right: 6px;
}
.social-btn{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display:grid;
  place-items:center;
}
.social-btn:hover{ background: rgba(255,255,255,0.08); }

.footer-right{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}
.lang{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}
.lang .flag{
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.05);
  font-size: 14px;
}

.store-badges{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.badge{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
}
.badge:hover{ background: rgba(255,255,255,0.08); }

.footer-links{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  padding: 18px 0;
}
.footer-col h4{
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.86);
}
.footer-col a{
  display:block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--muted);
}
.footer-col a:hover{ color: var(--text); }

.footer-legal-grid{
  display:grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.address-block{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 14px;
}
.legal-block{
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.6;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 14px;
}

.footer-bottom{
  padding-top: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 940px){
  .footer-links{ grid-template-columns: 1fr 1fr; }
  .footer-legal-grid{ grid-template-columns: 1fr; }
}


/* =========================
   Section head alignment helper
   ========================= */
.section-head.center { text-align: center; }
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* =========================
   Counters Section (standalone)
   ========================= */
.counter-section{
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.counter-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.counter-number{
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.1;
}

.counter-label{
  margin-top: 8px;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
}

.counter-sub{
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 980px){
  .counter-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .counter-grid{ grid-template-columns: 1fr; }
}

/* =========================
   Why Us (refactor)
   ========================= */
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.why-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.why-icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display:grid;
  place-items:center;
  font-size: 18px;
}
.why-card h3{
  margin: 12px 0 6px;
  font-size: 16px;
}
.why-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 980px){
  .why-grid{ grid-template-columns: 1fr; }
}

/* =========================
   Features section (screenshot-like with dividers)
   =========================
*/
.features-section{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.features-head{
  text-align:center;
  position: relative;
  padding-top: 8px;
}

.features-ghost{
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 56px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  user-select:none;
}

.features-subtitle{
  margin-top: -10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  text-transform: uppercase;
}

.features-title{
  margin: 16px 0 0;
  font-size: 44px;
  letter-spacing: -0.6px;
}

.features-grid{
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-item{
  padding: 30px 10px;
  text-align:center;
  position: relative;
}

/* vertical dividers */
.feature-item:not(:nth-child(4n)){
  border-right: 1px solid rgba(255,255,255,0.10);
}

/* horizontal divider between row 1 and row 2 */
.feature-item:nth-child(-n+4){
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.feature-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display:grid;
  place-items:center;
  margin: 0 auto 12px;
  font-size: 22px;
}

.feature-name{
  font-weight: 900;
  letter-spacing: 1.6px;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 980px){
  .features-ghost{ font-size: 34px; letter-spacing: 4px; }
  .features-title{ font-size: 34px; }
  .features-grid{ grid-template-columns: 1fr 1fr; }
  .feature-item{ padding: 22px 10px; }
  .feature-item:not(:nth-child(2n)){ border-right: 1px solid rgba(255,255,255,0.10); }
  .feature-item:nth-child(-n+2){ border-bottom: 1px solid rgba(255,255,255,0.10); }
  .feature-item:nth-child(3), .feature-item:nth-child(4){ border-bottom: 1px solid rgba(255,255,255,0.10); }
}
@media (max-width: 560px){
  .features-grid{ grid-template-columns: 1fr; }
  .feature-item{ border-right: none !important; }
  .feature-item{ border-bottom: 1px solid rgba(255,255,255,0.10); }
  .feature-item:last-child{ border-bottom: none; }
}


/* =========================
   SVG ICON VISIBILITY BOOST
   ========================= */

.feature-icon--svg{
  background:
    radial-gradient(
      120% 120% at 50% 30%,
      rgba(10,116,255,0.20),
      rgba(10,116,255,0.05) 60%,
      transparent 70%
    );
  border: 1px solid rgba(255,255,255,0.18);
}

/* soft glow */
.vp-ico{
  filter:
    drop-shadow(0 0 6px rgba(10,116,255,0.45))
    drop-shadow(0 0 12px rgba(34,197,94,0.25));
}

.vp-ico path{
  stroke: #eaf2ff; /* light neutral for dark backgrounds */
}

.vp-ico path.accent,
.vp-ico path:last-child{
  stroke: #22c55e; /* VeeraPay green accent */
}

.why-icon-svg{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    radial-gradient(
      120% 120% at 50% 30%,
      rgba(10,116,255,0.25),
      rgba(10,116,255,0.08) 60%,
      transparent 70%
    );
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
}


/* =========================================================
   Affiliate Page (uses global styles.css) — scoped styles
   ========================================================= */

.affiliate-hero{
  padding-top: 42px;
}

.affiliate-hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.affiliate-hero-copy .lead{
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.7;
  max-width: 56ch;
}

.affiliate-hero-actions{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.affiliate-avatars{
  position: relative;
  min-height: 330px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(120% 120% at 20% 30%, rgba(34,197,94,0.18), transparent 55%),
    radial-gradient(120% 120% at 80% 30%, rgba(10,116,255,0.22), transparent 58%),
    rgba(255,255,255,0.03);
  overflow: hidden;
}

.affiliate-avatars::after{
  content:"";
  position:absolute; inset:-40px;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(255,255,255,0.06) 2px, transparent 2px);
  background-size: 34px 34px;
  opacity: 0.45;
}

.affiliate-avatars .ava{
  width: 96px;
  height: 96px;
  border-radius: 26px;
  position:absolute;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.ava-1{ top: 26px; left: 46px; }
.ava-2{ top: 10px; right: 54px; }
.ava-3{ top: 120px; left: 120px; }
.ava-4{ top: 110px; right: 140px; }
.ava-5{ bottom: 28px; left: 90px; }
.ava-6{ bottom: 48px; right: 60px; }

.ava-badge{
  position:absolute;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.25);
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
}

.badge-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brandBlue), var(--brandGreen));
  box-shadow: 0 0 14px rgba(10,116,255,0.5);
}

.badge-1{ top: 56px; left: 200px; }
.badge-2{ top: 170px; right: 70px; }

.affiliate-benefits-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.affiliate-card{
  padding: 18px;
}

.affiliate-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(120% 120% at 50% 30%, rgba(10,116,255,0.22), rgba(10,116,255,0.06) 60%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 12px;
}

.affiliate-split-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.affiliate-info{
  padding: 22px;
}

.affiliate-steps-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: start;
}

.affiliate-step{
  display:flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.affiliate-step:last-child{ border-bottom: none; }

.step-dot{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,0.18);
}

.step-yellow{ background: rgba(245, 158, 11, 0.15); }
.step-orange{ background: rgba(249, 115, 22, 0.15); }
.step-ice{ background: rgba(6, 182, 212, 0.15); }

.affiliate-commission{
  padding: 22px;
  background:
    radial-gradient(120% 120% at 60% 30%, rgba(10,116,255,0.20), transparent 55%),
    radial-gradient(120% 120% at 20% 80%, rgba(34,197,94,0.14), transparent 55%),
    rgba(255,255,255,0.04);
}

.commission-row{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.commission-row:last-of-type{ border-bottom: none; }

.commission-row strong{
  font-size: 28px;
  letter-spacing: -0.4px;
}

.commission-row strong span{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
  margin-left: 4px;
}

.w-full{ width: 100%; text-align: center; margin-top: 14px; }

.fineprint{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.affiliate-platforms-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.affiliate-platform{
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.platform-title{
  font-weight: 900;
  letter-spacing: -0.2px;
  font-size: 18px;
}

.affiliate-platform .link{
  display:inline-flex;
  margin-top: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.affiliate-team{
  padding-top: 18px;
}

.affiliate-team-card{
  padding: 0;
  overflow:hidden;
}

.affiliate-team-media{
  height: 320px;
  background:
    radial-gradient(120% 120% at 30% 30%, rgba(34,197,94,0.22), transparent 55%),
    radial-gradient(120% 120% at 70% 25%, rgba(10,116,255,0.25), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.affiliate-team-body{
  padding: 22px;
  text-align:center;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 980px){
  .affiliate-hero-grid{ grid-template-columns: 1fr; }
  .affiliate-avatars{ min-height: 280px; }
  .affiliate-benefits-grid{ grid-template-columns: 1fr; }
  .affiliate-split-grid{ grid-template-columns: 1fr; }
  .affiliate-steps-grid{ grid-template-columns: 1fr; }
  .affiliate-platforms-grid{ grid-template-columns: 1fr; }
}


/* =========================
   Affiliate platform logos (cards)
   ========================= */

.affiliate-platform{
  padding: 18px;
}

.platform-logo{
  height: 42px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.platform-logo img{
  height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

/* tighten spacing to look like your screenshot */
.affiliate-platform p{
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 52ch;
}

.affiliate-platform .link{
  display: inline-flex;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.3px;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
}

.affiliate-platform:hover .platform-logo img{
  opacity: 1;
}

/* =========================
   Affiliate team image
   ========================= */

.affiliate-team-media{
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.affiliate-team-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* =========================
   Avatar cluster – image support
   ========================= */

.affiliate-avatars .ava{
  overflow: hidden;
}

.affiliate-avatars .ava img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional: subtle polish */
.affiliate-avatars .ava{
  background: #000;
}


/* =========================================================
   Safety page (scoped)
   ========================================================= */

.safety-hero{
  padding-top: 42px;
}

.safety-hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.safety-hero-copy .lead{
  color: var(--muted);
  line-height: 1.8;
  max-width: 62ch;
  margin-top: 10px;
}

.safety-hero-illustration{
  display: grid;
  place-items: center;
}

.safety-illus{
  width: min(520px, 100%);
  height: auto;
}

.safety-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.safety-card{
  position: relative;
  padding: 22px;
}

.safety-card h3{
  margin: 10px 0 8px;
  letter-spacing: -0.2px;
}

.safety-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.safety-icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  margin-top: 6px;
}

.safety-badge{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  position: absolute;
  top: -18px;
  left: 0px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.95);
}

/* Badge colors (match your reference: yellow/orange/blue) */
.safety-badge.b1{ background: rgba(245,158,11,0.22); }
.safety-badge.b2{ background: rgba(249,115,22,0.22); }
.safety-badge.b3{ background: rgba(6,182,212,0.22); }
.safety-badge.b4{ background: rgba(245,158,11,0.22); }
.safety-badge.b5{ background: rgba(249,115,22,0.22); }
.safety-badge.b6{ background: rgba(6,182,212,0.22); }

/* Make your inline SVGs look consistent */
.vp-ico{
  width: 26px;
  height: 26px;
  fill: none;
  stroke: rgba(255,255,255,0.82);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vp-ico .accent{
  stroke: rgba(34,197,94,0.95); /* use green accent */
}

/* Responsive */
@media (max-width: 980px){
  .safety-hero-grid{ grid-template-columns: 1fr; }
  .safety-cards{ grid-template-columns: 1fr; }
  .safety-badge{ left: 6px; }
}


/* =========================================================
   Bounty Programme page (scoped)
   ========================================================= */

.bounty-hero{
  padding-top: 44px;
  text-align: center;
}

.bounty-hero-wrap h1{
  font-size: clamp(36px, 4.6vw, 56px);
  letter-spacing: -0.8px;
}

.bounty-hero-sub{
  margin: 10px auto 0;
  max-width: 78ch;
  color: var(--muted);
  line-height: 1.8;
}

.bounty-hero-art{
  margin-top: 22px;
  display: grid;
  place-items: center;
}

.bounty-device{
  width: min(980px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35));
}

.bounty-subnav{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bounty-subnav-inner{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0;
}

.bounty-subnav a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.bounty-subnav a:hover{
  border-color: rgba(10,116,255,0.35);
  background: rgba(10,116,255,0.10);
}

.bounty-section{
  padding-top: 36px;
}

.bounty-content h2{
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}

.bounty-content p{
  color: var(--muted);
  line-height: 1.8;
  max-width: 92ch;
}

.bounty-bullets{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.bounty-bullet{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.bounty-bullet strong{
  display: block;
  margin-bottom: 6px;
}

.bounty-bullet p{
  margin: 0;
  color: var(--muted);
}

.bounty-bullet-ico{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10,116,255,0.12);
  border: 1px solid rgba(10,116,255,0.25);
  flex: 0 0 auto;
}

.bounty-callout{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(34,197,94,0.20);
  background: rgba(34,197,94,0.08);
}

.bounty-callout p{
  margin: 6px 0 0;
}

.bounty-callout-ico{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  flex: 0 0 auto;
}

/* Table */
.bounty-table{
  margin-top: 18px;
  padding: 14px;
}

.bounty-table-head{
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 0.6fr;
  gap: 12px;
  padding: 12px 10px;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.bounty-row{
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 0.6fr;
  gap: 12px;
  padding: 16px 10px;
}

.bounty-row ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.bounty-col.payout{
  display: grid;
  gap: 10px;
  justify-content: start;
}

.payout{
  font-weight: 800;
  card-foreground: inherit;
}

.bounty-divider{
  height: 1px;
  background: rgba(10,116,255,0.22);
  margin: 0 10px;
}

.bounty-note{
  margin-top: 12px;
  color: var(--muted);
}

/* Guidelines cards */
.bounty-guides{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.bounty-guide{
  padding: 18px;
}

.bounty-guide h3{
  margin: 0 0 10px;
}

.bounty-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.bounty-cta-row{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Terms banner */
.bounty-terms-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 34px 22px;
  text-align: center;
}

.bounty-terms-bg{
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(900px 300px at 15% 40%, rgba(10,116,255,0.35), rgba(10,116,255,0) 65%),
    radial-gradient(900px 300px at 85% 55%, rgba(34,197,94,0.35), rgba(34,197,94,0) 65%),
    linear-gradient(90deg, rgba(10,116,255,0.10), rgba(34,197,94,0.10));
  filter: blur(0px);
  opacity: 0.95;
}

.bounty-terms-content{
  position: relative;
  z-index: 2;
  max-width: 80ch;
  margin: 0 auto;
}

.bounty-terms-kicker{
  letter-spacing: 6px;
  font-weight: 900;
  opacity: 0.40;
  margin-bottom: 10px;
}

/* Use your existing vp-ico styling from Safety page */
.vp-ico{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgba(255,255,255,0.82);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 980px){
  .bounty-bullets{ grid-template-columns: 1fr; }
  .bounty-guides{ grid-template-columns: 1fr; }
  .bounty-table-head,
  .bounty-row{ grid-template-columns: 1fr; }
  .bounty-col.payout{ justify-content: start; }
}


/* =========================================================
   Standard legal / policy pages
   ========================================================= */

.legal-hero{
  padding-top: 40px;
  padding-bottom: 10px;
}

.legal-hero-inner h1{
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.6px;
}

.legal-subtitle{
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* Content */
.legal-content{
  padding-top: 24px;
}

.legal-container{
  max-width: 880px;
  margin: 0 auto;
}

.legal-container h2{
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.legal-container p{
  line-height: 1.8;
  color: var(--text);
}

.legal-container ul{
  padding-left: 20px;
  margin: 12px 0;
}

.legal-container li{
  margin-bottom: 6px;
  color: var(--muted);
}

.legal-container a{
  color: var(--primary);
  text-decoration: none;
}

.legal-container a:hover{
  text-decoration: underline;
}


/* =========================================================
   Refer a friend page
   ========================================================= */

.refer-hero{
  padding-top: 44px;
  padding-bottom: 24px;
  position: relative;
}

.refer-hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.refer-hero-copy h1{
  font-size: clamp(36px, 4.2vw, 58px);
  letter-spacing: -0.8px;
  line-height: 1.05;
}

.refer-highlight{
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.refer-lead{
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 56ch;
}

.refer-actions{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.refer-note{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.refer-note-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--primary), transparent 85%);
}

.refer-hero-art{
  width: 100%;
  display: grid;
  place-items: center;
}

.refer-avatars-svg{
  width: min(520px, 100%);
  height: auto;
}

/* How it works */
.refer-how .section-head.center{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 18px;
}

.refer-steps{
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: start;
}

.refer-step{
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.refer-step h3{
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.refer-step p{
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.75;
}

.step-badge{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 1px solid var(--border);
}

.step-1{ background: color-mix(in srgb, #FFD66B, transparent 65%); }
.step-2{ background: color-mix(in srgb, #FF8A6B, transparent 70%); }
.step-3{ background: color-mix(in srgb, #1BC6D3, transparent 75%); }

.step-arrow{
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--primary), #ffffff 20%);
  opacity: 0.85;
  margin-top: 30px;
}

.step-arrow svg{
  width: 160px;
  height: 52px;
}

/* CTA row */
.refer-cta-row{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Rules */
.refer-rules-card{
  padding: 22px;
}

.refer-rules-head{
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.icon-chip{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--primary), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--primary), transparent 60%);
}

.icon-chip svg{
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.refer-rules-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.refer-rule{
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card), transparent 0%);
  border-radius: 16px;
  padding: 16px;
}

.refer-rule h4{
  font-size: 15px;
  margin-bottom: 6px;
}

.refer-rule p{
  color: var(--muted);
  line-height: 1.75;
}

.refer-rules-foot{
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 980px){
  .refer-hero-grid{
    grid-template-columns: 1fr;
  }
  .refer-steps{
    grid-template-columns: 1fr;
  }
  .step-arrow{
    display: none;
  }
  .refer-rules-grid{
    grid-template-columns: 1fr;
  }
}



/* ---- Blog Hero ---- */
.blog-hero {
  padding: 72px 0 56px;
  background: radial-gradient(1200px 500px at 15% 20%, rgba(76, 195, 255, 0.35), transparent 60%),
    radial-gradient(1000px 450px at 75% 10%, rgba(120, 255, 200, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(110, 220, 255, 0.32), rgba(110, 220, 255, 0.15));
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-hero-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 800;
}

.blog-hero-title .solid {
  color: #0b1220;
}

.blog-hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(11, 18, 32, 0.28);
  text-stroke: 2px rgba(11, 18, 32, 0.28);
}

/* ---- Blog Nav ---- */
.blog-nav {
  background: rgba(165, 230, 255, 0.22);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-nav-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.blog-nav-link {
  color: rgba(11, 18, 32, 0.72);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.blog-nav-link.is-active,
.blog-nav-link:hover {
  color: #0b1220;
}

.blog-nav-spacer {
  flex: 1;
}

.blog-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(11, 18, 32, 0.72);
  font-weight: 700;
  font-size: 14px;
}

.blog-search:hover {
  color: #0b1220;
}

.blog-search-ico {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.blog-search-ico svg {
  width: 18px;
  height: 18px;
}

/* ---- Trending header ---- */
.blog-trending-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.blog-section-title {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: 40px;
  letter-spacing: -0.02em;
}

.blog-section-arrow {
  width: 26px;
  height: 26px;
  display: inline-flex;
  opacity: 0.8;
}

/* ---- Featured post ---- */
.blog-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  padding: 22px;
  margin-bottom: 26px;
  border-radius: 16px;
}

.blog-feature-media {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.06);
  min-height: 260px;
}

.blog-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-feature-title {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.blog-feature-excerpt {
  margin: 0 0 18px;
  color: rgba(11, 18, 32, 0.68);
  line-height: 1.65;
}

/* ---- Meta ---- */
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.08);
  display: inline-flex;
}

.blog-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-author-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.blog-author-text strong {
  font-size: 13px;
  color: #0b1220;
}

.blog-author-text span {
  font-size: 12px;
  color: rgba(11, 18, 32, 0.55);
}

.blog-read {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(11, 18, 32, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

.blog-read:hover {
  color: #0b1220;
  border-color: rgba(15, 23, 42, 0.2);
}

.blog-read svg {
  width: 18px;
  height: 18px;
}

/* ---- Grid cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.blog-card-media {
  display: block;
  background: rgba(15, 23, 42, 0.06);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 16px 18px 18px;
}

.blog-card-title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.blog-card-title a {
  color: #0b1220;
  text-decoration: none;
}

.blog-card-title a:hover {
  text-decoration: underline;
}

.blog-card-excerpt {
  margin: 0 0 14px;
  color: rgba(11, 18, 32, 0.65);
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .blog-feature {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-section-title {
    font-size: 30px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   BLOG SUBSCRIBE CTA
========================= */

.blog-subscribe {
  background: linear-gradient(
    180deg,
    rgba(180, 235, 255, 0.55),
    rgba(200, 245, 255, 0.75)
  );
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  font-weight: 600;
}

.blog-pagination a {
  text-decoration: none;
  color: rgba(11, 18, 32, 0.6);
}

.blog-pagination a.is-active {
  color: #0b1220;
}

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

.subscribe-title {
  margin-bottom: 28px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.subscribe-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(11, 18, 32, 0.25);
}

.subscribe-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px 28px;
  background: #fff;
  border-radius: 28px;
  border: 1.5px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 20px 40px rgba(11, 18, 32, 0.08);
}

.subscribe-text {
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.7);
}

.subscribe-form {
  display: flex;
  justify-content: center;
}

.subscribe-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 170, 200, 0.12);
  border-radius: 999px;
  padding: 8px;
  width: 100%;
  max-width: 520px;
}

.subscribe-input input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 18px;
  font-size: 15px;
  outline: none;
  color: #0b1220;
}

.subscribe-input input::placeholder {
  color: rgba(11, 18, 32, 0.45);
}

.subscribe-input .btn {
  border-radius: 999px;
  padding: 12px 26px;
}


/* =========================================
   BLOG POST VISIBILITY FIX (DARK UI)
   Paste at the very bottom of styles.css
========================================= */

/* Make the blog post page use readable "on-dark" colors */
.blogpost-hero,
.blogpost-hero * {
  color: rgba(255, 255, 255, 0.92);
}

.blogpost-kicker {
  color: rgba(255, 255, 255, 0.6) !important;
}

.blogpost-dek {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* Pills/tags */
.blogpost-tags .pill {
  color: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.blogpost-tags .pill-soft {
  color: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Cards / surfaces on dark */
.blogpost-cover.card,
.blogpost-byline.card,
.side-card {
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.side-card p {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* Article text */
.blogpost-article h2 {
  color: rgba(255, 255, 255, 0.92) !important;
}

.blogpost-article p {
  color: rgba(255, 255, 255, 0.74) !important;
}

/* Author row */
.byline-name {
  color: rgba(255, 255, 255, 0.9) !important;
}

.byline-date {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Make share icons + copy link button visible */
.byline-right,
.byline-right * {
  color: rgba(255, 255, 255, 0.9);
}

.share,
.side-social .social {
  color: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.share:hover,
.side-social .social:hover {
  background: rgba(255, 255, 255, 0.10) !important;
}

.btn.btn-small,
.btn-small {
  color: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.btn.btn-small:hover,
.btn-small:hover {
  background: rgba(255, 255, 255, 0.10) !important;
}

/* Newsletter input visibility */
.newsletter-form input {
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}


/* =========================
   FOOTER (Refactor Styles)
   Paste into your existing styles.css (no new CSS file)
========================= */

.site-footer { margin-top: 80px; }

/* CTA band */
.footer-cta{
  position: relative;
  padding: 72px 0 56px;
  background: radial-gradient(80% 120% at 50% 0%,
    rgba(33, 190, 255, .18) 0%,
    rgba(46, 255, 178, .12) 45%,
    rgba(0, 0, 0, 0) 70%),
    #05070b;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-cta-inner{ position: relative; }
.footer-cta-copy{
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.footer-cta-title{
  font-family: DegularDisplay, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  color: rgba(255,255,255,.95);
  margin: 0 0 12px;
}

.footer-cta-sub{
  font-family: IBMPlexSans, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255,255,255,.72);
  margin: 0 auto 18px;
  max-width: 62ch;
}

.footer-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.footer-cta-btn .btn-ic{
  width: 18px;
  height: 18px;
  display: inline-flex;
}
.footer-cta-btn .btn-ic svg{ width: 18px; height: 18px; }

.footer-stats{
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: flex-end;
  margin-top: 26px;
}
.footer-stats .stat{
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.footer-stats .stat-value{
  font-family: DegularDisplay, system-ui, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: rgba(255,255,255,.95);
}
.footer-stats .stat-label{
  margin-top: 6px;
  font-family: IBMPlexSans, system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.68);
}

/* Decorative leaves */
.footer-cta .leaf{
  position: absolute;
  color: rgba(180, 220, 255, .45);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.35));
}
.footer-cta .leaf-1{ left: 6%; top: 16%; width: 120px; transform: rotate(-10deg); opacity: .55; }
.footer-cta .leaf-2{ right: 7%; top: 10%; width: 140px; transform: rotate(10deg); opacity: .55; }
.footer-cta .leaf-3{ left: 16%; bottom: 12%; width: 90px; transform: rotate(14deg); opacity: .45; }
.footer-cta .leaf-4{ right: 14%; bottom: 16%; width: 90px; transform: rotate(-12deg); opacity: .45; }

/* Main footer */
.footer-main{
  background: #05070b;
  padding: 56px 0 44px;
}

.footer-main-grid{
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: 34px;
}

.footer-intro-title{
  font-family: DegularDisplay, system-ui, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: rgba(255,255,255,.95);
  margin: 0 0 6px;
}
.footer-intro-sub{
  font-family: IBMPlexSans, system-ui, sans-serif;
  color: rgba(255,255,255,.70);
  margin: 0 0 18px;
}
.footer-intro-btn{ display: inline-flex; }

/* Link columns */
.footer-links{
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 26px;
  align-content: start;
}
.footer-col-title{
  font-family: IBMPlexSans, system-ui, sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  margin-bottom: 10px;
}
.footer-link{
  display: block;
  font-family: IBMPlexSans, system-ui, sans-serif;
  color: rgba(255,255,255,.66);
  text-decoration: none;
  padding: 6px 0;
}
.footer-link:hover{ color: rgba(255,255,255,.92); }

/* Right visual cards */
.footer-visual{
  position: relative;
  min-height: 240px;
  align-self: start;
}
.card-mock{
  position: absolute;
  width: 190px;
  height: 260px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}
.card-mock .chip{
  position: absolute;
  left: 18px; top: 20px;
  width: 44px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.card-mock .waves{
  position: absolute;
  right: 18px; top: 24px;
  width: 30px; height: 30px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.18);
  opacity: .75;
}
.card-mock .mark{
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 54px;
  height: 54px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(33, 190, 255, .35), rgba(46, 255, 178, .25));
  border: 1px solid rgba(255,255,255,.14);
}

.card-mock-1{
  right: 10px;
  top: 14px;
  transform: rotate(12deg);
}
.card-mock-2{
  right: 120px;
  top: 52px;
  transform: rotate(-10deg);
  background: linear-gradient(180deg, rgba(33,190,255,.18), rgba(255,255,255,.03));
}

/* Language row */
.footer-lang{
  grid-column: 1 / -1;
  margin-top: 18px;
}
.lang-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
  font-family: IBMPlexSans, system-ui, sans-serif;
}
.lang-btn .chev{ width: 16px; height: 16px; display: inline-flex; }
.lang-btn .chev svg{ width: 16px; height: 16px; }

/* Bottom strip */
.footer-bottom{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-brand{ display: inline-flex; align-items: center; }
.footer-logo{
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

/* Social */
.footer-social{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.footer-social-label{
  font-family: IBMPlexSans, system-ui, sans-serif;
  color: rgba(255,255,255,.70);
  margin-right: 6px;
}
.social-ic{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.social-ic svg{ width: 18px; height: 18px; }

/* Badges */
.footer-badges{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-badge{
  display: inline-flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.9);
  font-family: IBMPlexSans, system-ui, sans-serif;
}
.trust-stars{ opacity: .9; letter-spacing: 2px; }

.store-badge{
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration: none;
  color: rgba(255,255,255,.92);
  min-width: 150px;
}
.store-kicker{
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .75;
  font-family: IBMPlexSans, system-ui, sans-serif;
}
.store-name{
  font-family: IBMPlexSans, system-ui, sans-serif;
  font-weight: 700;
}

/* Legal microcopy */
.footer-legal{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  font-family: IBMPlexSans, system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px){
  .footer-main-grid{ grid-template-columns: 1fr; }
  .footer-visual{ order: 2; min-height: 220px; }
  .footer-links{ grid-template-columns: repeat(2, minmax(160px, 1fr)); }
  .footer-bottom{ grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-badges{ justify-content: center; }
  .footer-legal{ grid-template-columns: 1fr; }
}

/* =========================
   TRUSTED BY (logo marquee)
   ========================= */

.trust {
  padding: 18px 18px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.trust__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.trust__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.trust__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.trust__marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.trust__marquee::before,
.trust__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trust__marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0));
}

.trust__marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.9), rgba(0,0,0,0));
}

.trust__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: trust-marquee 26s linear infinite;
  will-change: transform;
}

.trust__logo {
  width: 140px;
  height: 40px;
  flex: 0 0 auto;
  opacity: 0.95;
  transform: translateZ(0);
}

.trust__logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .trust__track { animation: none; }
}

/* Make pills readable on dark / glass cards */
.pill{
  color: rgba(255,255,255,.92) !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}

/* If your pill contains links or icons */
.pill a,
.pill svg{
  color: inherit !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Optional: stronger hover for clarity */
.pill:hover{
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.22) !important;
}

/* Pills/chips inside light cards */
.surface-light .pill,
.surface-light .pill:link,
.surface-light .pill:visited {
  background: rgba(0, 0, 0, 0.06) !important;
  border: 1px solid rgba(0, 0, 0, 0.16) !important;
  color: rgba(0, 0, 0, 0.82) !important;
  opacity: 1 !important;
}

/* If pills are buttons/anchors and have hover states */
.surface-light .pill:hover {
  background: rgba(0, 0, 0, 0.09) !important;
  border-color: rgba(0, 0, 0, 0.22) !important;
  color: rgba(0, 0, 0, 0.90) !important;
}

/* If your global theme sets "muted" too light inside pills */
.surface-light .pill .muted {
  color: rgba(0, 0, 0, 0.70) !important;
}

/* =========================
   LIGHT SURFACE CARDS
   (fix invisible text on light cards)
   ========================= */
.surface-light {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.88);
}

.surface-light h1,
.surface-light h2,
.surface-light h3,
.surface-light strong {
  color: rgba(0, 0, 0, 0.92);
}

.surface-light p,
.surface-light .muted,
.surface-light .hint,
.surface-light li,
.surface-light a {
  color: rgba(0, 0, 0, 0.70);
}

/* Pills inside light cards */
.surface-light .pill {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.78);
}

/* Optional: if your .card forces a dark gradient, neutralize it here */
.card.surface-light {
  background-image: none !important;
}

/* Optional: make icon tiles readable on light surface */
.surface-light .logo-badge {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
}

/* =========================
   INVOICE PAGE (dark theme)
   ========================= */

.invoice-hero{
  position: relative;
  padding: clamp(34px, 6vw, 80px) 0;
  overflow: hidden;
}

/* subtle dark gradient backdrop */
.invoice-hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(36, 255, 198, .10), transparent 60%),
    radial-gradient(900px 520px at 85% 30%, rgba(65, 145, 255, .14), transparent 60%),
    radial-gradient(900px 520px at 50% 85%, rgba(0,0,0,.35), transparent 70%);
  pointer-events:none;
}

.invoice-hero-grid{
  position: relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.invoice-hero-left{ padding-top: 6px; }
.invoice-hero-right{ display:flex; justify-content:flex-end; }

.invoice-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom: 18px;
}

.invoice-pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2px;
}

.invoice-title{
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.invoice-title-accent{
  color: rgba(36, 255, 198, .92);
}

.invoice-lead{
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.invoice-hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.invoice-feature-chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 8px;
}

.invoice-chip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.90);
  font-weight: 600;
  font-size: 13px;
}

.invoice-dot{
  width:10px;
  height:10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(36,255,198,.95), rgba(65,145,255,.85));
  box-shadow: 0 0 0 3px rgba(36,255,198,.12);
}

/* Invoice preview card */
.invoice-preview{
  width: min(520px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:
    0 24px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}

.invoice-preview-head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.invoice-brand{
  display:flex;
  gap: 12px;
  align-items:center;
}

.invoice-brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(36,255,198,.85), transparent 60%),
    radial-gradient(12px 12px at 70% 70%, rgba(65,145,255,.85), transparent 60%),
    rgba(255,255,255,.03);
}

.invoice-brand-title{
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,.94);
  line-height: 1.1;
}

.invoice-brand-sub{ font-size: 13px; }

.invoice-status{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
}

.invoice-preview-body{
  padding: 16px 18px 10px;
}

.invoice-preview-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.invoice-kpi,
.invoice-to{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  padding: 14px 14px;
}

.invoice-kpi-label{ font-size: 12px; font-weight: 700; }
.invoice-kpi-value{
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 6px 0 6px;
  color: rgba(255,255,255,.96);
}
.invoice-kpi-sub{ font-size: 13px; }

.invoice-to-label{ font-size: 12px; font-weight: 700; }
.invoice-to-name{ font-size: 20px; font-weight: 900; margin: 2px 0 10px; }

.invoice-id{ font-size: 12px; font-weight: 700; }
.invoice-id-value{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
  color: rgba(255,255,255,.94);
}

.invoice-lines{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  padding: 12px 14px;
  margin: 14px 0;
}

.invoice-line{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 700;
}
.invoice-line:last-child{ border-bottom: none; }
.invoice-line-price{ color: rgba(255,255,255,.90); }
.invoice-line-muted{ color: rgba(255,255,255,.78); font-weight: 700; }

.invoice-protection{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
}

.invoice-seal{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(36,255,198,.88); /* currentColor for SVG */
}

.invoice-protection-title{
  font-weight: 900;
  font-size: 18px;
  color: rgba(255,255,255,.94);
  line-height: 1.15;
}
.invoice-protection-sub{ font-size: 13px; }

.invoice-pay{
  display:flex;
  justify-content:flex-start;
  padding: 14px 0 6px;
}

.invoice-pay-btn{
  padding-left: 20px;
  padding-right: 20px;
}

.invoice-preview-foot{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.invoice-mini{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 13px;
}

/* lower section */
.invoice-section{
  padding: clamp(34px, 5vw, 70px) 0;
}

.invoice-section-head{
  max-width: 760px;
  margin-bottom: 18px;
}

.invoice-h2{
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.01em;
}

.invoice-p{ margin: 0; }

.invoice-grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.invoice-card{
  padding: 18px;
}

.invoice-card-icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  margin-bottom: 10px;
}

.invoice-cta-row{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 980px){
  .invoice-hero-grid{
    grid-template-columns: 1fr;
  }
  .invoice-hero-right{
    justify-content: flex-start;
  }
  .invoice-preview{
    width: 100%;
  }
  .invoice-grid-4{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .invoice-preview-grid{
    grid-template-columns: 1fr;
  }
  .invoice-grid-4{
    grid-template-columns: 1fr;
  }
  .invoice-title{
    font-size: 40px;
  }
}


/* HEAD */
.vp-helpHead{
  margin-bottom: 18px;
}

/* MAIN 2-COL LAYOUT */
.vp-helpLayout{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

@media (max-width: 1100px){
  .vp-helpLayout{
    grid-template-columns: 1fr;
  }
}

/* LEFT: 2x2 GRID */
.vp-helpCards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 18px);
}

@media (max-width: 640px){
  .vp-helpCards{
    grid-template-columns: 1fr;
  }
}

/* CARD */
.vp-helpCard{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  overflow: hidden;

  /* KEY: make all cards consistent */
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  padding: 20px;
  min-height: 260px;
}

@media (max-width: 860px){
  .vp-helpCard{
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

.vp-helpCardText h3{
  margin: 0 0 10px;
  color: rgba(255,255,255,.92);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 950;
}

.vp-helpCardText p{
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.7;
}

/* MEDIA BLOCK */
.vp-helpCardMedia{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(120px 90px at 30% 25%, rgba(56,255,167,.28), transparent 62%),
    radial-gradient(140px 100px at 75% 40%, rgba(0,209,255,.25), transparent 62%),
    rgba(255,255,255,.05);
  min-height: 190px;
  position: relative;
}

/* Keep the right panel aligned nicely */
.vp-featurePanel{
  align-self: stretch;
}

/* ===========================
   VeeraPay PayLinks (NEW)
   Paste at bottom of styles.css
   =========================== */

.vp-paylink {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.92);
  background: radial-gradient(1200px 600px at 20% 0%, rgba(32, 201, 151, 0.18), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(59, 130, 246, 0.18), transparent 50%),
    radial-gradient(900px 700px at 60% 90%, rgba(99, 102, 241, 0.16), transparent 55%),
    #060a12;
}

.vp-container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.vp-hero {
  padding: clamp(48px, 7vw, 84px) 0 28px;
}

.vp-hero__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

@media (max-width: 980px) {
  .vp-hero__grid {
    grid-template-columns: 1fr;
  }
}

.vp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.vp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 13px;
}

.vp-hero__title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.vp-hero__sub {
  margin: 0 0 18px;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.vp-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}

.vp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  user-select: none;
}

.vp-btn:hover {
  transform: translateY(-1px);
}

.vp-btn--primary {
  background: linear-gradient(90deg, #22c55e, #06b6d4, #3b82f6);
  color: #07111b;
}

.vp-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.vp-btn--mini {
  padding: 10px 14px;
  width: 100%;
  background: linear-gradient(90deg, #22c55e, #06b6d4, #3b82f6);
  color: #07111b;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
}

.vp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.vp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  font-size: 13px;
}

.vp-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.vp-hero__art {
  display: grid;
  justify-items: end;
}

.vp-hero__figure {
  width: min(520px, 100%);
  border-radius: 26px;
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.vp-person {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.vp-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

@media (max-width: 980px) {
  .vp-hero__art {
    justify-items: start;
  }
  .vp-person {
    height: 320px;
  }
}

.vp-bubble {
  position: absolute;
  right: 20px;
  top: 30px;
  width: min(300px, 78%);
  border-radius: 16px;
  padding: 12px 12px 10px;
  background: rgba(10, 18, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.vp-bubble__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

.vp-bubble__tag {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: rgba(255, 255, 255, 0.92);
}

.vp-bubble__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.vp-bubble__link {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px 10px;
  word-break: break-all;
}

.vp-preview {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(320px, 76%);
  border-radius: 18px;
  padding: 14px;
  background: rgba(10, 18, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.vp-preview__row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.vp-preview__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vp-preview__title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.vp-preview__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.vp-preview__status {
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  color: #07111b;
  background: rgba(34, 197, 94, 0.95);
}

.vp-preview__amount {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
}

.vp-preview__label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.70);
}

.vp-preview__value {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Marquee */
.vp-marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.vp-marquee__track {
  display: flex;
  width: 100%;
}

.vp-marquee__content {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  white-space: nowrap;
  animation: vp-marquee 22s linear infinite;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
}

@keyframes vp-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Section */
.vp-section {
  padding: 46px 0 80px;
}

.vp-section__head {
  max-width: 70ch;
  margin: 0 0 24px;
}

.vp-h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.vp-muted {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
}

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

@media (max-width: 980px) {
  .vp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .vp-grid {
    grid-template-columns: 1fr;
  }
}

.vp-card {
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  min-height: 150px;
}

.vp-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
}

.vp-card__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.vp-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.55;
  font-size: 14px;
}

/* CTA Bar */
.vp-ctaBar {
  margin-top: 16px;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
      90deg,
      rgba(34, 197, 94, 0.14),
      rgba(6, 182, 212, 0.10),
      rgba(59, 130, 246, 0.10)
    ),
    rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

@media (max-width: 760px) {
  .vp-ctaBar {
    grid-template-columns: 1fr;
  }
  .vp-ctaBar__right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
}

.vp-ctaBar__title {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.vp-ctaBar__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}


/* ================================
   Cars Use Case (append to styles.css)
   Scoped to avoid breaking existing site
================================== */

.cars-usecase{
  /* fallback colors if your CSS variables aren’t present */
  --cars-bg: var(--bg, #070A10);
  --cars-text: var(--text, #EAF0FF);
  --cars-muted: var(--muted, rgba(234,240,255,.72));
  --cars-card: var(--card, rgba(255,255,255,.06));
  --cars-border: var(--border, rgba(255,255,255,.12));
  --cars-accent: var(--accent, #22F2B4); /* VeeraPay green-ish */
  --cars-accent2: var(--accent2, #2AA8FF); /* VeeraPay blue-ish */

  /* map your 3 provided images here */
  --car-hero: url("../images/car-hero.png");         /* side profile */
  --car-risk: url("../images/car-headlight.png");    /* headlight */
  --car-steps: url("../images/car-window.png");      /* window */

  color: var(--cars-text);
  background: var(--cars-bg);
}

.cars-container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.cars-h2{
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.cars-h2--xl{
  font-size: clamp(36px, 4.8vw, 64px);
}

.cars-h3{
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.cars-p, .cars-sub{
  color: var(--cars-muted);
  margin: 0;
}

.cars-sub{ max-width: 72ch; }

/* Buttons (scoped) */
.cars-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--cars-border);
  background: rgba(255,255,255,.04);
  color: var(--cars-text);
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.cars-btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.cars-btn--primary{
  border: none;
  background: linear-gradient(90deg, var(--cars-accent), var(--cars-accent2));
  color: #041018;
}
.cars-btn--ghost{
  background: rgba(0,0,0,.15);
}
.cars-btn--wide{ width: 100%; }

/* HERO */
.cars-hero{
  position: relative;
  padding: clamp(72px, 7vw, 110px) 0;
  min-height: 520px;
  background:
    radial-gradient(1200px 600px at 30% 10%, rgba(42,168,255,.18), transparent 55%),
    radial-gradient(900px 500px at 20% 70%, rgba(34,242,180,.14), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.88)),
    var(--car-hero);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cars-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.64) 45%, rgba(0,0,0,.35) 100%);
  pointer-events:none;
}

.cars-hero__content{
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cars-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--cars-border);
  background: rgba(0,0,0,.25);
  color: rgba(234,240,255,.86);
  font-weight: 600;
  margin: 0 0 14px;
}

.cars-hero__title{
  margin: 0 0 10px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.cars-hero__lead{
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--cars-muted);
  max-width: 70ch;
}

.cars-hero__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 26px;
}

.cars-hero__meta{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cars-stat{
  border: 1px solid var(--cars-border);
  background: rgba(0,0,0,.18);
  border-radius: 14px;
  padding: 10px 12px;
  min-width: 132px;
}

.cars-stat__value{
  font-weight: 800;
  font-size: 18px;
}

.cars-stat__label{
  color: var(--cars-muted);
  font-size: 12px;
}

.cars-badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cars-badge{
  border: 1px solid var(--cars-border);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.88);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* SECTIONS */
.cars-section{
  padding: clamp(56px, 6vw, 88px) 0;
}

.cars-section--engine{
  background: radial-gradient(900px 500px at 20% 0%, rgba(42,168,255,.12), transparent 60%);
}

.cars-center{ text-align:center; margin-bottom: 18px; }

/* Feature cards */
.cars-feature-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.cars-feature{
  border: 1px solid var(--cars-border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.cars-ico{
  width: 44px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  background: rgba(34,242,180,.10);
  border: 1px solid rgba(34,242,180,.22);
  margin-bottom: 12px;
}

.cars-ico--ring{
  border-radius: 999px;
  background: rgba(34,242,180,.10);
}

/* Pillars */
.cars-pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.cars-pillar{
  border: 1px solid var(--cars-border);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  padding: 18px;
}

/* Compare */
.cars-section--compare{
  background: radial-gradient(900px 520px at 70% 0%, rgba(34,242,180,.10), transparent 60%);
}

.cars-compare{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.cars-compare-card{
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--cars-border);
}

.cars-compare-card--danger{ outline: 2px solid rgba(255, 64, 64, .55); outline-offset: -2px; }
.cars-compare-card--safe{ outline: 2px solid rgba(34,242,180,.60); outline-offset: -2px; }

.cars-list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
  color: rgba(234,240,255,.84);
}

.cars-dot{
  display:inline-flex;
  width: 22px;
  height: 22px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  margin-right: 10px;
  font-weight: 800;
}
.cars-dot--danger{ background: rgba(255,64,64,.16); border: 1px solid rgba(255,64,64,.35); }
.cars-dot--safe{ background: rgba(34,242,180,.12); border: 1px solid rgba(34,242,180,.28); }

.cars-accent{ color: var(--cars-accent); }

.cars-cta-strip{
  margin-top: 18px;
  border: 1px solid var(--cars-border);
  border-radius: 20px;
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg, rgba(34,242,180,.12), rgba(42,168,255,.10));
}

/* Steps section with car background like your reference */
.cars-steps{
  position: relative;
  padding: clamp(64px, 7vw, 96px) 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.78) 45%, rgba(0,0,0,.62) 100%),
    var(--car-steps);
  background-size: cover;
  background-position: left center;
}

.cars-steps__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}

.cars-timeline{
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 12px;
}

.cars-step{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--cars-border);
  background: rgba(255,255,255,.04);
}

.cars-step__num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(34,242,180,.16);
  border: 1px solid rgba(34,242,180,.32);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: rgba(234,240,255,.95);
  flex: 0 0 auto;
}

.cars-step__label{
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--cars-accent);
  font-size: 12px;
  margin-bottom: 4px;
}

.cars-step__text{
  color: rgba(234,240,255,.86);
  line-height: 1.45;
}

.cars-callout{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid var(--cars-border);
  background: rgba(255,255,255,.04);
  padding: 18px;
  display:flex;
  gap: 14px;
  align-items: start;
}

.cars-callout__icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(42,168,255,.12);
  border: 1px solid rgba(42,168,255,.24);
}

/* Risk section with right-side headlight background */
.cars-risk{
  padding: clamp(64px, 7vw, 96px) 0;
  background: rgba(0,0,0,.35);
}

.cars-risk__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.cars-risk__right{
  border-radius: 22px;
  border: 1px solid var(--cars-border);
  background:
    linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.25)),
    var(--car-risk);
  background-size: cover;
  background-position: right center;
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
}

.cars-risk__item{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--cars-border);
  background: rgba(255,255,255,.03);
  margin-top: 12px;
}

/* Partner */
.cars-section--partner{
  background: radial-gradient(1100px 620px at 20% 30%, rgba(34,242,180,.12), transparent 60%);
}

.cars-partner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.cars-checks{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display:grid;
  gap: 12px;
  color: rgba(234,240,255,.86);
}

.cars-check{
  display:inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  align-items:center;
  justify-content:center;
  background: rgba(34,242,180,.16);
  border: 1px solid rgba(34,242,180,.30);
  margin-right: 10px;
  font-weight: 800;
}

.cars-form{
  border: 1px solid var(--cars-border);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
}

.cars-form__title{ margin-bottom: 12px; }

.cars-form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.cars-field{ display:grid; gap: 6px; }
.cars-field span{ color: rgba(234,240,255,.78); font-size: 12px; }
.cars-field--full{ grid-column: 1 / -1; }

.cars-field input,
.cars-field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--cars-text);
  padding: 12px 12px;
  outline: none;
}

.cars-field input:focus,
.cars-field textarea:focus{
  border-color: rgba(34,242,180,.35);
  box-shadow: 0 0 0 3px rgba(34,242,180,.12);
}

.cars-form__fine{
  margin: 12px 0 0;
  color: rgba(234,240,255,.70);
  font-size: 12px;
}

.cars-form__fine a{ color: var(--cars-accent); }

/* Responsive */
@media (max-width: 980px){
  .cars-feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .cars-pillars{ grid-template-columns: 1fr; }
  .cars-compare{ grid-template-columns: 1fr; }
  .cars-steps__grid{ grid-template-columns: 1fr; }
  .cars-risk__grid{ grid-template-columns: 1fr; }
  .cars-partner{ grid-template-columns: 1fr; }
  .cars-form__grid{ grid-template-columns: 1fr; }
}


/* ================================
   Travel Use Case
================================== */

.travel-usecase{
  --travel-bg: var(--bg, #070A10);
  --travel-text: var(--text, #EAF0FF);
  --travel-muted: var(--muted, rgba(234,240,255,.72));
  --travel-border: var(--border, rgba(255,255,255,.12));

  /* VeeraPay accents (pull from site tokens if present) */
  --travel-accent: var(--accent, #22F2B4);
  --travel-accent2: var(--accent2, #2AA8FF);

  /* Replace these with real travel images later */
  --travel-hero-img: url("../images/travel-hero.png");
  --travel-steps-img: url("../images/travel-steps.png");
  --travel-risk-img: url("../images/travel-risk.png");

  color: var(--travel-text);
  background: var(--travel-bg);
}

.travel-container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.travel-h2{
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.travel-h2--xl{ font-size: clamp(36px, 4.8vw, 64px); }

.travel-h3{
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.travel-p, .travel-sub{
  color: var(--travel-muted);
  margin: 0;
}

/* Buttons (scoped) */
.travel-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--travel-border);
  background: rgba(255,255,255,.04);
  color: var(--travel-text);
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.travel-btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.travel-btn--primary{
  border: none;
  background: linear-gradient(90deg, var(--travel-accent), var(--travel-accent2));
  color: #041018;
}
.travel-btn--ghost{ background: rgba(0,0,0,.15); }
.travel-btn--wide{ width: 100%; }

/* HERO (same feel as Cars) */
.travel-hero{
  position: relative;
  padding: clamp(72px, 7vw, 110px) 0;
  min-height: 520px;
  background:
    radial-gradient(1200px 600px at 30% 10%, rgba(42,168,255,.18), transparent 55%),
    radial-gradient(900px 500px at 20% 70%, rgba(34,242,180,.14), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.88)),
    var(--travel-hero-img);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.travel-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.64) 45%, rgba(0,0,0,.35) 100%);
  pointer-events:none;
}
.travel-hero__content{
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.travel-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--travel-border);
  background: rgba(0,0,0,.25);
  color: rgba(234,240,255,.86);
  font-weight: 600;
  margin: 0 0 14px;
}
.travel-hero__title{
  margin: 0 0 10px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.travel-hero__lead{
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--travel-muted);
  max-width: 70ch;
}
.travel-hero__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 26px;
}
.travel-hero__meta{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.travel-stat{
  border: 1px solid var(--travel-border);
  background: rgba(0,0,0,.18);
  border-radius: 14px;
  padding: 10px 12px;
  min-width: 150px;
}
.travel-stat__value{ font-weight: 800; font-size: 16px; }
.travel-stat__label{ color: var(--travel-muted); font-size: 12px; }
.travel-badges{ display:flex; gap: 10px; flex-wrap: wrap; }
.travel-badge{
  border: 1px solid var(--travel-border);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.88);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Sections */
.travel-section{ padding: clamp(56px, 6vw, 88px) 0; }
.travel-section--engine{
  background: radial-gradient(900px 500px at 20% 0%, rgba(42,168,255,.12), transparent 60%);
}
.travel-center{ text-align:center; margin-bottom: 18px; }

/* Feature cards */
.travel-feature-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.travel-feature{
  border: 1px solid var(--travel-border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.travel-ico{
  width: 44px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  background: rgba(34,242,180,.10);
  border: 1px solid rgba(34,242,180,.22);
  margin-bottom: 12px;
}
.travel-ico--ring{
  border-radius: 999px;
  background: rgba(34,242,180,.10);
}

/* Pillars */
.travel-pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.travel-pillar{
  border: 1px solid var(--travel-border);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  padding: 18px;
}

/* Compare */
.travel-section--compare{
  background: radial-gradient(900px 520px at 70% 0%, rgba(34,242,180,.10), transparent 60%);
}
.travel-compare{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.travel-compare-card{
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--travel-border);
}
.travel-compare-card--danger{ outline: 2px solid rgba(255, 64, 64, .55); outline-offset: -2px; }
.travel-compare-card--safe{ outline: 2px solid rgba(34,242,180,.60); outline-offset: -2px; }
.travel-list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
  color: rgba(234,240,255,.84);
}
.travel-dot{
  display:inline-flex;
  width: 22px;
  height: 22px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  margin-right: 10px;
  font-weight: 800;
}
.travel-dot--danger{ background: rgba(255,64,64,.16); border: 1px solid rgba(255,64,64,.35); }
.travel-dot--safe{ background: rgba(34,242,180,.12); border: 1px solid rgba(34,242,180,.28); }
.travel-accent{ color: var(--travel-accent); }

.travel-cta-strip{
  margin-top: 18px;
  border: 1px solid var(--travel-border);
  border-radius: 20px;
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg, rgba(34,242,180,.12), rgba(42,168,255,.10));
}
.travel-cta-strip__title{ margin:0; }
.travel-cta-strip__sub{ margin:0; }

/* Steps w/ background image slot */
.travel-steps{
  position: relative;
  padding: clamp(64px, 7vw, 96px) 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.78) 45%, rgba(0,0,0,.62) 100%),
    var(--travel-steps-img);
  background-size: cover;
  background-position: left center;
}
.travel-steps__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}
.travel-timeline{
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 12px;
}
.travel-step{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--travel-border);
  background: rgba(255,255,255,.04);
}
.travel-step__num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(34,242,180,.16);
  border: 1px solid rgba(34,242,180,.32);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: rgba(234,240,255,.95);
  flex: 0 0 auto;
}
.travel-step__label{
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--travel-accent);
  font-size: 12px;
  margin-bottom: 4px;
}
.travel-step__text{ color: rgba(234,240,255,.86); line-height: 1.45; }

.travel-callout{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid var(--travel-border);
  background: rgba(255,255,255,.04);
  padding: 18px;
  display:flex;
  gap: 14px;
  align-items: start;
}
.travel-callout__icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(42,168,255,.12);
  border: 1px solid rgba(42,168,255,.24);
}

/* Risk w/ right-side image slot */
.travel-risk{
  padding: clamp(64px, 7vw, 96px) 0;
  background: rgba(0,0,0,.35);
}
.travel-risk__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.travel-risk__right{
  border-radius: 22px;
  border: 1px solid var(--travel-border);
  background:
    linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.25)),
    var(--travel-risk-img);
  background-size: cover;
  background-position: right center;
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
}
.travel-risk__item{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--travel-border);
  background: rgba(255,255,255,.03);
  margin-top: 12px;
}

/* Partner */
.travel-section--partner{
  background: radial-gradient(1100px 620px at 20% 30%, rgba(34,242,180,.12), transparent 60%);
}
.travel-partner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.travel-checks{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display:grid;
  gap: 12px;
  color: rgba(234,240,255,.86);
}
.travel-check{
  display:inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  align-items:center;
  justify-content:center;
  background: rgba(34,242,180,.16);
  border: 1px solid rgba(34,242,180,.30);
  margin-right: 10px;
  font-weight: 800;
}
.travel-form{
  border: 1px solid var(--travel-border);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
}
.travel-form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.travel-field{ display:grid; gap: 6px; }
.travel-field span{ color: rgba(234,240,255,.78); font-size: 12px; }
.travel-field--full{ grid-column: 1 / -1; }
.travel-field input,
.travel-field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--travel-text);
  padding: 12px 12px;
  outline: none;
}
.travel-field input:focus,
.travel-field textarea:focus{
  border-color: rgba(34,242,180,.35);
  box-shadow: 0 0 0 3px rgba(34,242,180,.12);
}
.travel-form__fine{
  margin: 12px 0 0;
  color: rgba(234,240,255,.70);
  font-size: 12px;
}
.travel-form__fine a{ color: var(--travel-accent); }

/* Responsive */
@media (max-width: 980px){
  .travel-feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .travel-pillars{ grid-template-columns: 1fr; }
  .travel-compare{ grid-template-columns: 1fr; }
  .travel-steps__grid{ grid-template-columns: 1fr; }
  .travel-risk__grid{ grid-template-columns: 1fr; }
  .travel-partner{ grid-template-columns: 1fr; }
  .travel-form__grid{ grid-template-columns: 1fr; }
}

/* Slider */
.uc-slider{ position: relative; }

.uc-slides{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow: hidden;
}

.uc-slide{
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}

.uc-slide.is-active{
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Keep media frame constraints */
.uc-media-frame{ position: relative; }

/* Arrows */
.uc-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.uc-arrow.prev{ left: 12px; }
.uc-arrow.next{ right: 12px; }
.uc-arrow:hover{ background: rgba(0,0,0,0.6); }

/* Dots: use buttons so they’re clickable */
.uc-dots{ display: flex; gap: 8px; justify-content: center; }
.uc-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
}
.uc-dot.is-active{ background: rgba(34,197,94,0.95); }


/* Make the whole left item a big clickable tab */
.uc-how-left{ display: flex; flex-direction: column; gap: 14px; }

.uc-how-item{
  width: 100%;
  cursor: pointer;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  user-select: none;
}

.uc-how-item:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.uc-how-item.active{
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.10);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.18) inset;
}

/* Optional: better spacing inside */
.uc-how-item h3{ margin: 0 0 6px; }
.uc-how-item p{ margin: 0; opacity: 0.85; }


/* 1) Ensure the HOW panel doesn't stretch the left column items */
.uc-how-panel{
  align-items: start;              /* key: prevents cross-axis stretch */
}

/* If uc-how-panel is grid, also ensure items don't stretch vertically */
.uc-how-panel > *{
  align-self: start;
}

/* 2) Left column: no forced height distribution */
.uc-how-left{
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  justify-content: flex-start;     /* don't spread items */
}

/* 3) Cards: auto height, proportional to text */
.uc-how-item{
  padding: 18px 18px;
  height: auto !important;
  min-height: 0 !important;
  flex: 0 0 auto !important;       /* critical: prevents growing */
}

/* Optional: tighter typography spacing */
.uc-how-item h3{ margin: 0 0 6px; }
.uc-how-item p{ margin: 0; line-height: 1.4; opacity: .85; }

/* Shrink-wrap the whole widget */
.uc-how-panel{
  align-items: start;
  height: auto !important;
  min-height: 0 !important;
}

/* If you have a background wrapper around BOTH columns */
.uc-how-panel,
.uc-how-panel *{
  min-height: 0;
}


/* Frame should keep a clean ratio and not grow forever */
.uc-media-frame,
.uc-slider{
  width: 100%;
  aspect-ratio: 16 / 10;     /* tweak if you want taller: 16/11 or 4/3 */
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
  display: grid;
  place-items: center;
}

/* Ensure slides fill the frame */
.uc-slides,
.uc-slide{
  height: 100%;
}

/* Image scales nicely inside without stretching */
.uc-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;        /* use cover if you want it to crop instead */
  display: block;
}

/* =========================
   Use case: Connect platforms
========================= */
.uc-connect{
  padding: 72px 0;
}

.uc-connect-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.uc-connect-title{
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.02em;
}

.uc-accent{
  color: rgba(10,116,255,0.95); /* keep or swap to your accent var if you have one */
}

.uc-connect-sub{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  line-height: 1.6;
}

.uc-connect-points{
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}

.uc-point{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.uc-point-ico{
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(34,197,94,0.14);
  color: rgba(34,197,94,0.95);
  border: 1px solid rgba(34,197,94,0.25);
  font-weight: 800;
  line-height: 1;
}

.uc-point-body h3{
  margin: 0 0 6px;
  font-size: 18px;
}

.uc-point-body p{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.uc-connect-actions{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* Right media */
.uc-connect-media{
  display: grid;
  justify-items: end;
}

.uc-connect-frame{
  width: min(520px, 100%);
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}

.uc-connect-img{
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 980px){
  .uc-connect-grid{
    grid-template-columns: 1fr;
  }
  .uc-connect-media{
    justify-items: start;
  }
}


/* =========================================================
   VeeraPay in numbers (home section)
   Scoped: .vp-numbers*
   ========================================================= */

.vp-numbers{
  position: relative;
  overflow: hidden;
}

.vp-numbers::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(10,116,255,0.22), rgba(10,116,255,0) 62%),
    radial-gradient(900px 420px at 70% 30%, rgba(34,197,94,0.18), rgba(34,197,94,0) 60%);
  opacity: .95;
}

.vp-numbers .container{
  position: relative;
  z-index: 2;
}

.vp-numbers-head{
  text-align: center;
  margin-bottom: 22px;
}

.vp-numbers-title{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 64px);
  letter-spacing: -0.8px;
  line-height: 1.05;
}

.vp-numbers-sub{
  margin: 10px auto 0;
  max-width: 68ch;
  color: var(--muted);
}

.vp-numbers-grid{
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.vp-numbers-stack{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

/* Card base (mirrors your .card look but tighter + darker) */
.vp-numCard{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
}

.vp-numCard::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  opacity: .6;
}

/* HERO card layout */
.vp-numCard--hero{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
  padding: 22px;
  min-height: 320px;
}

.vp-numCard-heroCopy{
  align-self: center;
}

.vp-numCard-heroArt{
  display: grid;
  place-items: center;
}

.vp-numCard-heroArt img{
  width: min(420px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0,0,0,0.35));
}

/* MINI cards */
.vp-numCard--mini{
  padding: 18px 18px 16px;
  display: grid;
  gap: 14px;
  min-height: 152px;
}

/* Kicker pill */
.vp-numKicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  max-width: 100%;
  overflow: hidden;
}

.vp-numKicker strong{
  color: rgba(255,255,255,0.92);
}

.vp-numKicker--muted{
  color: rgba(255,255,255,0.70);
}

.vp-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent), transparent 85%);
  flex: 0 0 auto;
}

.vp-kickerIcon{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  flex: 0 0 auto;
}

.vp-numCenter{
  text-align: center;
  padding-top: 4px;
}

.vp-numCenter--split{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  text-align: left;
}

.vp-numVal{
  font-size: clamp(42px, 5vw, 86px);
  letter-spacing: -0.04em;
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.vp-numPlus{
  color: var(--accent);
  margin-left: 4px;
}

.vp-numLabel{
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

/* Meter (small pill) */
.vp-meter{
  width: 120px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.20);
  overflow: hidden;
}

.vp-meterFill{
  display: block;
  width: 72%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .95;
}

/* Responsive */
@media (max-width: 980px){
  .vp-numbers-grid{
    grid-template-columns: 1fr;
  }
  .vp-numbers-stack{
    grid-template-rows: auto;
  }
  .vp-numCard--hero{
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .vp-numCenter--split{
    grid-template-columns: 1fr;
  }
  .vp-meter{
    width: 100%;
  }
}



/* =========================================================
   Media Pack page (VeeraPay) — scoped
   ========================================================= */

.media-pack{
  position: relative;
  padding: clamp(70px, 7vw, 110px) 0 70px;
  background: #070A10;
  color: rgba(255,255,255,.92);
  overflow: hidden;
}

.media-pack::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(1200px 520px at 50% 0%, rgba(34,197,94,0.20), transparent 60%),
    radial-gradient(1200px 520px at 70% 10%, rgba(10,116,255,0.22), transparent 60%),
    radial-gradient(900px 520px at 20% 30%, rgba(34,197,94,0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.85));
  opacity: .95;
}

.media-pack .container{
  position: relative;
  z-index: 2;
}

/* Hero */
.media-pack-hero{
  text-align: center;
  position: relative;
  padding-bottom: 26px;
}

.media-pack-title{
  margin: 0;
  font-size: clamp(44px, 5.8vw, 84px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.media-pack-sub{
  margin: 14px auto 0;
  max-width: 70ch;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 15px;
}

.media-pack-mail{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.media-pack-actions{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.media-pack-btn{
  padding: 12px 18px;
  border-color: rgba(34,197,94,0.35);
  background: rgba(0,0,0,0.22);
}

.media-pack-btn:hover{
  border-color: rgba(34,197,94,0.55);
  background: rgba(255,255,255,0.08);
}

.media-pack-btn-ic{
  display: inline-flex;
  width: 18px;
  height: 18px;
}

/* Scribble */
.media-pack-scribble{
  position: absolute;
  right: -40px;
  top: -14px;
  width: min(720px, 70vw);
  opacity: .9;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
  pointer-events: none;
}

/* Brand board area */
.media-pack-board{
  margin-top: 34px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(34,197,94,0.16), transparent 55%),
    radial-gradient(120% 120% at 80% 20%, rgba(10,116,255,0.18), transparent 58%),
    rgba(255,255,255,0.03);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  overflow: hidden;
}

.media-pack-board-img{
  width: 100%;
  height: auto;
  display: block;
}

/* About */
.media-pack-about{
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: end;
}

.media-pack-about-copy{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 18px 18px;
}

.media-pack-about-copy h2{
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.media-pack-about-copy p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

.media-pack-about-logos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.media-pack-logoCard{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  height: 120px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.media-pack-logoCard img{
  width: 64%;
  height: auto;
  object-fit: contain;
  opacity: .95;
}

/* Responsive */
@media (max-width: 980px){
  .media-pack-scribble{ display: none; }
  .media-pack-about{
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .media-pack-logoCard{ height: 110px; }
}


/* =========================================================
   Media Pack – doodle
   ========================================================= */

.media-pack-title{
  position: relative;
  display: inline-block;
  z-index: 1;
}

.media-pack-doodle{
  position: absolute;
  inset: -60px -120px auto auto;
  width: 760px;
  max-width: 90vw;
  z-index: -1;
  opacity: 0.95;
  filter:
    drop-shadow(0 0 18px rgba(34,197,94,0.45))
    drop-shadow(0 0 42px rgba(10,116,255,0.25));
  pointer-events: none;
}

/* Responsive: hide doodle on small screens */
@media (max-width: 900px){
  .media-pack-doodle{
    display: none;
  }
}



/* =========================================================
   Contact page refactor
   - Light hero
   - Separate team section with slider + doodle
   ========================================================= */

/* ---------- LIGHT HERO ---------- */
.contact-heroLite{
  background: #fff;
  padding: clamp(64px, 6vw, 92px) 0 22px;
}

.contact-heroLite-inner{
  text-align: center;
}

.contact-heroLite-title{
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #0b1220;
}

.contact-heroLite-accent{
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-heroLite-mark{
  position: relative;
  display: inline-block;
  padding: 0 .08em;
}

.contact-heroLite-doodle{
  position: absolute;
  right: -58px;
  top: -46px;
  width: min(520px, 60vw);
  color: #8b3dff; /* purple doodle like screenshot */
  opacity: .95;
  pointer-events: none;
  z-index: -1;
  filter: drop-shadow(0 10px 25px rgba(139,61,255,0.22));
}

.contact-heroLite-sub{
  margin: 16px auto 0;
  max-width: 70ch;
  color: rgba(11,18,32,.72);
  line-height: 1.7;
  font-size: 15px;
}

/* ---------- TEAM SECTION ---------- */
.contact-teamSec{
  background: #fff;
  padding: 28px 0 56px;
}

.contact-teamSec-head{
  text-align: center;
  margin-bottom: 18px;
}

.contact-teamSec-title{
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: #0b1220;
  position: relative;
  display: inline-block;
}

.contact-teamSec-doodle{
  position: absolute;
  right: -110px;
  top: -56px;
  width: min(520px, 60vw);
  opacity: .95;
  pointer-events: none;
  z-index: -1;
}

/* Slider container */
.contact-teamWrap{ margin-top: 12px; }

/* Track: no arrows, no scrollbar */
.contact-teamTrack{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 330px);
  gap: 18px;

  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 4px 14px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  cursor: grab;
  user-select: none;
}

/* Hide scrollbar */
.contact-teamTrack::-webkit-scrollbar{ height: 0; }
.contact-teamTrack{ scrollbar-width: none; }

.contact-teamTrack.is-dragging{ cursor: grabbing; }

/* Team card */
.contact-personCard{
  scroll-snap-align: start;
  border-radius: 28px;
  background: #eef3f7;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-personCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
}

.contact-personImg{
  position: relative;
  height: 320px;
  background: #dde6ee;
}

.contact-personImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-personFlags{
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
  font-size: 14px;
}

/* icons row */
.contact-personLinks{
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  align-items: center;
  background: #fff;
}

.contact-personIc{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10,116,255,0.20);
  background: rgba(10,116,255,0.06);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.contact-personIc:hover{
  transform: translateY(-1px);
  border-color: rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.08);
}

.contact-personSvg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(10,116,255,0.85);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* meta */
.contact-personMeta{
  padding: 2px 14px 18px;
  background: #fff;
}

.contact-personPhone{
  font-size: 13px;
  color: rgba(11,18,32,0.62);
}

.contact-personName{
  margin-top: 6px;
  font-weight: 850;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: #0b1220;
}

.contact-personRole{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(11,18,32,0.60);
}

/* Responsive */
@media (max-width: 980px){
  .contact-heroLite-doodle{ display: none; }
  .contact-teamSec-doodle{ display: none; }
  .contact-teamTrack{
    grid-auto-columns: minmax(260px, 85vw);
  }
}


/* ---------- Hero support cards (inside light hero) ---------- */
.contact-heroLite-cards{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-heroLite-card{
  border-radius: 26px;
  background: #0a0d12;
  color: rgba(255,255,255,0.92);
  box-shadow: 0 22px 70px rgba(0,0,0,0.18);
  padding: 22px;
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-heroLite-ic{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.26);
}

.contact-heroLite-svg{
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(34,197,94,0.95);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-heroLite-card h3{
  margin: 10px 0 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.contact-heroLite-card p{
  margin: 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
}

.contact-heroLite-btn{
  margin-top: 10px;
  width: fit-content;
  border-color: rgba(34,197,94,0.35);
  background: rgba(0,0,0,0.18);
}

/* responsive */
@media (max-width: 980px){
  .contact-heroLite-cards{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   Contact Hero (dark gradient) + cards inside hero
   Scoped: .contact-heroDark*
   ========================================================= */

.contact-heroDark{
  position: relative;
  padding: clamp(70px, 7vw, 110px) 0 70px;
  background: #05070b;
  overflow: hidden;
}

.contact-heroDark::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(1200px 520px at 50% 0%, rgba(34,197,94,0.26), transparent 62%),
    radial-gradient(1200px 520px at 75% 8%, rgba(10,116,255,0.18), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.92));
  opacity: .98;
}

.contact-heroDark .container{
  position: relative;
  z-index: 2;
}

.contact-heroDark-inner{
  text-align: center;
}

.contact-heroDark-title{
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.contact-heroDark-titleTop{
  display: block;
  font-size: clamp(34px, 4.5vw, 62px);
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}

.contact-heroDark-titleBig{
  display: block;
  margin-top: 8px;
  font-size: clamp(44px, 6.0vw, 84px);
  font-weight: 900;
}

.contact-heroDark-strong{
  color: rgba(255,255,255,0.96);
}

.contact-heroDark-accent{
  margin-left: 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-heroDark-sub{
  margin: 14px auto 0;
  max-width: 58ch;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  font-size: 15px;
}

/* Cards */
.contact-heroDark-cards{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-heroDark-card{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
  padding: 22px;
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-heroDark-ic{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.26);
}

.contact-heroDark-svg{
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(34,197,94,0.95);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-heroDark-card h3{
  margin: 10px 0 0;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
}

.contact-heroDark-card p{
  margin: 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
}

.contact-heroDark-btn{
  margin-top: 10px;
  width: fit-content;
  border-color: rgba(34,197,94,0.35);
  background: rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 980px){
  .contact-heroDark-cards{
    grid-template-columns: 1fr;
  }
}

/* ---------- FIX: ensure title + doodle are visible ---------- */

.contact-heroDark-titleBig{
  position: relative;
  z-index: 3;
}

.contact-heroDark-mark{
  position: relative;
  display: inline-block;
  margin-left: 10px;
  color: transparent;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

/* DOODLE */
.contact-heroDark-doodle{
  position: absolute;
  top: -60px;
  left: -80px;
  width: min(560px, 80vw);
  z-index: -1;

  fill: none;
  stroke: #8b3dff; /* purple like reference */
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;

  opacity: 1;
  pointer-events: none;

  filter:
    drop-shadow(0 0 14px rgba(139,61,255,0.45))
    drop-shadow(0 0 32px rgba(139,61,255,0.25));
}

/* Make sure hero glow never hides content */
.contact-heroDark::before{
  z-index: 0;
}

.contact-heroDark .container{
  position: relative;
  z-index: 2;
}

/* Mobile: hide doodle cleanly */
@media (max-width: 900px){
  .contact-heroDark-doodle{
    display: none;
  }
}

/* ---- make title layout match reference ---- */
.contact-heroDark-titleBig{
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

/* 24/7 wrapper so doodle positions relative to it */
.contact-heroDark-strongWrap{
  position: relative;
  display: inline-block;
}

.contact-heroDark-strong{
  color: rgba(255,255,255,0.96);
  font-weight: 900;
}

/* Doodle wraps ONLY the 24/7 */
.contact-heroDark-doodle247{
  position: absolute;
  left: -78px;
  top: -88px;
  width: min(520px, 60vw);
  z-index: -1;
  pointer-events: none;

  fill: none;
  stroke: #8b3dff;            /* purple like reference */
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.98;

  filter:
    drop-shadow(0 0 14px rgba(139,61,255,0.45))
    drop-shadow(0 0 30px rgba(139,61,255,0.22));
}

/* Ensure “to assist you” is visible */
.contact-heroDark-accent{
  display: inline-block;
  margin-left: 10px;

  /* gradient fill */
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* ensure crisp */
  text-shadow: none !important;
  filter: none !important;
  opacity: 1;
}

/* Make sure hero glow never covers text */
.contact-heroDark::before{ z-index: 0; }
.contact-heroDark .container{ position: relative; z-index: 2; }

/* Mobile */
@media (max-width: 900px){
  .contact-heroDark-doodle247{ display: none; }
}
