/* ============================================================
   DealScan Gift Cards — Light Mode Professional Design
   ============================================================ */

@import url('fonts.css');

/* --- Design Tokens --- */
:root {
  /* Brand */
  --blue: #3a7bbf;
  --blue-dark: #2563a8;
  --blue-light: #5a9fd4;
  --blue-pale: #eaf2fb;
  --orange: #e8961e;
  --orange-dark: #c97c10;
  --orange-light: #f5b04a;
  --orange-pale: #fef6e8;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-off: #f7f9fc;
  --bg-muted: #f0f4f9;
  --bg-card: #ffffff;

  /* Text */
  --text: #111827;
  --text-2: #374151;
  --text-3: #6b7280;
  --text-4: #9ca3af;

  /* Borders */
  --border: #e5e9f0;
  --border-2: #d1d9e6;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-blue: 0 4px 20px rgba(58,123,191,0.25);
  --shadow-orange: 0 4px 20px rgba(232,150,30,0.25);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-mid: 0.25s ease;
  --t-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Typography */
  --font-brand: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-off); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 3px; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%       { transform: translateY(-10px) rotate(.8deg); }
  70%       { transform: translateY(-5px) rotate(-.5deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-mid);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 34px; width: auto; }
.nav-badge {
  font-family: var(--font-brand);
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(58,123,191,.2);
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 7px 14px;
  font-family: var(--font-brand); font-size: 14px; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.nav-links a:hover { background: var(--bg-muted); color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-ghost {
  padding: 8px 18px;
  font-family: var(--font-brand); font-size: 14px; font-weight: 600;
  color: var(--text-2); background: transparent;
  border: 1px solid var(--border-2); border-radius: var(--r-full);
  cursor: pointer; transition: all var(--t-fast); text-decoration: none;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }

.btn-blue {
  padding: 8px 20px;
  font-family: var(--font-brand); font-size: 14px; font-weight: 700;
  color: white; background: var(--blue); border: none;
  border-radius: var(--r-full); cursor: pointer;
  transition: all var(--t-fast); text-decoration: none;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(58,123,191,.35); }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--t-mid);
}

/* ============================================================
   COMING SOON BAR
   ============================================================ */
.coming-soon-bar {
  background: #fffbeb;
  border-bottom: 1.5px solid #fde68a;
  color: #78350f;
  font-family: var(--font-brand);
  font-size: 13px; font-weight: 500;
  text-align: center;
  padding: 10px 24px;
  letter-spacing: .01em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap;
}
.cs-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f59e0b; color: white;
  font-size: 11px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(245,158,11,.35);
  animation: pulseDot 2.5s ease-in-out infinite;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 140px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #eaf2fb 0%, #f0f6fd 40%, #f7f9fc 100%);
  z-index: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: var(--orange-pale);
  border: 1px solid rgba(232,150,30,.25);
  border-radius: var(--r-full);
  font-family: var(--font-brand); font-size: 12px; font-weight: 700;
  color: var(--orange-dark); letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--orange); border-radius: 50%;
}
.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text); margin-bottom: 18px;
}
.hero-title .accent-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .accent-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px; font-weight: 400;
  color: var(--text-3); line-height: 1.7;
  margin-bottom: 32px; max-width: 460px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px;
}
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-brand); font-size: 15px; font-weight: 700;
  color: white; background: var(--blue); border: none;
  border-radius: var(--r-full); cursor: pointer; text-decoration: none;
  transition: all var(--t-mid); box-shadow: var(--shadow-blue);
}
.btn-primary-lg:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(58,123,191,.4); }

