/* ============================================================
   VAZL — Professional School ERP Landing Page
   Complete Design System v2.0
   ============================================================ */

/* ── Google Font (Inter) is loaded via include.blade.php ── */

/* ── 1. DESIGN TOKENS ── */
:root {
  --p:        #2563EB;   /* primary blue  */
  --p-dk:     #1D4ED8;
  --p-lt:     #EFF6FF;
  --g:        #16A34A;   /* accent green  */
  --g-lt:     #F0FDF4;
  --dk:       #0F172A;   /* slate-900     */
  --body:     #1E293B;   /* slate-800     */
  --muted:    #64748B;   /* slate-500     */
  --border:   #E2E8F0;   /* slate-200     */
  --bg:       #F8FAFC;   /* slate-50      */
  --white:    #FFFFFF;
  --shadow:   0 1px 3px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.05);
  --shadow-md:0 4px 20px rgba(15,23,42,.09);
  --shadow-lg:0 16px 48px rgba(15,23,42,.14);
  --r:        8px;       /* border-radius */
  --r-lg:     16px;
  --r-xl:     24px;
  --t:        all .22s ease;
  --font:     'Inter', 'Lato', sans-serif;
}

/* ── 2. GLOBAL RESET ── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font) !important; color: var(--body); background: var(--white); }
a { text-decoration: none !important; }
img { max-width: 100%; }
.commonMT { margin-top: 0 !important; }

/* ── 3. NAVBAR ── */
.navbar {
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border) !important;
  position: sticky !important; top: 0; z-index: 1000;
  padding: 0 !important;
  box-shadow: none;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md) !important; }

.navbarWrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 68px !important;
  width: 100%;
  gap: 16px;
}

.navLogo .logo { height: 48px !important; width: auto !important; }

/* Nav links */
.menuListWrapper { display: flex; align-items: center; }
.menuListWrapper .listItems {
  display: flex !important; gap: 4px; align-items: center;
  padding: 0 !important; margin: 0 !important; list-style: none !important;
}
.menuListWrapper .listItems li { list-style: none !important; }
.menuListWrapper .listItems a,
.menuListWrapper .listItems .dropdown-toggle {
  font-size: 14px !important; font-weight: 500 !important;
  color: var(--muted) !important; padding: 6px 12px !important;
  border-radius: var(--r) !important; border: none !important;
  background: transparent !important; box-shadow: none !important;
  transition: var(--t) !important; text-decoration: none !important;
}
.menuListWrapper .listItems a:hover,
.menuListWrapper .listItems .dropdown-toggle:hover {
  color: var(--p) !important; background: var(--p-lt) !important;
}

/* Navbar buttons */
.loginBtnsWrapper { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.nav-btn-login {
  font-size: 14px; font-weight: 600; color: var(--body) !important;
  background: transparent; border: 1.5px solid var(--border);
  padding: 8px 18px; border-radius: var(--r); cursor: pointer;
  transition: var(--t); white-space: nowrap; font-family: var(--font);
}
.nav-btn-login:hover { border-color: var(--p); color: var(--p) !important; }

.nav-btn-trial {
  font-size: 14px; font-weight: 700; color: #fff !important;
  background: var(--p); border: none; padding: 9px 20px;
  border-radius: var(--r); cursor: pointer; transition: var(--t);
  white-space: nowrap; font-family: var(--font);
  box-shadow: 0 2px 10px rgba(37,99,235,.30);
}
.nav-btn-trial:hover { background: var(--p-dk); box-shadow: 0 4px 16px rgba(37,99,235,.40); }

/* Hamburger */
.navbar .hamburg { display: none !important; font-size: 20px; cursor: pointer; }
@media (max-width: 1199px) {
  .menuListWrapper .listItems { display: none !important; }
  .loginBtnsWrapper { display: none !important; }
  .navbar .hamburg { display: flex !important; align-items: center; }
}

/* ── 4. HERO SECTION ── */
.hero-wrap {
  background: linear-gradient(145deg, #060D1E 0%, #0C1A3A 45%, #071224 100%);
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* Subtle dot-grid overlay */
.hero-grid-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
}

/* Glow blobs */
.hero-blob-1 {
  position: absolute; top: -140px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.22) 0%, transparent 60%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -100px; left: 5%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,.13) 0%, transparent 60%);
  pointer-events: none;
}

