/* ============================================
   Invoice G2G — Main Stylesheet v2
   Design: Glassmorphism + Premium SaaS
   ============================================ */

/* ── 1. Variables ── */
:root {
  --blue-1: #008CFF;
  --blue-2: #0057FF;
  --navy:   #062743;
  --navy-d: #03152b;

  --gray-50:  #f9fafb;
  --gray-100: #f1f3f3;
  --gray-200: #e2e4e6;
  --gray-500: #6b7280;
  --gray-700: #374151;

  --text:   #0a1628;
  --muted:  #6b7280;
  --white:  #ffffff;

  --grad-blue:  linear-gradient(135deg, #008CFF, #0057FF);
  --grad-navy:  linear-gradient(160deg, #062743 0%, #03152b 60%, #041e36 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.05) 100%);

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 48px rgba(0,0,0,0.14);
  --shadow-blue: 0 8px 32px rgba(0,140,255,0.28);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --ease: all 0.3s ease;
  --font: 'Inter Tight', 'Inter', sans-serif;
}

/* ── 2. Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);

  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.text-white{
  color: white!important;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font); background: none; }
svg { flex-shrink: 0; }

/* ── 3. Layout ── */
.container {
  width: min(1100px, calc(100% - 3rem));
  margin: 0 auto;
}
section { padding: 3.5rem 0; }

/* ── 4. Section badge ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--white);
  transition: var(--ease);
}
.section-badge:hover { border-color: var(--blue-1); }
.section-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-1);
  flex-shrink: 0;
}
.nav-logo img{
	height:auto;
}
.section-badge.light {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  color: white;
}
.section-badge.light .dot { background: var(--blue-1); }
.container-header{
width: min(1380px, calc(100% - 3rem));
    margin: 0 auto;	
}

/* ── 6. Typography ── */
.section-title {
  font-size: 2.25rem;
  font-weight: 500;
	text-transform: capitalize;
  color: #101942;
  line-height: 1.22;
  margin-top: 0.75rem;
}
.section-title .grad {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.68;
}
.text-center { text-align: center; }
.max-prose   { max-width: 540px; margin-left: auto; margin-right: auto; }
.section-header { margin-bottom: 3rem; }

/* ── 7. Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1.75rem;
  border-radius: var(--r-sm);
  /* Animated panning gradient */
  background: linear-gradient(135deg, #008CFF 0%, #0057FF 40%, #0095FF 70%, #003FBD 100%);
  background-size: 220% auto;
  animation: btnGradient 5s ease infinite;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Shimmer sweep on hover */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-15deg);
  transition: left 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.ig2g-page{
    padding: 115px 20px 80px!important;	
}
.btn-primary:hover::before { left: 160%; }
/* Light wash */
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.btn-primary:hover {
  
  box-shadow: 0 14px 44px rgba(0,140,255,0.52), 0 4px 16px rgba(0,40,160,0.28);
}
.btn-primary:hover::after { background: rgba(255,255,255,0.07); }
.btn-primary:active {
  box-shadow: 0 4px 12px rgba(0,140,255,0.25) !important;
  transition: transform 0.08s ease, box-shadow 0.08s ease !important;
}
.btn-primary img { width: 17px; height:17px; transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94); }
.btn-primary:hover img { transform: translateX(7px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.policy-wrapper{
    max-width:1100px;
    margin:70px auto;
    padding:0 20px;
}

.policy-card{
    background:#fff;
    border-radius:28px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.policy-header{
    border-bottom:1px solid #e9eef5;
    padding-bottom:25px;
    margin-bottom:40px;
}

.policy-tag{
    display:inline-block;
    background:linear-gradient(90deg,#008cff,#0057ff);
    color:#fff;
    padding:7px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.policy-header h2{
    font-size:42px;
    color:#003153;
    margin-bottom:12px;
}

.policy-header p{
    color:#7a8797;
    font-size:15px;
}

.policy-section{
    margin-bottom:40px;
}

.policy-section h3{
    color:#003153;
    font-size:28px;
    margin-bottom:18px;
    position:relative;
    padding-left:18px;
}

.policy-section h3:before{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    width:5px;
    height:28px;
    border-radius:20px;
    background:linear-gradient(#008cff,#0057ff);
}

.policy-section h4{
    color:#0057ff;
    margin:25px 0 10px;
    font-size:20px;
}

.policy-section p,
.policy-section li{
    color:#5f6f82;
    line-height:1.9;
    font-size:16px;
}

.policy-section ul{
    margin:15px 0 0 25px;
}

.policy-section li{
    margin-bottom:10px;
}

.policy-section a{
    color:#008cff;
    text-decoration:none;
    font-weight:600;
}

.policy-section a:hover{
    color:#0057ff;
}

@media(max-width:768px){

.policy-card{
    padding:28px;
    border-radius:20px;
}

.policy-header h2{
    font-size:30px;
}

.policy-section h3{
    font-size:22px;
}

.policy-section h4{
    font-size:18px;
}

}
/* Shimmer sweep on ghost */
.btn-ghost::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-15deg);
  transition: left 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.btn-ghost:hover::before { left: 160%; }
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.25);
}
.btn-ghost:active {
  transform: scale(0.97) !important;
  transition: transform 0.08s ease !important;
}
.btn-ghost svg { width: 17px; height: 17px; transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94); }
.btn-ghost:hover svg { transform: scale(1.2) rotate(8deg); }

/* ── 8. Navbar ── */
/* ── Announcement bar ── */
.announce-bar {
  background: linear-gradient(90deg, #4338ca 0%, #2563eb 50%, #0284c7 100%);
  overflow: hidden; max-height: 44px; padding: 0.54rem 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.4s ease;
}
#navbar.scrolled .announce-bar { max-height: 0; opacity: 0; padding: 0; pointer-events: none; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 1.25rem; }
.announce-text {
  font-size: 0.79rem; font-weight: 500; color: rgba(255,255,255,0.93);
  display: flex; align-items: center; gap: 0.45rem;
}
.announce-cta {
  font-size: 0.75rem; font-weight: 700; color: white;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.38);
  padding: 0.2rem 0.72rem; border-radius: 50px; white-space: nowrap;
  transition: background 0.25s, border-color 0.25s;
}
.announce-cta:hover { background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.6); }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0.5rem 0;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s, padding 0.3s;
}
/* Dark gradient vignette — makes white nav text readable over any hero */
#navbar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 100%);
  z-index: -1; pointer-events: none; transition: opacity 0.4s;
}
#navbar.scrolled::before { opacity: 0; }
/* Blue-purple accent line at the bottom of transparent navbar */
#navbar::after {
  content: ''; position: absolute; bottom: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,140,255,0.6) 30%, rgba(99,102,241,0.75) 50%, rgba(0,140,255,0.6) 70%, transparent);
  transition: opacity 0.4s;
}
#navbar.scrolled::after { opacity: 0; }

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 8px 40px rgba(0,0,0,0.07);
  padding: 0.5rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Dual logo — crossfade on scroll */
.nav-logo { position: relative; display: inline-flex; align-items: center; min-width: 150px; }
.nav-logo img { width: 150px; display: block; }
.logo-light { opacity: 1; transition: opacity 0.35s ease; }
.logo-dark  { position: absolute; top: 50%; left: 0; transform: translateY(-50%); opacity: 0; transition: opacity 0.35s ease; }
#navbar.scrolled .logo-light { opacity: 0; }
#navbar.scrolled .logo-dark  { opacity: 1; }