.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-brand); font-size: 15px; font-weight: 700;
  color: var(--blue); background: transparent;
  border: 1.5px solid var(--blue); border-radius: var(--r-full);
  cursor: pointer; text-decoration: none;
  transition: all var(--t-mid);
}
.btn-outline-lg:hover { background: var(--blue-pale); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: var(--font-brand);
  font-size: 22px; font-weight: 800;
  color: var(--text); line-height: 1;
  margin-bottom: 3px;
}
.hero-stat-lbl {
  font-size: 12px; font-weight: 500; color: var(--text-4);
  text-transform: uppercase; letter-spacing: .06em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.gift-card-main {
  width: 320px; height: 190px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1d3f7a 0%, #2563a8 50%, #3a7bbf 100%);
  box-shadow: 0 20px 50px rgba(37,99,168,.35), 0 0 0 1px rgba(255,255,255,.1) inset;
  animation: floatCard 6s ease-in-out infinite;
  position: relative; overflow: hidden; z-index: 3;
}
.gift-card-back {
  width: 320px; height: 190px;
  border-radius: 18px;
  position: absolute;
  background: linear-gradient(135deg, #e8961e 0%, #c97c10 100%);
  transform: rotate(6deg) translateY(-8px) translateX(12px);
  opacity: .7; z-index: 2;
  animation: floatCard 6s ease-in-out 1.2s infinite;
}
.gift-card-inner {
  position: absolute; inset: 0;
  padding: 22px 24px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.card-chip {
  width: 36px; height: 26px;
  background: linear-gradient(135deg, #f5c842, #e8961e);
  border-radius: 5px;
}
.card-logo { height: 26px; filter: brightness(0) invert(1); opacity: .9; }
.card-bottom {
  display: flex; align-items: flex-end;
  justify-content: space-between;
}
.card-amount {
  font-family: var(--font-brand);
  font-size: 26px; font-weight: 800;
  color: white; text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.card-lbl {
  font-size: 10px; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600; margin-bottom: 3px;
}
.card-brand {
  font-family: var(--font-brand);
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.75); text-align: right;
}
.card-shine {
  position: absolute; top: -60px; right: -40px;
  width: 120px; height: 200px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.08) 50%, transparent 70%);
  transform: rotate(25deg);
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
}
.float-badge-1 { top: 20px; left: -10px; animation: floatCard 5s ease-in-out .5s infinite; }
.float-badge-2 { bottom: 30px; right: -10px; animation: floatCard 5s ease-in-out 1.8s infinite; }
.float-badge-icon { font-size: 20px; }
.float-badge-text strong {
  display: block; font-family: var(--font-brand);
  font-size: 13px; font-weight: 700; color: var(--text);
}
.float-badge-text span { font-size: 11px; color: var(--text-4); }

/* ============================================================
   TRUST LOGOS / TICKER
   ============================================================ */
.trust-bar {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex; align-items: center;
  gap: 48px; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-brand); font-size: 13px; font-weight: 600;
  color: var(--text-3); white-space: nowrap;
}
.trust-item svg { color: var(--blue); }
.trust-divider { width: 1px; height: 18px; background: var(--border); }

/* ============================================================
   SECTION LAYOUT HELPERS
   ============================================================ */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-off); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-brand); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-pale);
  border: 1px solid rgba(58,123,191,.18);
  padding: 4px 12px; border-radius: var(--r-full);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-brand);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.02em; color: var(--text);
  margin-bottom: 14px;
}
.section-desc {
  font-size: 16px; color: var(--text-3);
  line-height: 1.7; max-width: 540px; margin: 0 auto;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--t-slow);
}
.feature-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.fi-blue { background: var(--blue-pale); }
.fi-orange { background: var(--orange-pale); }
.feature-card h3 {
  font-family: var(--font-brand); font-size: 17px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--text-3); line-height: 1.65; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 24px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 12px);
}
.step-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--blue); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-size: 18px; font-weight: 800;
  margin-bottom: 18px;
  box-shadow: var(--shadow-blue);
}
.step-item h3 {
  font-family: var(--font-brand); font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.step-item p { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* ============================================================
   BRAND CATALOG
   ============================================================ */
.cat-filter {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.cat-btn {
  padding: 7px 18px;
  font-family: var(--font-brand); font-size: 13px; font-weight: 600;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: transparent; color: var(--text-3);
  cursor: pointer; transition: all var(--t-fast);
}
.cat-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.cat-btn.active { background: var(--blue); border-color: var(--blue); color: white; box-shadow: var(--shadow-blue); }

.brands-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.brand-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t-slow);
}
.brand-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.brand-card-banner {
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.brand-card-banner img {
  max-height: 70px; max-width: 90%;
  object-fit: contain; border-radius: 8px;
}
.brand-card-body { padding: 14px; border-top: 1px solid var(--border); }
.brand-card-name {
  font-family: var(--font-brand); font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 3px;
}
.brand-card-range { font-size: 12px; color: var(--text-4); margin-bottom: 8px; }
.cashback-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px;
  background: var(--orange-pale);
  border: 1px solid rgba(232,150,30,.2);
  border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; color: var(--orange-dark);
}

/* ============================================================
   PAYMENTS SECTION
   ============================================================ */
.payments-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.payments-content h2 {
  font-family: var(--font-brand);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.02em; color: var(--text);
  margin-bottom: 16px;
}
.payments-content p {
  font-size: 15px; color: var(--text-3); line-height: 1.75;
  margin-bottom: 28px;
}
.payment-checklist {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 36px;
}
.payment-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.check-icon {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--blue-pale); border: 1px solid rgba(58,123,191,.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--blue); font-weight: 700;
  margin-top: 2px;
}
.payment-checklist li strong { color: var(--text); }