/* Top badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.30);
  color: #93C5FD; font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 30px;
  letter-spacing: .03em;
}
.hero-badge-dot {
  width: 7px; height: 7px; background: #34D399; border-radius: 50%;
  display: inline-block;
  animation: hdot-pulse 2s ease-in-out infinite;
}
@keyframes hdot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,.6); }
  50%      { box-shadow: 0 0 0 5px rgba(52,211,153,0); }
}

/* Main headline */
.hero-title {
  font-size: 62px; font-weight: 900; line-height: 1.08;
  color: #fff; margin-bottom: 24px; letter-spacing: -.025em;
}
.hero-title .ht-blue  { color: #60A5FA; }
.hero-title .ht-green {
  color: #34D399;
  background: linear-gradient(90deg, #34D399, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.58);
  line-height: 1.75; margin-bottom: 32px; max-width: 530px;
}

/* Feature pills */
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
}
.hp-item {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.80);
  font-size: 12.5px; font-weight: 500;
  padding: 6px 14px; border-radius: 100px;
  transition: var(--t);
}
.hp-item:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.hp-item i { color: #34D399; font-size: 10px; }

/* CTA group */
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff !important; font-size: 15px; font-weight: 700;
  padding: 15px 32px; border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none !important; transition: var(--t); font-family: var(--font);
  box-shadow: 0 4px 20px rgba(37,99,235,.45), 0 0 0 0 rgba(37,99,235,.3);
}
.btn-primary-lg:hover {
  background: linear-gradient(135deg, #1D4ED8, #1E40AF);
  box-shadow: 0 8px 28px rgba(37,99,235,.55);
  transform: translateY(-1px);
}

.btn-ghost-lg {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  color: #fff !important; font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 10px; cursor: pointer;
  text-decoration: none !important; transition: var(--t); font-family: var(--font);
}
.btn-ghost-lg:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
}