/* Nav links with mega menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.92);
  transition: var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
#navbar.scrolled .nav-link { color: var(--navy); }
/* #navbar.scrolled .nav-link:hover { background: var(--gray-100); } */
.nav-chevron {
  width: 13px; height: 13px;
  transition: transform 0.25s;
  opacity: 0.7;
}
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Mega dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 72px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 460px;
  z-index: 200;
}
.nav-dropdown.open,
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-header {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  padding: 0 0.5rem 0.75rem;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 0.75rem;
}
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.8rem;
  border-radius: var(--r-md);
  transition: var(--ease);
  color: var(--text);
}
.dropdown-item:hover { background: var(--gray-50); }
.di-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.di-icon svg { width: 16px; height: 16px; stroke: var(--blue-1); fill: none; stroke-width: 2; }
.dropdown-item:hover .di-icon { background: rgba(0,140,255,0.1); }
.di-name { font-size: 0.875rem; font-weight: 700; line-height: 1.2; }
.di-desc { font-size: 0.76rem; color: var(--muted); margin-top: 0.15rem; line-height: 1.4; }
.dropdown-sm { min-width: 220px; }
.dropdown-sm .dropdown-grid { grid-template-columns: 1fr; }

.nav-cta { display: flex; align-items: center; }
.nav-mobile-btn { display: none;  padding: 0.35rem; transition: color 0.3s; }
#navbar.scrolled .nav-mobile-btn { color: var(--navy); }

/* Mobile menu */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  z-index: 950;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-panel {
  position: absolute; top: 0; left: 0; right: 0;
  background: white;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  padding: 1.5rem 1.5rem 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  max-height: 90vh;
  overflow-y: auto;
}
.mobile-overlay.open .mobile-panel { transform: translateY(0); }
.mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-header img { width: 150px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 1.25rem; font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.mobile-nav-links a:hover { color: var(--blue-1); }
.mobile-panel .btn-primary { width: 100%; justify-content: center; margin-top: 2rem; }
.mobile-nav-links a{
      cursor: pointer;
    user-select: none;
    font-weight: 700;
    color: #062743;
    font-size: 0.8rem;
}
/* ── 9. Hero ── */
.hero {
  background-image: url('../images/home-banner.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 7.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(4,28,52,0.68) 0%, rgba(3,21,43,0.52) 100%);
}

/* Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 500px; height: 500px; background: rgba(0,140,255,0.22); top: -80px; left: -120px; animation: blobFloat 9s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; background: rgba(0,87,255,0.18); bottom: 0; right: -60px; animation: blobFloat 7s ease-in-out infinite reverse; }
.blob-3 { width: 250px; height: 250px; background: rgba(0,180,255,0.14); top: 40%; left: 40%; animation: blobFloat 11s ease-in-out infinite 2s; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { color: white; }
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.16;
  margin-top: 1.1rem;
}
.hero-content h1 .grad {
  background: linear-gradient(135deg, #7dd3fc, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  margin-top: 1.25rem;
  line-height: 1.72;
}
.hero-btns { display: flex; gap: 0.9rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-store-btns { display: flex; gap: 0.9rem; margin-top: 1.25rem; flex-wrap: wrap; }
.hero-store-btns img { height: 46px; width: auto; transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.3s ease; }
.hero-store-btns a:hover img { transform: translateY(-5px) scale(1.05); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35)); }
.hero-store-btns a:active img { transform: scale(0.97); transition: transform 0.08s ease; }

/* Hero right — dashboard UI */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: transform 0.15s ease;
}
.dash-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.05);
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
}
.dash-chrome {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dc-dot { width: 11px; height: 11px; border-radius: 50%; }
.dc-dot.r { background: #FF5F57; }
.dc-dot.y { background: #FFBD2E; }
.dc-dot.g { background: #28CA41; }
.dc-title { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-left: 0.5rem; }
.dash-body { padding: 1.25rem; }

/* KPI row */
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.kpi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.8rem;
}
.kpi-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }
.kpi-val { font-size: 1.1rem; font-weight: 700; color: white; margin: 0.25rem 0 0.15rem; }
.kpi-chg {
  font-size: 0.68rem; font-weight: 700;
  padding: 0.1rem 0.4rem; border-radius: 50px;
}
.kpi-chg.up   { background: rgba(34,197,94,0.2); color: #4ade80; }
.kpi-chg.down { background: rgba(239,68,68,0.2);  color: #f87171; }

/* Chart */
.dash-chart-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 1rem;
}
.dash-chart-label { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(0,140,255,0.9) 0%, rgba(0,87,255,0.6) 100%);
  transition: height 0.5s ease;
  min-width: 0;
}
.bar.highlight {
  background: linear-gradient(180deg, #008CFF, #0057FF);
  box-shadow: 0 0 12px rgba(0,140,255,0.5);
}

/* Invoice list in dashboard */
.dash-inv-title { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }
.dash-inv-list { display: flex; flex-direction: column; gap: 0.45rem; }
.inv-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}
.inv-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: white; flex-shrink: 0;
}
.inv-client { font-size: 0.76rem; color: rgba(255,255,255,0.85); flex: 1; font-weight: 500; }
.inv-amount { font-size: 0.76rem; font-weight: 700; color: white; }
.inv-status {
  font-size: 0.62rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: 50px;
}
.inv-status.paid { background: rgba(34,197,94,0.2); color: #4ade80; }
.inv-status.pending { background: rgba(251,191,36,0.2); color: #fbbf24; }
.inv-status.draft { background: rgba(148,163,184,0.2); color: #94a3b8; }

/* Floating notification cards */
.hero-notif {
  position: absolute;
  background: white;
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 4;
  min-width: 195px;
  animation: notifIn 0.6s ease both, floatSlow 5s ease-in-out 0.6s infinite;
}
.hero-notif.paid  { bottom: 30%; right: -2rem; animation-delay: 0s, 0.6s; }
.hero-notif.cashback { top: 22%; left: -2rem; animation-delay: 0.4s, 0.9s; }
.notif-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-icon-wrap.green { background: rgba(34,197,94,0.12); }
.notif-icon-wrap.blue  { background: rgba(0,140,255,0.1); }
.notif-icon-wrap svg { width: 18px; height: 18px; }
.notif-title { font-size: 0.8rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.notif-sub   { font-size: 0.72rem; color: var(--muted); margin-top: 0.1rem; }

/* ── 10. Stats banner ── */
.stats-banner {
  background: white;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1.25rem 0.5rem; }
.stat-num {
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  background: #101942;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl { font-size: 0.84rem; color: var(--muted); margin-top: 0.4rem; }

/* ── 11. Marquee ── */
.marquee-section { background: var(--gray-100); padding: 2.25rem 0; overflow: hidden; }
.marquee-lbl {
  text-align: center;
  font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 1.25rem;
}
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.marquee-wrapper::before { left: 0;  background: linear-gradient(to right, var(--gray-100), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--gray-100), transparent); }
.marquee-track { display: flex; width: max-content; }
.marquee-pill {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.65rem 1.35rem;
  background: white; border-radius: 50px;
  font-weight: 600; font-size: 0.875rem; color: var(--text);
  white-space: nowrap; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-right: 1rem;
  flex-shrink: 0;
}
.marquee-pill svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── 12. How It Works (Premium) ── */
.how-it-works { background: white; position: relative; overflow: hidden; }
.hiw-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(90px); }
.hiw-blob-1 { width: 700px; height: 700px; background: rgba(59,130,246,0.07); top: -250px; left: -250px; }
.hiw-blob-2 { width: 600px; height: 600px; background: rgba(139,92,246,0.06); bottom: -220px; right: -220px; }

.hiw-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3.5rem; position: relative;
}
/* Glowing timeline connector */
.hiw-grid::before {
  content: '';
  position: absolute; z-index: 0;
  top: 60px;
  left: calc(12.5% + 0px); right: calc(12.5% + 0px);
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(59,130,246,0.5) 15%,
    rgba(99,102,241,0.7) 50%,
    rgba(59,130,246,0.5) 85%,
    transparent 100%
  );
  box-shadow: 0 0 16px rgba(59,130,246,0.3), 0 0 4px rgba(99,102,241,0.2);
}

.hiw-card {
  background: white;
  border: 1px solid rgba(59,130,246,0.1);
  border-radius: 24px;
  padding: 1.75rem 1.5rem 1.4rem;
  text-align: center;
  position: relative; z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hiw-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 28px 64px rgba(59,130,246,0.14);
  border-color: rgba(59,130,246,0.28);
}

/* Icon + badge wrapper */
.hiw-icon-wrap { position: relative; display: inline-block; margin-bottom: 1.25rem; }
.hiw-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--ic, var(--grad-blue));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(59,130,246,0.35);
  animation: float 4s ease-in-out infinite;
}
.hiw-card:nth-child(2) .hiw-icon { animation-delay: 0.8s; }
.hiw-card:nth-child(3) .hiw-icon { animation-delay: 1.6s; }
.hiw-card:nth-child(4) .hiw-icon { animation-delay: 2.4s; }
.hiw-icon svg { width: 30px; height: 30px; }