.payment-methods { display: flex; flex-direction: column; gap: 12px; }
.pay-method-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: all var(--t-mid);
}
.pay-method-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.pay-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.pi-blue   { background: var(--blue-pale); }
.pi-orange { background: var(--orange-pale); }
.pi-green  { background: #dcfce7; }
.pi-purple { background: #f3e8ff; }
.pay-info { flex: 1; }
.pay-name {
  font-family: var(--font-brand); font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 2px;
}
.pay-desc { font-size: 12px; color: var(--text-4); }
.live-dot { display: flex; align-items: center; gap: 5px; }
.live-dot-circle {
  width: 7px; height: 7px;
  background: #22c55e; border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.live-dot span { font-size: 12px; font-weight: 600; color: #16a34a; }

.payout-notice {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--r-md);
  padding: 16px 18px; margin-top: 8px;
}
.payout-notice p:first-child {
  font-family: var(--font-brand);
  font-size: 13px; font-weight: 700; color: #15803d; margin-bottom: 5px;
}
.payout-notice p:last-child { font-size: 12px; color: #166534; line-height: 1.6; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--blue);
  padding: 56px 0;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-box {
  text-align: center; padding: 0 24px;
  position: relative;
}
.stat-box + .stat-box::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(255,255,255,.2);
}
.stat-box-val {
  font-family: var(--font-brand);
  font-size: 38px; font-weight: 900;
  color: white; line-height: 1; margin-bottom: 8px;
  letter-spacing: -.02em;
}
.stat-box-lbl {
  font-family: var(--font-brand);
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em;
}

/* ============================================================
   CORPORATE
   ============================================================ */
.corporate-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.corp-content .section-tag { text-align: left; display: inline-block; }
.corp-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.corp-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.corp-feat-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--blue-pale); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.corp-features li strong { color: var(--text); }

.corp-cards { display: flex; flex-direction: column; gap: 14px; }
.corp-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: all var(--t-mid);
}
.corp-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.corp-card-hd { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.corp-card-ico {
  width: 40px; height: 40px; background: var(--blue-pale);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.corp-card-hd h4 { font-family: var(--font-brand); font-size: 15px; font-weight: 700; color: var(--text); }
.corp-card p { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: all var(--t-mid);
}
.test-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-light); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--orange); font-size: 14px; }
.test-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 800; font-size: 14px;
  color: white; flex-shrink: 0;
}
.test-name { font-family: var(--font-brand); font-size: 14px; font-weight: 700; color: var(--text); }
.test-role { font-size: 12px; color: var(--text-4); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1d3f7a 0%, #2563a8 60%, #3a7bbf 100%);
  border-radius: var(--r-xl); padding: 64px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-brand); font-size: clamp(26px, 4vw, 42px);
  font-weight: 800; color: white; margin-bottom: 14px; line-height: 1.15;
  position: relative;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-brand); font-size: 15px; font-weight: 700;
  color: white; background: var(--orange); border: none;
  border-radius: var(--r-full); cursor: pointer; text-decoration: none;
  transition: all var(--t-mid); box-shadow: var(--shadow-orange);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,150,30,.45); }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-brand); font-size: 15px; font-weight: 700;
  color: white; background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--r-full);
  cursor: pointer; text-decoration: none;
  transition: all var(--t-mid);
}
.btn-white-outline:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