/* Stats row */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; overflow: hidden;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.hs-item {
  padding: 16px 28px; text-align: center;
}
.hs-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.09);
  flex-shrink: 0;
}
.hs-num { display: block; font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
.hs-lbl { display: block; font-size: 11.5px; color: rgba(255,255,255,.45); margin-top: 5px; font-weight: 500; letter-spacing: .02em; }

/* Hero image panel */
.hero-img-col { position: relative; padding: 24px 0 24px 24px; }

/* Glow ring behind the screenshot */
.hero-img-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  width: 90%; height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-screen {
  position: relative; z-index: 1;
  width: 100%; border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
}

/* Floating chips */
.hero-chip {
  position: absolute; background: rgba(255,255,255,.96);
  border-radius: 14px; padding: 11px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  display: flex; align-items: center; gap: 10px;
  min-width: 148px; z-index: 2;
  animation: chip-float 4s ease-in-out infinite;
}
.hero-chip.hc-1 { top: 48px; left: -14px; animation-delay: 0s; }
.hero-chip.hc-2 { bottom: 80px; right: -14px; animation-delay: 1.3s; }
.hero-chip.hc-3 { bottom: 20px; left: -14px; animation-delay: 2.6s; }

@keyframes chip-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hc-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.hc-blue  { background: rgba(37,99,235,.12); color: var(--p); }
.hc-green { background: rgba(22,163,74,.12);  color: var(--g); }
.hc-or    { background: rgba(249,115,22,.12); color: #F97316; }
.hc-val   { display: block; font-size: 14px; font-weight: 800; color: var(--dk); line-height: 1; }
.hc-lbl   { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }

@media (max-width: 991px) {
  .hero-wrap { padding: 80px 0 64px; min-height: auto; }
  .hero-title { font-size: 38px; }
  .hero-sub   { font-size: 16px; }
  .hero-img-col { padding: 48px 0 0; }
  .hero-chip  { display: none; }
  .hero-img-glow { display: none; }
  .hs-item { padding: 14px 20px; }
  .hs-num  { font-size: 22px; }
}
@media (max-width: 575px) {
  .hero-title  { font-size: 30px; }
  .hero-cta    { flex-direction: column; }
  .hero-stats  { width: 100%; }
  .hero-pills  { gap: 6px; }
  .hp-item     { font-size: 12px; padding: 5px 11px; }
}

/* ── 5. TRUST BAR ── */
.trust-section {
  background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-inner { display: flex; align-items: center; gap: 20px; overflow: hidden; }
.trust-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.trust-section .slider-content { display: flex; align-items: center; }
.trust-section .swiperDataWrapper { margin: 0 16px; }
.trust-section .swiperDataWrapper .card { border: none; background: transparent; box-shadow: none; padding: 0; }
.trust-section .swiperDataWrapper img { height: 36px; width: auto; filter: grayscale(1) opacity(.4); transition: var(--t); }
.trust-section .swiperDataWrapper img:hover { filter: none; }

/* ── 6. SECTION HELPERS ── */
.lp-section { padding: 96px 0; }
.lp-section-sm { padding: 60px 0; }
.lp-bg { background: var(--bg); }
.lp-dark { background: var(--dk); }

.sec-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.sec-eyebrow.blue { background: var(--p-lt); color: var(--p); }
.sec-eyebrow.green { background: var(--g-lt); color: var(--g); }
.sec-eyebrow.dark { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }

.sec-h { font-size: 38px; font-weight: 800; color: var(--dk); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
.sec-p { font-size: 17px; color: var(--muted); line-height: 1.7; }
.sec-h.white { color: #fff; }
.sec-p.white { color: rgba(255,255,255,.6); }

/* ── 7. STATS COUNTER ── */
.stats-strip {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #3B82F6 100%);
  padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-cell {
  text-align: center; padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-cell:last-child { border-right: none; }
.stat-num { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num .numb { font-size: 52px; font-weight: 900; color: #fff; line-height: 1; }
.stat-num .plus { font-size: 36px; font-weight: 900; color: rgba(255,255,255,.7); }
.stat-lbl { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.65); margin-top: 8px; }

@media (max-width: 575px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-cell:last-child { border-bottom: none; }
  .stat-num .numb { font-size: 38px; }
}

/* ── 8. FEATURES GRID ── */
.feat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px; text-align: left;
  transition: var(--t); height: 100%; cursor: default;
}
.feat-card:hover {
  border-color: var(--p); box-shadow: 0 8px 32px rgba(37,99,235,.12);
  transform: translateY(-3px);
}
.feat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-icon img { width: 28px; height: 28px; object-fit: contain; }
.fi-blue   { background: rgba(37,99,235,.10); }
.fi-green  { background: rgba(22,163,74,.10); }
.fi-purple { background: rgba(124,58,237,.10); }
.fi-orange { background: rgba(249,115,22,.10); }
.fi-pink   { background: rgba(236,72,153,.10); }
.fi-teal   { background: rgba(20,184,166,.10); }
.feat-card h6 { font-size: 15px; font-weight: 700; color: var(--dk); margin-bottom: 0; }

.view-more-feature {
  background: transparent !important; color: var(--p) !important;
  border: 1.5px solid var(--p) !important; padding: 10px 28px !important;
  border-radius: var(--r) !important; font-size: 14px !important;
  font-weight: 700 !important; cursor: pointer; margin-top: 8px;
  font-family: var(--font); transition: var(--t) !important;
}
.view-more-feature:hover { background: var(--p-lt) !important; }

/* ── 9. MODULE TABS (feature sections) ── */
.mod-section { padding: 96px 0; }
.mod-section:nth-child(even) { background: var(--bg); }

.sectionTitle { margin-bottom: 36px; }
.sectionTitle .greenText {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  padding: 5px 14px; border-radius: 100px;
  background: var(--g-lt); color: var(--g); margin-bottom: 12px;
}
.sectionTitle > span:not(.greenText) {
  display: block; font-size: 32px; font-weight: 800;
  color: var(--dk); line-height: 1.2; letter-spacing: -.02em;
}

.tabs { display: flex; flex-direction: column; gap: 6px; }
.tab {
  padding: 16px 20px; border-radius: var(--r);
  border: 1.5px solid var(--border); cursor: pointer;
  transition: var(--t); display: flex; flex-direction: column; gap: 4px;
}
.tab > span:first-child { font-size: 15px; font-weight: 700; color: var(--dk); }
.tab > span:last-child  { font-size: 13px; color: var(--muted); line-height: 1.5; display: none; }
.tab.active { border-color: var(--p); background: var(--p-lt); }
.tab.active > span:first-child { color: var(--p); }
.tab.active > span:last-child  { display: block; }

.content-container { position: relative; min-height: 280px; }
.content { display: none; }
.content.active { display: block; animation: fadeUp .3s ease; }
.content img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* ── 10. ABOUT / WHY CHOOSE US ── */
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; display: flex;
  align-items: flex-start; gap: 16px; margin-bottom: 14px; transition: var(--t);
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.why-body strong { display: block; font-size: 15px; font-weight: 700; color: var(--dk); margin-bottom: 4px; }
.why-body span { font-size: 14px; color: var(--muted); line-height: 1.5; }

.about-img {
  width: 100%; border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 15px; font-weight: 500; color: var(--body);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--g); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* ── 11. HOW IT WORKS ── */
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px; text-align: center; transition: var(--t);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--p); color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.step-card h5 { font-size: 18px; font-weight: 700; color: var(--dk); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── 12. PRICING ── */
.pricing-section { padding: 96px 0; background: var(--bg); }
.price-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 28px; transition: var(--t); height: 100%;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.featured {
  background: linear-gradient(145deg, #1D4ED8 0%, #2563EB 100%);
  border-color: transparent; color: #fff;
}
.price-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 20px;
}
.pb-free     { background: rgba(22,163,74,.12); color: var(--g); }
.pb-post     { background: rgba(22,163,74,.12); color: var(--g); }
.pb-pre      { background: rgba(37,99,235,.10); color: var(--p); }
.pb-featured { background: rgba(255,255,255,.18); color: #fff; }

.price-name { font-size: 22px; font-weight: 800; color: var(--dk); margin-bottom: 4px; }
.price-card.featured .price-name { color: #fff; }
.price-meta  { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.price-card.featured .price-meta { color: rgba(255,255,255,.7); }
.price-days  { font-size: 13px; font-weight: 700; color: var(--p); margin-bottom: 24px; }
.price-card.featured .price-days { color: #93C5FD; }

.price-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 8px; }
.price-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--body); }
.price-card.featured .price-list li { color: rgba(255,255,255,.85); }
.price-list li.crossed { opacity: .4; text-decoration: line-through; }
.price-list li img { width: 15px; height: 15px; flex-shrink: 0; }

.price-btn {
  width: 100%; padding: 12px; border-radius: var(--r);
  font-size: 15px; font-weight: 700; cursor: pointer; border: none;
  transition: var(--t); font-family: var(--font);
  background: var(--p); color: #fff;
}
.price-btn:hover { background: var(--p-dk); }
.price-card.featured .price-btn { background: #fff; color: var(--p); }
.price-card.featured .price-btn:hover { background: #EFF6FF; }

/* ── 13. CUSTOM PACKAGE CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dk) 0%, #1E3A5F 100%);
  border-radius: var(--r-xl); padding: 56px 48px; margin: 0 0 96px;
}
.cta-banner h3 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-banner p  { font-size: 15px; color: rgba(255,255,255,.65); margin: 0; line-height: 1.7; }
.cta-banner-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g); color: #fff !important; font-size: 15px; font-weight: 700;
  padding: 14px 30px; border-radius: var(--r); border: none; cursor: pointer;
  text-decoration: none !important; transition: var(--t); font-family: var(--font);
  white-space: nowrap;
}
.cta-banner-btn:hover { background: #15803D; }

/* ── 14. FAQ ── */
.faq-section { padding: 96px 0; }
.faq-section .accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  margin-bottom: 10px; overflow: hidden;
}
.faq-section .accordion-button {
  background: var(--white) !important; color: var(--dk) !important;
  font-size: 15px; font-weight: 700; padding: 18px 22px; box-shadow: none !important;
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--p) !important; background: var(--p-lt) !important;
}
.faq-section .accordion-body { font-size: 14px; color: var(--muted); line-height: 1.8; padding: 16px 22px; }

/* ── 15. CONTACT ── */
.contact-section { padding: 96px 0; background: var(--bg); }
.contact-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 44px 40px; box-shadow: var(--shadow-md);
}
.contact-card input,
.contact-card textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 12px 16px; font-size: 14px; font-family: var(--font);
  color: var(--dk); background: var(--white); margin-bottom: 14px; transition: var(--t);
}
.contact-card input:focus, .contact-card textarea:focus {
  border-color: var(--p); outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.contact-card textarea { resize: vertical; min-height: 130px; }
.contact-card .contact-submit {
  width: 100%; background: var(--p); color: #fff; border: none;
  padding: 13px; border-radius: var(--r); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: var(--t); font-family: var(--font);
}
.contact-card .contact-submit:hover { background: var(--p-dk); }

.info-tile {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; display: flex;
  align-items: center; gap: 16px; margin-bottom: 14px; transition: var(--t);
}
.info-tile:hover { box-shadow: var(--shadow-md); }
.info-tile-icon {
  width: 46px; height: 46px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.it-blue   { background: rgba(37,99,235,.10); color: var(--p); }
.it-green  { background: rgba(22,163,74,.10);  color: var(--g); }
.it-orange { background: rgba(249,115,22,.10); color: #F97316; }
.info-tile strong { display: block; font-size: 13px; font-weight: 700; color: var(--dk); }
.info-tile span   { font-size: 14px; color: var(--muted); }

/* ── 16. APP DOWNLOAD ── */
.app-section { padding: 96px 0; background: var(--white); }
.app-mockup-wrap { position: relative; text-align: center; }
.app-mockup-wrap::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 320px; height: 320px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(22,163,74,.08));
  pointer-events: none;
}
.app-img { position: relative; z-index: 1; max-width: 260px; width: 100%; display: block; margin: 0 auto; }
.app-content { padding: 24px 0; }
.app-eyebrow { display: inline-block; background: var(--p-lt); color: var(--p); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.app-title { font-size: 34px; font-weight: 800; color: var(--dk); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 14px; }
.app-desc  { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.store-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btns img { height: 48px; width: auto; border-radius: 10px; box-shadow: var(--shadow); transition: var(--t); }
.store-btns img:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }

/* ── 17. FOOTER ── */
.site-footer { background: #060D1A; color: rgba(255,255,255,.65); margin-top: 0 !important; }
.footer-main { padding: 72px 0 48px; }

.footer-logo {
  height: 44px; width: auto; object-fit: contain; display: block;
  background: rgba(255,255,255,.94); padding: 5px 12px; border-radius: 8px;
  margin-bottom: 20px;
}
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.55) !important; text-decoration: none !important;
  transition: var(--t);
}
.footer-social a:hover { background: var(--p); border-color: var(--p); color: #fff !important; }

.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: #fff; margin-bottom: 20px; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,.45) !important; text-decoration: none !important; transition: var(--t); }
.footer-nav a:hover { color: rgba(255,255,255,.9) !important; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-list li i { font-size: 13px; color: var(--g); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list li span { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.5; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-copy strong { color: rgba(255,255,255,.6); font-weight: 600; }
.footer-powered { font-size: 13px; color: rgba(255,255,255,.25); text-align: right; }

@media (max-width: 767px) {
  .footer-powered { text-align: left; margin-top: 6px; }
}

/* ── 18. REGISTRATION MODAL ── */
.modal-content { border-radius: var(--r-xl) !important; overflow: hidden; }
.formModal .modal-header { background: var(--p); padding: 20px 28px; border-bottom: none; }
.formModal .modal-title { color: #fff !important; font-weight: 700; }
.formModal .btn-close { filter: brightness(0) invert(1); }
.formModal .modal-body { padding: 28px; }
.formModal .inputWrapper { margin-bottom: 16px; }
.formModal .inputWrapper label { font-size: 13px; font-weight: 600; color: var(--dk); margin-bottom: 6px; display: block; }
.formModal .inputWrapper input { width: 100%; border: 1.5px solid var(--border); border-radius: var(--r); padding: 10px 14px; font-size: 14px; font-family: var(--font); transition: var(--t); }
.formModal .inputWrapper input:focus { border-color: var(--p); outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.formModal .headingWrapper span { font-size: 15px; font-weight: 700; color: var(--dk); display: block; padding: 16px 0 12px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.formModal .modalfooter { display: flex; justify-content: flex-end; padding-top: 8px; }
.formModal .commonBtn { background: var(--p) !important; color: #fff !important; border: none !important; padding: 11px 28px !important; border-radius: var(--r) !important; font-size: 14px !important; font-weight: 700 !important; margin-top: 0 !important; cursor: pointer; }
.formModal .commonBtn:hover { background: var(--p-dk) !important; }

/* ── 19. OWL CAROUSEL ── */
.owl-theme .owl-dots .owl-dot span { background: var(--border); }
.owl-theme .owl-dots .owl-dot.active span { background: var(--p); }

/* ── 20. GENERAL OVERRIDES ── */
.swiperSect, .swiperSect .commonSlider { background: transparent; }