/* Step number badge — sits bottom-right of icon */
.hiw-badge {
  position: absolute; bottom: -8px; right: -8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: #101942;
  color: white; font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,140,255,0.45), 0 0 0 3px white;
}

.hiw-card h3 { font-size: 1rem; font-weight: 700; }
.hiw-card p  { font-size: 0.83rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.65; }

/* Footer row: tag + next arrow */
.hiw-step-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.hiw-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.22rem 0.7rem; border-radius: 50px;
  background: rgba(59,130,246,0.08); color: #3b82f6;
}
.hiw-tag--green { background: rgba(16,185,129,0.1); color: #059669; }
.hiw-next-arrow svg { width: 16px; height: 16px; color: rgba(59,130,246,0.5); }

/* ── 13. Features (12 cards) ── */
.features { background: var(--gray-100); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: white; border-radius: var(--r-lg); padding: 1.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}
.feature-card:hover { transform: translateY(-6px);  }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: rgb(16, 25, 66);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }

.feature-card h3 { font-size: 1rem; font-weight: 700; }
.feature-card p  { font-size: 0.84rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.62; }


/*  contact*/
.contact-page{
    max-width:1200px;
    margin:30px auto;
    
}

.contact-wrap{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:start;
}

.contact-info{
    background:linear-gradient(135deg,#0b4f97,#0a6fe8);
    color:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.contact-info h2{
    font-size:38px;
    margin-bottom:20px;
}

.contact-info p{
    opacity:.9;
    line-height:1.8;
}

.contact-box{
    margin-top:35px;
}

.contact-box div{
    margin-bottom:18px;
    font-size:17px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #dce5f2;
    border-radius:12px;
    margin-bottom:18px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0a6fe8;
    box-shadow:0 0 0 4px rgba(10,111,232,.15);
}

.contact-form textarea{
    min-height:180px;
    resize:none;
}

.contact-form input[type=submit]{
    
    color:#fff;
    border:none;
    width:auto;
    padding:15px 40px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
}

.contact-form input[type=submit]:hover{
    background:#084fa7;
}

@media(max-width:991px){	
.contact-wrap{
grid-template-columns:1fr;
}
}
/* end */
/* ── 14. Product Showcase ── */
.product-showcase { background: white; padding: 3rem 0 0; }
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.showcase-row:last-child { border-bottom: none; }
.showcase-row.flip .showcase-visual { order: -1; }
.showcase-text .section-badge { margin-bottom: 1rem; }
.showcase-text h2 { font-size: 2rem; font-weight: 500; line-height: 1.3; margin-top: 0.75rem;    text-transform: capitalize;color: #003153; }
.showcase-text p  { font-size: 0.9rem; color: var(--muted); margin-top: 1rem; line-height: 1.7;color:#003153 }
.showcase-checks { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem;color:#003153;font-weight:600 }
.showcase-check {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; font-weight: 500;
}
.check-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,140,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-dot svg { width: 11px; height: 11px; stroke: var(--blue-1); fill: none; stroke-width: 2.5; }
.showcase-visual {  justify-content: center; }
.showcase-visual img {
  border-radius: var(--r-xl);
 
  width: 100%;
  max-width: 420px;
  transition: transform 0.4s ease;
}
.showcase-visual:hover img { transform: translateY(-8px) scale(1.01); }

/* ── 15. AI Section ── */
.ai-section {
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
  color: white;
}
.ai-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/home-banner.png') center/cover no-repeat;
  opacity: 0.05;
}
.ai-blob-1 { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(0,140,255,0.12); filter: blur(100px); top: -150px; right: -150px; pointer-events: none; }
.ai-blob-2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(0,87,255,0.1); filter: blur(80px); bottom: -100px; left: -100px; pointer-events: none; }

.ai-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.ai-content h2 { font-size: 2.25rem; font-weight: 500; line-height: 1.25; margin-top: 0.75rem; }
.ai-content > p { font-size: 0.92rem; color: rgba(255,255,255,0.7); margin-top: 1rem; line-height: 1.7; }
.ai-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.ai-feat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: var(--ease);
}
.ai-feat:hover { border-color: rgba(0,140,255,0.4); background: rgba(0,140,255,0.08); }
.ai-feat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,140,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-feat-icon svg { width: 18px; height: 18px; stroke: #60a5fa; fill: none; stroke-width: 2; }
.ai-feat h4 { font-size: 0.9rem; font-weight: 700; color: white; }
.ai-feat p  { font-size: 0.8rem; color: rgba(255,255,255,0.58); margin-top: 0.15rem; line-height: 1.5; }

/* AI chat UI */
.ai-ui-wrap {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}
.ai-ui-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ai-ui-header .ai-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
}
.ai-ui-header .ai-avatar svg { width: 16px; height: 16px; fill: white; }
.ai-ui-header span { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.ai-ui-header .ai-status { font-size: 0.7rem; color: #4ade80; margin-left: auto; }
.ai-messages { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; min-height: 200px; }
.ai-msg {
  display: flex; gap: 0.65rem; align-items: flex-end;
}
.ai-msg.bot { flex-direction: row; }
.ai-msg.user { flex-direction: row-reverse; }
.ai-msg-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-msg-icon svg { width: 12px; height: 12px; fill: white; }
.ai-bubble {
  max-width: 76%;
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
}
.ai-msg.bot  .ai-bubble { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-radius: 4px 14px 14px 14px; }
.ai-msg.user .ai-bubble { background: var(--grad-blue); color: white; border-radius: 14px 4px 14px 14px; }
.ai-input-row {
  display: flex; gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ai-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font);
}
.ai-send {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
}
.date-free{
  color:#fff!important;
}
.ai-send svg { width: 14px; height: 14px; fill: white; }

/* ── 16. Industries Showcase ── */
.ind-showcase {
  position: relative; overflow: hidden;
  padding: 3.5rem 0 4rem;
}
.most-card{
  filter: invert();
}
.ind-showcase-bg {
  position: absolute; inset: 0;
  /* background: linear-gradient(160deg, #0046cc 0%, rgb(16, 25, 66)50%, #00a0ff 100%); */
  background: #003153;
  z-index: 0;
}
.ind-showcase-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,0,0,0.15) 0%, transparent 70%);
}

/* 5 featured cards */
.ind-cards-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem;
  margin: 3rem 0 2.5rem;
}
.ind-feat-card {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  height: 280px; cursor: pointer;
  background: #0a0a1a;
  display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ind-feat-card--tall { height: 310px; margin-top: -30px; }
.ind-feat-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }

/* Layer 0: actual photo */
.ifc-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.ind-feat-card:hover .ifc-photo { transform: scale(1.08); }

/* Layer 1: branded colour tint */
.ind-feat-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: var(--bg, linear-gradient(160deg,#0057ff,#008cff));
  opacity: 0.5;
}

/* Layer 2: dark bottom gradient so labels stay readable */
.ind-feat-card::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.0) 55%);
}

.ifc-icon {
  position: absolute; top: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 3;
}
.ifc-icon svg { width: 56px; height: 56px; opacity: 0.92; }
.ifc-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 1rem 1.1rem 1.1rem;
}
.ifc-label { display: block; font-size: 1rem; font-weight: 700; color: white; }
.ifc-sub   { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 0.18rem; }

/* 12 industry pills */
.ind-pills-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem;
}
.ind-pill {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--r-md);
  color: white; font-size: 0.86rem; font-weight: 600;
  cursor: pointer; transition: var(--ease);
  backdrop-filter: blur(8px);
}
.ind-pill:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.ind-pill svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.85; }

/* See all button */
.ind-see-more {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px; color: white;
  font-size: 0.9rem; font-weight: 600;
  transition: var(--ease);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.1);
}
.ind-see-more:hover {
  background: white; color: var(--blue-1); border-color: white;
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* ── 17. Screenshots tabs ── */
.screenshots { background: var(--gray-100); }
.tabs-nav { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.875rem; font-weight: 600;
  border: 1.5px solid var(--gray-200);
  color: var(--muted);
  background: white;
  transition: var(--ease);
}
.tab-btn:hover { border-color: var(--blue-1); color: var(--blue-1); }
.tab-btn.active { background: var(--grad-blue); border-color: transparent; color: white; box-shadow: var(--shadow-blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeScaleIn 0.4s ease; }
.tab-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
  max-width: 700px;
  margin: 0 auto;
  background: var(--navy);
}
.tab-frame img { width: 100%; display: block; }
.tab-frame-mock {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2rem;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.tab-frame-mock p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* ── 18. Pricing ── */
.pricing { background: var(--gray-100); }
.pricing-toggle-wrap {
  display: flex; align-items: center; gap: 0.9rem; justify-content: center;
  margin-bottom: 3rem;
}
.pt-label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.pt-switch {
  width: 50px; height: 27px;
  border-radius: 20px;
  background: var(--gray-200);
  position: relative; cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.pt-switch.active { background: var(--grad-blue); }
.pt-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 21px; height: 21px;
  border-radius: 50%; background: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
}
.pt-switch.active .pt-thumb { left: 26px; }
.pt-save {
  font-size: 0.7rem; font-weight: 700;
  background: rgba(0,140,255,0.12); color: var(--blue-1);
  padding: 0.15rem 0.55rem; border-radius: 50px;
  margin-left: 0.3rem;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
.pricing-grid.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.pricing-card {
  background: var(--gray-100); border-radius: var(--r-xl); padding: 6px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pc-top {
  background: white;
  border-radius: calc(var(--r-xl) - 6px) calc(var(--r-xl) - 6px) 0 0;
  padding: 1.75rem 1.75rem 1.25rem;
  display: flex; flex-direction: column;
}
.pc-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.pc-icon img { width: 26px; }
.pc-header-row { display: flex; align-items: center; gap: 0.75rem; }
.pc-header-row .pc-icon { margin-bottom: 0; }
.pc-name-tag {
  display: inline-block; margin-left: 0.35rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.03em;
  color: var(--blue-1); background: rgba(0,140,255,0.10);
  padding: 0.15rem 0.5rem; border-radius: 50px; vertical-align: middle;
}
.pc-feat-off { color: var(--muted); }
.pc-cross { width: 16px; height: 16px; flex-shrink: 0; }
.pricing-grid-4 .pc-cross { width: 14px; height: 14px; }
.pricing-badge {
  display: inline-block; margin-bottom: 0.75rem; align-self: flex-start;
  background: var(--grad-blue); color: white;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.2rem 0.65rem; border-radius: 50px;
}
/* Reserve space on non-featured cards so header rows line up with the featured card */
.pricing-grid .pricing-card:not(.featured) .pc-top::before {
  content: ""; display: block;
  height: calc(0.7rem + 0.4rem + 0.75rem); /* badge font + padding + margin */
}
.pc-name { font-size: 1.05rem; font-weight: 700; }
.pc-desc { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.pc-divider { border: none; border-top: 1px solid var(--gray-100); margin: 1.25rem 0; }
.pc-price { display: flex; align-items: flex-end; gap: 0.4rem; }
.pc-price .amount { font-size: 2.8rem; font-weight: 700; line-height: 1; }
.pc-price .period { font-size: 0.78rem; color: var(--muted); padding-bottom: 0.35rem; }
.pc-top .btn-primary { width: 100%; justify-content: center; margin-top: 1.5rem; }
.pc-nocc { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; margin-top: 0.9rem; }
.pc-nocc img { width: 14px; }
.pc-bottom {
  background: white;
  border-radius: 0 0 calc(var(--r-xl) - 6px) calc(var(--r-xl) - 6px);
  padding: 1.25rem 1.75rem 1.75rem;
  flex: 1 1 auto;
}
.pc-feat-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; }
.pc-feats { display: flex; flex-direction: column; gap: 0.65rem; }
.pc-feats li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: var(--gray-700); }
.pc-feats li img { width: 16px; flex-shrink: 0; }
/* Featured */
.pricing-card.featured .pc-top,
.pricing-card.featured .pc-bottom { background: var(--navy); }
.pricing-card.featured .pc-name,
.pricing-card.featured .pc-price .amount,
.pricing-card.featured .pc-feat-title,
.pricing-card.featured .pc-feats li { color: white; }
.pricing-card.featured .pc-desc,
.pricing-card.featured .pc-price .period { color: rgba(255,255,255,0.55); }
.pricing-card.featured .pc-divider { border-color: rgba(255,255,255,0.1); }
.pricing-card.featured .pc-nocc { color: rgba(255,255,255,0.72); }
.pricing-card.featured .pc-icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.pricing-card.featured .pc-name-tag { color: white; background: rgba(255,255,255,0.15); }
.pricing-card.featured .pc-feat-off { opacity: 0.55; }

/* 4-column variant — tighter padding + smaller price */
.pricing-grid-4 .pc-top { padding: 1.4rem 1.25rem 1rem; }
.pricing-grid-4 .pc-bottom { padding: 1rem 1.25rem 1.5rem; }
.pricing-grid-4 .pc-price .amount { font-size: 2.1rem; }
.pricing-grid-4 .pc-icon { width: 42px; height: 42px; }
.pricing-grid-4 .pc-icon img { width: 22px;height:22px; }
.pricing-grid-4 .pc-feats li { font-size: 0.8rem; gap: 0.45rem; }
.pricing-grid-4 .pc-feats li img { width: 14px; }

/* ── 19. Testimonials ── */
.testimonials { background: var(--gray-100); }
.testi-inner { display: grid; grid-template-columns: 0.52fr 1fr; gap: 1.5rem; align-items: stretch; }
.testi-left {
  background-image: url('../images/join.png');
  background-size: cover; background-position: center;
  border-radius: var(--r-xl); padding: 2rem; color: white;
  min-height: 400px; display: flex; flex-direction: column;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testi-stars img { width: 17px; }
.testi-rating-num  { font-size: 3.2rem; font-weight: 700; line-height: 1; }
.testi-rating-name { font-size: 1.05rem; font-weight: 700; }
.testi-rating-sub  { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; }
.testi-dark-box {
  background: rgba(20,20,20,0.88); border-radius: var(--r-md); padding: 1.25rem; margin-top: auto;
}
.testi-dark-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.testi-dark-top .g-logo { height: 25px; }
.testi-avs { display: flex; }
.testi-avs img { width: 28px; height: 28px; border-radius: 50%; border: 2px solid white; margin-left: -7px; }
.testi-avs img:first-child { margin-left: 0; }
.testi-count-num { font-size: 1.9rem; font-weight: 700; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.14); }
.testi-count-sub { font-size: 0.78rem; color: rgba(255,255,255,0.62); margin-top: 0.3rem; }
.testi-right { position: relative; }
.testi-slider { overflow: hidden; }
.testi-track { display: flex; gap: 1rem; transition: transform 0.42s ease; }
.testi-card {
  flex: 0 0 calc(50% - 0.5rem); background: white;
  border-radius: var(--r-lg); padding: 1.5rem;
  display: flex; flex-direction: column; min-height: 290px;
  box-shadow: var(--shadow-sm);
}
.testi-card .t-stars { display: flex; gap: 3px; margin-bottom: 0.75rem; }
.testi-card .t-stars img { width: 15px; }
.testi-card .t-text { font-size: 0.875rem; line-height: 1.72; flex: 1; }
.testi-card .t-author { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gray-200); flex-shrink: 0; }
.t-name { font-size: 0.875rem; font-weight: 700; }
.t-role { font-size: 0.74rem; color: var(--muted); }
.testi-controls { display: flex; gap: 0.5rem; justify-content: flex-end; margin-top: 1rem; }
.testi-btn {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--grad-blue); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.testi-btn:hover { box-shadow: var(--shadow-blue); transform: scale(1.06); }
.testi-btn svg { width: 15px; height: 15px; }

/* ── 20. FAQ ── */
.faq { background: white; }
.faq-inner { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 4rem; align-items: start; }
.faq-info { padding-top: 1.5rem; }
.faq-info h2 { font-size: 2rem; font-weight: 500; line-height: 1.32; max-width: 370px; margin-top: 0.75rem; }
.faq-info > p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-top: 1rem; max-width: 340px; }
.faq-cta-row { margin-top: 2rem; }
.faq-still {  padding-top: 2rem; border-top: 1px solid var(--gray-100); }
.faq-still h5 { font-weight: 700; font-size: 0.95rem; }
.faq-still p  { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; line-height: 1.6; }
.faq-still a  { display: inline-block; margin-top: 0.75rem; color: var(--blue-1); font-size: 0.85rem; font-weight: 700; text-decoration: underline; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--gray-100); border-radius: var(--r-md); overflow: hidden; transition: var(--ease); }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; user-select: none; gap: 1rem;
}
.faq-toggle { width: 20px; height: 20px; flex-shrink: 0; }
.faq-toggle img { width: 20px; }
.faq-toggle .minus { display: none; }
.faq-item.open .faq-toggle .plus  { display: none; }
.faq-item.open .faq-toggle .minus { display: block; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--muted); line-height: 1.65; border-top: 1px solid var(--gray-200); padding-top: 1rem; }