/* ============================================================
   PROFESSIONAL FOOTER
   ============================================================ */
.pro-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 40px 0 32px;
}
.pro-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pro-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.pro-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pro-footer-logo {
  height: 26px;
  width: auto;
  display: block;
}
.pro-footer-badge {
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(58,123,191,.2);
  padding: 2px 8px;
  border-radius: var(--r-full);
  letter-spacing: .02em;
}
.made-in-india-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-full);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.mii-text {
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.02em;
}
.pro-footer-divider {
  height: 1px;
  background: #e2e8f0;
  width: 100%;
}
.pro-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.pro-footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pro-footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color var(--t-fast);
}
.pro-footer-links a:hover {
  color: var(--blue);
  text-decoration: underline;
}
.link-dot {
  color: #cbd5e1;
  font-size: 12px;
}
.pro-footer-copy {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; animation: fadeIn .2s ease;
}
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px;
  width: 100%; max-width: 460px;
  box-shadow: var(--shadow-xl);
  animation: fadeUp .3s ease;
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: var(--r-sm); background: var(--bg-muted);
  border: 1px solid var(--border); color: var(--text-3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; transition: all var(--t-fast);
}
.modal-close:hover { background: var(--bg-off); color: var(--text); }
.modal-title {
  font-family: var(--font-brand); font-size: 20px; font-weight: 800;
  color: var(--text); margin-bottom: 6px;
}
.modal-sub { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-family: var(--font-brand); font-size: 12px; font-weight: 700;
  color: var(--text-3); text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 7px;
}
.form-input {
  width: 100%; padding: 11px 14px;
  background: var(--bg-off); border: 1.5px solid var(--border);
  border-radius: var(--r-md); font-size: 14px; color: var(--text);
  font-family: var(--font-body); outline: none;
  transition: all var(--t-fast);
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,123,191,.12); background: white; }
.form-input::placeholder { color: var(--text-4); }
.form-select {
  width: 100%; padding: 11px 14px;
  background: var(--bg-off); border: 1.5px solid var(--border);
  border-radius: var(--r-md); font-size: 14px; color: var(--text);
  font-family: var(--font-body); outline: none; cursor: pointer;
  appearance: none; transition: all var(--t-fast);
}
.form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,123,191,.12); }

.amounts-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.amount-chip {
  padding: 9px; text-align: center;
  background: var(--bg-off); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-family: var(--font-brand); font-size: 14px; font-weight: 600;
  color: var(--text-2); cursor: pointer; transition: all var(--t-fast);
}
.amount-chip:hover, .amount-chip.sel {
  border-color: var(--blue); color: var(--blue); background: var(--blue-pale);
}
.btn-submit {
  width: 100%; padding: 13px;
  font-family: var(--font-brand); font-size: 15px; font-weight: 700;
  color: white; background: var(--blue); border: none;
  border-radius: var(--r-md); cursor: pointer;
  transition: all var(--t-fast); box-shadow: var(--shadow-blue);
  margin-top: 6px;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-submit.orange { background: var(--orange); box-shadow: var(--shadow-orange); }
.btn-submit.orange:hover { background: var(--orange-dark); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.progress-bar { height: 3px; background: var(--bg-muted); border-radius: 2px; margin-bottom: 22px; }
.progress-bar-fill { height: 100%; background: var(--blue); border-radius: 2px; transition: width .4s ease; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid    { grid-template-columns: repeat(3, 1fr); }
  .steps-row      { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .stats-row      { grid-template-columns: repeat(2, 1fr); }
  .stat-box + .stat-box::before { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero::after { display: none; }
  .hero-visual { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .features-grid    { grid-template-columns: 1fr; }
  .brands-grid      { grid-template-columns: repeat(2, 1fr); }
  .payments-inner   { grid-template-columns: 1fr; }
  .corporate-inner  { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .cta-banner       { padding: 44px 28px; }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; }
  .trust-bar-inner  { gap: 20px; }
}
@media (max-width: 480px) {
  .brands-grid { grid-template-columns: 1fr; }
  .amounts-row { grid-template-columns: repeat(3, 1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
}