/* ── 21. Blog ── */
.blog { background: var(--gray-50); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: white; border-radius: var(--r-lg); overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.blog-img { height: 215px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.25rem 1.25rem 1.5rem; }
.blog-body h3 { font-size: 0.975rem; font-weight: 700; line-height: 1.4; min-height: 42px; }
.blog-date { font-size: 0.78rem; color: var(--muted); margin-top: 0.9rem; }
.blog-read { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--gray-100); transition: color 0.3s; }
.blog-read:hover { color: var(--blue-1); }
.blog-read img { width: 13px; transition: transform 0.3s; }
.blog-read:hover img { transform: translateX(4px); }

/* ── 22. Download CTA ── */
.download-cta { background: var(--grad-navy); padding: 6.5rem 0; text-align: center; color: white; position: relative; overflow: hidden; }
.cta-blob-1 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(0,140,255,0.12); filter: blur(80px); top: -100px; left: -100px; pointer-events: none; }
.cta-blob-2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(0,87,255,0.1); filter: blur(80px); bottom: -80px; right: -80px; pointer-events: none; }
.download-cta .container { position: relative; z-index: 1; }
.download-cta h2 { font-size: 2.5rem; font-weight: 500; max-width: 540px; margin: 1rem auto 0; line-height: 1.25; }
.download-cta p { font-size: 0.92rem; color: rgba(255,255,255,0.7); max-width: 460px; margin: 1rem auto 0; line-height: 1.72; }
.dl-btns { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.dl-btns img { height: 50px; width: auto; transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.3s ease; }
.dl-btns a:hover img { transform: translateY(-6px) scale(1.05); filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); }
.dl-btns a:active img { transform: scale(0.97); transition: transform 0.08s ease; }

/* ── 23. Footer ── */
/* footer { padding: 0 1rem 1rem; } */
.footer-inner {
  background-image: url(https://invoiceg2g.com/wp-content/uploads/2026/08/footer_banner.webp);
  background-size: cover; background-position: center;
   padding: 3rem 3.5rem 2.5rem; color: white;
}

/* Newsletter bar */
.footer-nl-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.6rem 2rem;
  background: rgba(0,140,255,0.14);
  border: 1px solid rgba(0,140,255,0.28);
  border-radius: var(--r-lg);
  margin-bottom: 3rem;
}
.fnl-left { flex: 1; min-width: 0; }
.fnl-left h4 { font-size: 1rem; font-weight: 700; }
.fnl-left p  { font-size: 0.82rem; color: rgba(255,255,255,0.62); margin-top: 0.2rem; }
.nl-form { display: flex; gap: 0.5rem; flex: 1; min-width: 0; max-width: 420px; }
.nl-input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm);
  padding: 0.7rem 1rem;
  font-size: 0.84rem; color: white; font-family: var(--font);
  outline: none; transition: border-color 0.3s;
}
.nl-input::placeholder { color: rgba(255,255,255,0.38); }
.nl-input:focus { border-color: var(--blue-1); }
.nl-btn {
  padding: 0.7rem 1.35rem;
  background: var(--grad-blue); color: white; border-radius: var(--r-sm);
  font-size: 0.84rem; font-weight: 600; white-space: nowrap; transition: var(--ease);
}
.nl-btn:hover { box-shadow: var(--shadow-blue); transform: translateY(-1px); }
.nl-success { font-size: 0.875rem; color: #4ade80; padding: 0.5rem 0; }

/* Main grid */
.footer-top-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img.f-logo { max-width: 180px; }
.footer-brand p {
  font-size: 0.83rem; color: rgba(255,255,255,0.58);
  margin-top: 1rem; max-width: 250px; line-height: 1.72;
}
.footer-store { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 1.4rem; }
.footer-store img { height: 36px; width: auto; transition: transform 0.3s; }
.footer-store a:hover img { transform: translateY(-3px); }
.footer-socials { display: flex; gap: 0.5rem; margin-top: 1.4rem; }
.social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; transition: var(--ease);
}
.social-icon:hover { background: var(--grad-blue); border-color: transparent; transform: translateY(-2px); }
.social-icon svg { width: 13px; height: 13px; fill: white; }

.footer-col h4 { font-size: 0.88rem; font-weight: 700; letter-spacing: 0.01em; }
.footer-col ul { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: var(--ease); }
.footer-col a:hover { color: #60b4ff; padding-left: 4px; }

/* Bottom bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.75rem; flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.42); }
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-link { font-size: 0.8rem; color: rgba(255,255,255,0.42); transition: color 0.3s; }
.footer-bottom-link:hover { color: rgba(255,255,255,0.85); }

/* ── 24. Why Choose ── */
.why-choose { background: var(--gray-50); }
.why-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem;
}
.wc-table {
  background: white; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.wc-head, .wc-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center;
}
.wc-head {
  background: var(--gray-100); padding: 0.9rem 1.25rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
}
.wc-badge {
  display: inline-block; background: var(--grad-blue); color: white;
  font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.7rem; border-radius: 50px;
}
.wc-row { padding: 0.8rem 1.25rem; border-top: 1px solid var(--gray-100); font-size: 0.84rem; transition: background 0.2s; }
.wc-row:hover { background: var(--gray-50); }
.wc-label-col { color: var(--gray-700); font-weight: 500; }
.wc-col { text-align: center; }
.wc-yes    { color: #16a34a; font-size: 1rem; font-weight: 700; }
.wc-no     { color: #dc2626; font-size: 1rem; font-weight: 700; }
.wc-partial { color: #d97706; font-size: 1.1rem; font-weight: 700; }
.why-points { display: flex; flex-direction: column; gap: 1.1rem; }
.why-point {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.1rem; background: white;
  border: 1px solid var(--gray-100); border-radius: var(--r-md); transition: var(--ease);
}
.why-point:hover { border-color: rgba(0,140,255,0.25); box-shadow: var(--shadow-md); transform: translateX(4px); }
.wp-icon {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(0,140,255,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wp-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--blue-1); stroke-width: 2; }
.why-point h4 { font-size: 0.9rem; font-weight: 700; }
.why-point p  { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; line-height: 1.6; }

/* ── 25. Integrations ── */
.integrations { background: white; }
.integrations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 0;
}
.int-card {
  background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem; text-align: center; transition: var(--ease);
}
.int-card:hover { border-color: rgba(0,140,255,0.3); box-shadow: var(--shadow-md); transform: translateY(-5px); background: white; }
.int-logo { height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem; }
.int-name { font-size: 0.9rem; font-weight: 700; }
.int-desc { font-size: 0.77rem; color: var(--muted); margin-top: 0.2rem; }
.int-more { text-align: center; margin-top: 2rem; font-size: 0.875rem; color: var(--muted); }
.int-more a { color: var(--blue-1); font-weight: 600; text-decoration: underline; }

/* ── 26. Invoice Preview ── */
.invoice-preview-section { background: var(--gray-50); }
.inv-prev-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.inv-feats-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.inv-feats-list li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.87rem; font-weight: 500; }
.if-check {
  width: 21px; height: 21px; border-radius: 50%;
  background: rgba(0,140,255,0.1); color: var(--blue-1);
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.inv-prev-card-wrap { position: relative; }
.inv-prev-card {
  background: white; border-radius: var(--r-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,0.12); overflow: hidden;
  border: 1px solid var(--gray-100);
}
.ipc-head {
  background: var(--navy); padding: 1.5rem 1.75rem;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.ipc-business { font-size: 0.86rem; font-weight: 700; color: white; }
.ipc-address  { font-size: 0.73rem; color: rgba(255,255,255,0.5); margin-top: 0.12rem; }
.ipc-status-wrap { text-align: right; flex-shrink: 0; }
.ipc-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); text-transform: uppercase; }
.ipc-num   { font-size: 0.88rem; font-weight: 700; color: white; margin-top: 0.2rem; }
.ipc-paid-badge {
  display: inline-block; margin-top: 0.5rem; background: #16a34a; color: white;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.18rem 0.6rem; border-radius: 50px;
}
.ipc-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; padding: 1rem 1.75rem;
  border-bottom: 1px solid var(--gray-100); background: var(--gray-50);
}
.ipc-meta-item span     { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.25rem; }
.ipc-meta-item strong   { font-size: 0.83rem; font-weight: 700; }
.ipc-table { padding: 1rem 1.75rem; }
.ipc-table-head {
  display: grid; grid-template-columns: 2fr 0.5fr 1fr 1fr;
  gap: 0.5rem; padding-bottom: 0.6rem;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted);
  border-bottom: 1px solid var(--gray-100);
}

/*  modal video*/
.demo-video-play:focus-visible{
	outline:none;
}

.demo-modal{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;padding:1rem;}
.demo-modal.is-open{display:flex;}
.demo-modal-overlay{position:absolute;inset:0;background:rgba(6,39,67,0.85);backdrop-filter:blur(4px);}
.demo-modal-box{position:relative;width:100%;max-width:900px;z-index:1;animation:demoPop .25s ease;}
@keyframes demoPop{from{opacity:0;transform:scale(0.95);}to{opacity:1;transform:scale(1);}}
.demo-modal-video{position:relative;width:100%;border-radius:16px;overflow:hidden;background:#000;box-shadow:0 25px 60px rgba(0,0,0,0.5);}
.demo-modal-video iframe{position:absolute;inset:0;width:100%;height:100%;}
.demo-modal-video video{width:100%}
.demo-modal-close{position:absolute;top:-44px;right:0;width:36px;height:36px;border-radius:50%;border:none;background:rgba(255,255,255,0.15);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;}
.demo-modal-close:hover{background:rgba(255,255,255,0.3);}
body.demo-modal-open{overflow:hidden;}
.demo-thumb{position:relative;display:block;border-radius:16px;overflow:hidden;cursor:pointer;box-shadow:0 20px 50px rgba(6,39,67,0.18);}
.demo-thumb img{display:block;width:100%;height:auto;}
.demo-thumb::after{content:"";position:absolute;inset:0;background:rgba(6,39,67,0.25);transition:background .25s;}
.demo-thumb:hover::after{background:rgba(6,39,67,0.1);}
.demo-thumb-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#008CFF,#1a6fcc);display:flex;align-items:center;justify-content:center;z-index:1;box-shadow:0 8px 30px rgba(0,140,255,0.45);transition:transform .25s;}
.demo-thumb-play svg{margin-left:4px;}
.demo-thumb:hover .demo-thumb-play{transform:translate(-50%,-50%) scale(1.1);}
.demo-video-play.is-hidden{display:none;}
.demo-thumb-play::before{content:"";position:absolute;inset:-8px;border-radius:50%;border:2px solid rgba(0,140,255,0.4);animation:playPulse 2s infinite;}
@keyframes playPulse{0%{transform:scale(1);opacity:1;}100%{transform:scale(1.35);opacity:0;}}
.demo-video-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:76px;height:76px;border-radius:50%;border:none;background:linear-gradient(135deg,#008CFF,#1a6fcc);display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;transition:transform .25s;}
.demo-video-play svg{margin-left:5px;}
.demo-video-play:hover{transform:translate(-50%,-50%) scale(1.1);}

@keyframes playPulse{0%{transform:scale(1);opacity:1;}100%{transform:scale(1.35);opacity:0;}}
.demo-video-play.is-hidden{display:none;}
/* end */
.ipc-table-row {
  display: grid; grid-template-columns: 2fr 0.5fr 1fr 1fr;
  gap: 0.5rem; padding: 0.6rem 0; font-size: 0.78rem;
  border-bottom: 1px solid var(--gray-50);
}
.ipc-table-row span:last-child { font-weight: 600; }
.ipc-totals { padding: 0.6rem 1.75rem 1rem; }
.ipc-tot-row { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 0.35rem 0; color: var(--muted); }
.ipc-grand { font-size: 1rem; font-weight: 700; color: var(--text); border-top: 2px solid var(--gray-200); padding-top: 0.7rem; margin-top: 0.2rem; }
.ipc-cashback-note {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; color: var(--blue-1);
  background: rgba(0,140,255,0.05); border-top: 1px solid rgba(0,140,255,0.1);
  padding: 0.7rem 1.75rem;
}
.inv-floating-badge {
  position: absolute; bottom: -16px; right: 20px;
  background: white; border: 1.5px solid rgba(74,222,128,0.5); border-radius: 50px;
  padding: 0.48rem 1rem; font-size: 0.78rem; font-weight: 600; color: #16a34a;
  display: flex; align-items: center; gap: 0.4rem;
  box-shadow: var(--shadow-md); animation: slideUp 0.5s ease 0.4s both;
}

/* ── 27. Mobile Showcase ── */
.mobile-showcase {
  background: linear-gradient(to bottom, #003153, #002037); position: relative; overflow: hidden; color: white;padding: 3.5rem 0rem 0rem;
}
.mobile-phones-wrap.in-view{
	max-width: 60rem;
    margin: 2rem auto -2rem;
}
.mobile-phones-wrap {
  display: flex; justify-content: center; align-items: flex-end; gap: 1.5rem;
  margin: 3rem 0 0rem;
}
.mobile-phone img {
  border-radius: 22px; box-shadow: 0 24px 80px rgba(0,0,0,0.45); display: block; transition: transform 0.4s ease;
}
.center-phone img { width: 180px; height: 120px; transform: translateY(-24px); }
.side-phone img   { width: 140px; height: 140px; opacity: 0.75; }
.mobile-phones-wrap:hover .center-phone img { transform: translateY(-36px); }
.mobile-stores { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.mobile-stores img { height: 46px; width: auto; transition: transform 0.3s; }
.mobile-stores a:hover img { transform: translateY(-3px); }
.mobile-ratings {
  display: flex; justify-content: center; align-items: center; gap: 2.5rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.mob-rating { text-align: center; }
.mob-stars  { color: #fbbf24; font-size: 0.88rem; }
.mob-score  { font-size: 1.5rem; font-weight: 700; }
.mob-store  { font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.mob-divider { width: 1px; height: 42px; background: rgba(255,255,255,0.15); }

/* ── 28. Feature Comparison ── */
.feat-comparison { background: white; }
.fcomp-wrap { overflow-x: auto; border-radius: var(--r-xl); box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.fcomp-table { min-width: 600px; width: 100%; }
.fcomp-head {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  background: var(--gray-100); padding: 1.4rem 1.25rem;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.fcomp-feat-col { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; align-self: center; }
.fcomp-plan-col { text-align: center; font-size: 0.95rem; font-weight: 700; }
.fcomp-plan-col span { font-size: 0.77rem; color: var(--muted); font-weight: 400; display: block; margin-top: 0.2rem; }
.fcomp-plan-col.popular { color: var(--blue-1); }
.fcomp-badge {
  display: inline-block; background: var(--grad-blue); color: white;
  font-size: 0.6rem; font-weight: 700; padding: 0.12rem 0.45rem; border-radius: 50px; vertical-align: middle; margin-left: 0.3rem;
}
.fcomp-group-title {
  padding: 0.55rem 1.25rem;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--blue-1); background: rgba(0,140,255,0.04);
  border-top: 1px solid var(--gray-100);
}
.fcomp-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  padding: 0.8rem 1.25rem; font-size: 0.84rem;
  border-top: 1px solid var(--gray-50); transition: background 0.2s;
}
.fcomp-row:hover { background: var(--gray-50); }
.fcomp-row .fcomp-feat-col { color: var(--gray-700); font-size: 0.84rem; text-transform: none; letter-spacing: 0; font-weight: 500; }
.fcomp-col { text-align: center; font-size: 0.88rem; }
.fcomp-col.popular { color: var(--blue-1); font-weight: 600; }
.fc-yes { color: #16a34a; font-size: 1rem; font-weight: 700; }
.fc-no  { color: #dc2626; font-size: 1rem; font-weight: 700; }
.fcomp-cta-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  padding: 1.4rem 1.25rem; border-top: 2px solid var(--gray-100);
  background: var(--gray-50); border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.fcomp-cta-col { display: flex; justify-content: center; }
.btn-outline {
  padding: 0.6rem 1.4rem; border-radius: 50px;
  border: 1.5px solid var(--gray-200); color: var(--text);
  font-size: 0.82rem; font-weight: 600; transition: var(--ease);
  display: inline-flex; align-items: center; background: white;
}
.btn-outline:hover { border-color: var(--blue-1); color: var(--blue-1); }

/* ── 29. Security ── */
.security-section { background: var(--gray-50); }
.sec-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
.sec-content p { font-size: 0.88rem; color: var(--muted); margin-top: 1rem; line-height: 1.72; max-width: 380px; }
.sec-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sec-badge-card {
  background: white; border: 1px solid var(--gray-100); border-radius: var(--r-md);
  padding: 1.4rem 1.1rem; transition: var(--ease);
}
.sec-badge-card:hover { border-color: rgba(0,140,255,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sb-icon {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(0,140,255,0.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem;
}
.sb-icon svg { width: 20px; height: 20px; }
.sec-badge-card h5 { font-size: 0.84rem; font-weight: 700; }
.sec-badge-card p  { font-size: 0.75rem; color: var(--muted); margin-top: 0.28rem; line-height: 1.55; }

/* ── 30. Download Counter ── */
.dl-counter { background: var(--grad-navy); position: relative; overflow: hidden; }
.dl-counter-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 3rem;
}
.dlc-item {
  text-align: center; color: white; padding: 1.5rem 0.75rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg); transition: var(--ease);
}
.dlc-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(0,140,255,0.4); transform: translateY(-5px); }
.dlc-num {
  font-size: 2.1rem; font-weight: 700;
  background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dlc-icon { margin: 0.45rem auto; }
.dlc-icon svg { display: block; margin: 0 auto; }
.dlc-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

/* ══════════════════════════════════════════════════════
   ABOUT US PAGE
   All classes prefixed .abt-* to keep isolated from theme
   ══════════════════════════════════════════════════════ */

/* ── HERO BANNER (dark navy) ────────────────────────── */
.abt-hero {
  position: relative;
  background: #003153;
  background-image:
    radial-gradient(ellipse 60% 45% at 15% 20%, rgba(26,111,204,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 80%, rgba(26,111,204,0.22) 0%, transparent 60%);
  padding: 9rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.abt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.abt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.42rem 1.05rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.abt-hero-badge svg {
  color: #fbbf24;
}
.abt-hero-title {
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1.4rem;
}
.abt-title-accent {
  color: #018cff;
  display: inline-block;
}
.abt-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
}


/* ── Shared small blue badge (Our Story / What We Believe) ── */
.abt-badge {
  display: inline-block;
  background: rgba(26,111,204,0.10);
  color: #1a6fcc;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  border: 1px solid #C8D9EB;
  margin-bottom: 1.1rem;
}


/* ══════════════════════════════════
   OUR STORY
   ══════════════════════════════════ */
.abt-story {
  padding: 6rem 0 3rem;
  background: #ffffff;
}
.abt-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.abt-story-img {
  border-radius: 20px;
  overflow: hidden;
}
.abt-story-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.abt-story-text {
  max-width: 520px;
}
.abt-story-title {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #062743;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
}
.abt-story-desc {
  font-size: 1rem;
  color: #003153;
  line-height: 1.75;
  margin: 0 0 1.75rem;
}
.abt-quote {
  position: relative;
  background: #EAF6FF;
  /* border-left: 3px solid #1a6fcc; */
  border-radius: 10px;
  padding: 1.15rem 1.3rem 1.15rem 1.3rem;
  margin: 0;
}
.abt-quote-mark {
  color: #008CFF;
  opacity: 0.55;
  margin-bottom: 0.4rem;
  display: block;
}
.abt-quote p {
  font-size: 0.95rem;
  color: #062743;
  line-height: 1.55;
  font-weight: 500;
  margin: 0 0 0.5rem;
  font-style: normal;
}
.abt-quote cite {
  font-size: 0.82rem;
  font-weight: 600;
  color: #008CFF;
  font-style: normal;
}


/* ══════════════════════════════════
   MISSION + VISION CARDS
   ══════════════════════════════════ */
.abt-mv {
  padding: 3rem 0 3rem;
  background: #ffffff;
}
.abt-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.abt-mv-card {
      position: relative;
    background: #EAF6FF;
    border-radius: 7px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: normal;
    gap: 1.5rem;
    min-height: 199px;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s;
}
.abt-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(26,111,204,0.15);
}
.abt-mv-body {
  flex: 1;
  min-width: 0;
}
.abt-mv-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #008CFF;
  margin-bottom: 0.85rem;
}
.abt-mv-title {
  font-size: 1.35rem;
  font-weight: 500;
  color: #003153;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
}
.abt-mv-icon {
  flex-shrink: 0;
  width: 160px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-mv-icon svg {
  width: 100%;
  height: 100%;
}


/* ══════════════════════════════════
   WHAT WE BELIEVE
   ══════════════════════════════════ */
.abt-believe {
  padding: 4rem 0 6rem;
  background: #ffffff;
}
.abt-believe-head {
  text-align: center;
  margin-bottom: 3rem;
}
.abt-believe-title {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #003153;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0;
}
.abt-believe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.abt-believe-card {
  text-align: center;
  padding: 1.75rem 1.25rem 1.5rem;
  border-radius: 14px;
  background: #ffffff;
  transition: transform .3s cubic-bezier(.25,.46,.45,.94), box-shadow .3s, background .3s;
}
.abt-believe-card:hover {
  transform: translateY(-4px);
  background: #f6faff;
  box-shadow: 0 18px 40px rgba(26,111,204,0.10);
}
.abt-check-ico {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.abt-check-ico svg {
  width: 54px;
  height: 54px;
}
.abt-believe-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #003153;
  margin: 0 0 0.55rem;
  letter-spacing: -0.01em;
}
.abt-believe-card p {
  font-size: 1rem;
  color: #003153;
  line-height: 1.6;
  margin: 0;
}


/* ══════════════════════════════════
   OUR APPROACH (dark navy + dashboard visual)
   ══════════════════════════════════ */
.abt-approach {
  position: relative;
  background: #003153;
  background-image:
    radial-gradient(ellipse 55% 45% at 8% 50%, rgba(26,111,204,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 95% 50%, rgba(26,111,204,0.18) 0%, transparent 60%);
  padding: 4rem 0;
  overflow: hidden;
}
.abt-approach-grid {
  display: grid;
  padding-left: 100px;
  grid-template-columns: minmax(0, 670px) 1fr;
  gap: 2rem;
  align-items: start;
}
.abt-people-layout{
  padding: 0rem 6.2rem;
}
.abt-approach-badge {
  display: inline-block;
  background: #C8D9EB;
    color: #1A6FCC;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.42rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 1.2rem;
}
.abt-approach-title {
  font-size: clamp(1.4rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
}
.abt-approach-desc {
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.75;
  margin: 0 0 2rem;
  max-width: 520px;
}
.abt-approach-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.abt-approach-feats li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}
.abt-feat-ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
}
.abt-feat-ico svg {
  width: 22px;
  height: 22px;
}
.abt-feat-body strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.abt-feat-body p {
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0;
}

/* Right-side dashboard visual — single image with right-edge bleed */
.abt-approach-visual {
  position: relative;
  width: 100%;
  display: flex;
  margin-left: 3rem;
  justify-content: flex-end;
  align-items: center;
  margin-right: -6rem;
}
.abt-approach-img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 620px;
}


/* ══════════════════════════════════
   WHO WE'RE BUILDING FOR
   ══════════════════════════════════ */
.abt-people {
  padding: 5rem 0;
  background: #ffffff;
}
.abt-people-head {
  text-align: center;
  margin-bottom: 3rem;
}
.abt-people-title {
  font-size: clamp(1.3rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: #003153;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0;
}
.abt-people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.abt-people-card {
  position: relative;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.abt-people-card:hover {
  transform: translateY(-4px);
}
.abt-people-img-wrap {
  position: relative;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f4f9;
  margin-bottom: 1.1rem;
  box-shadow: 0 12px 30px rgba(6,39,67,0.10);
}
.abt-people-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.abt-people-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #003153;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.abt-people-desc {
      max-width: 12rem;
  font-size: 0.95rem;
  color: #003153;
  line-height: 1.55;
  margin: 0;
}
.abt-people-inv {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  min-width: 130px;
}
.abt-people-inv-lbl {
  font-size: 0.65rem;
  color: rgba(6,39,67,0.55);
  margin-bottom: 0.15rem;
}
.abt-people-inv-val {
  font-size: 1rem;
  font-weight: 700;
  color: #062743;
  margin-bottom: 0.4rem;
}
.abt-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.abt-pill-paid { background: rgba(34,197,94,0.14); color: #22c55e; }
.abt-pill-sent { background: rgba(245,158,11,0.14); color: #f59e0b; }


/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
   @media (max-width: 1275px) {
.abt-people-layout {
    padding: 0rem 3.2rem;
}
.abt-approach-grid{
  padding-left: 3.2rem;
}
   }
@media (max-width: 1024px) {
  .abt-approach-grid{
        grid-template-columns: auto;
  }
  .abt-approach-img{
    display: none;
  }
  .abt-believe-grid   { grid-template-columns: repeat(2, 1fr); }
  .abt-mv-card        { padding: 1.9rem 1.7rem; }
  .abt-mv-icon        { width: 120px; height: 120px; }
  .abt-approach-feats { grid-template-columns: 1fr 1fr; }
  .abt-people-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .abt-people-desc{max-width: 100%;}
  .abt-people-card{
    text-align: center;
  }
  .abt-hero              { padding: 8rem 0 4rem; }
  .abt-story             { padding: 2rem 0 2.5rem; }
  .abt-story-grid        { grid-template-columns: 1fr; gap: 2.4rem; }
  .abt-story-text        { max-width: 100%; }
  .abt-mv                { padding: 2rem 0 2.5rem; }
  .abt-mv-grid           { grid-template-columns: 1fr; gap: 1.2rem; }
  .abt-believe           { padding: 2rem 0 4.5rem; }
  .abt-mv-icon           { width: 100%; height:100px; }
  .abt-mv-title          { font-size: 1rem; }
  .abt-approach          { padding: 2rem 2.2rem; }
  .abt-approach-grid     { grid-template-columns: 1fr; gap: 3rem; padding-left: 0; }
  .abt-approach-visual   { margin-right: 0; justify-content: center; }
  .abt-approach-img      { max-width: 520px; min-width: 0; margin: 0 auto; }
  .abt-people            { padding: 4rem 0; }
}

@media (max-width: 600px) {
  .abt-hero              { padding: 4rem 0 2.2rem; }
  .abt-hero-sub br       { display: none; }
  .abt-story-img img     { aspect-ratio: 16 / 11;display: none; }
  .abt-story-grid{gap: 0rem;}
  .abt-mv-card           { flex-direction: column; text-align: center; gap: 1rem; padding: 1.7rem 1.4rem; min-height: 0; }
  .abt-believe-grid      { grid-template-columns: 1fr; }
  .abt-believe-head      { margin-bottom: 1rem; }
  .abt-approach-feats    { grid-template-columns: 1fr; gap: 1rem; }
  .abt-approach-img      { max-width: 100%; }
  .abt-people-grid       { grid-template-columns: 1fr; max-width: auto; margin: 0 auto; }
}


