/* ==========================================================================
   QC24x7 Reports — Premium SaaS Marketing Website
   Global Stylesheet / Design System
   Author: QC24x7 Reports
   --------------------------------------------------------------------------
   Sections:
   1.  Design Tokens (CSS Variables)
   2.  Base / Reset
   3.  Typography
   4.  Layout Helpers & Utilities
   5.  Buttons
   6.  Navbar
   7.  Hero
   8.  Section Primitives (badges, headings, cards)
   9.  Feature / Benefit / Industry components
   10. Screenshots / Mockups
   11. Stats
   12. Testimonials
   13. Pricing
   14. Solutions
   15. FAQ / Accordion
   16. CTA band
   17. Forms / Contact
   18. Footer
   19. Animations & Effects
   20. Responsive
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand palette */
  --primary: #2563EB;
  --primary-600: #1d4ed8;
  --primary-700: #1e40af;
  --secondary: #06B6D4;
  --accent: #22C55E;
  --warning: #F59E0B;
  --danger: #ef4444;

  /* Neutrals */
  --bg: #F8FAFC;
  --bg-alt: #ffffff;
  --dark: #0F172A;
  --dark-800: #1e293b;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;

  /* Text */
  --text: #0f172a;
  --text-muted: #64748b;
  --text-invert: #f8fafc;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  --grad-primary-soft: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
  --grad-accent: linear-gradient(135deg, #22C55E 0%, #06B6D4 100%);
  --grad-warm: linear-gradient(135deg, #F59E0B 0%, #ef4444 100%);
  --grad-purple: linear-gradient(135deg, #6366f1 0%, #2563EB 100%);
  --grad-dark: linear-gradient(160deg, #0F172A 0%, #1e293b 60%, #0b3a6b 100%);
  --grad-hero: radial-gradient(1200px 600px at 80% -10%, rgba(6,182,212,.18), transparent 60%),
               radial-gradient(1000px 500px at 0% 10%, rgba(37,99,235,.16), transparent 55%);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.06);
  --shadow-sm: 0 2px 8px rgba(15,23,42,.06);
  --shadow-md: 0 10px 30px rgba(15,23,42,.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,.12);
  --shadow-xl: 0 40px 90px rgba(15,23,42,.18);
  --shadow-primary: 0 18px 40px rgba(37,99,235,.28);
  --shadow-glow: 0 0 0 1px rgba(37,99,235,.08), 0 20px 50px rgba(37,99,235,.18);

  /* Radius */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Spacing scale */
  --section-y: 110px;

  /* Typography */
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Transitions */
  --t-fast: .18s cubic-bezier(.4,0,.2,1);
  --t: .3s cubic-bezier(.4,0,.2,1);
  --t-slow: .5s cubic-bezier(.16,1,.3,1);
}

/* ==========================================================================
   2. BASE / RESET
   ========================================================================== */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary-700); }

::selection { background: rgba(37,99,235,.18); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--slate-400); border-radius: 999px; border: 3px solid var(--slate-100); }
::-webkit-scrollbar-thumb:hover { background: var(--slate-500); }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.18; color: var(--dark); margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { margin: 0 0 1rem; color: var(--text-muted); }
.lead { font-size: 1.2rem; color: var(--slate-600); line-height: 1.75; }

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-gradient-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ==========================================================================
   4. LAYOUT HELPERS & UTILITIES
   ========================================================================== */
.section { padding: var(--section-y) 0; position: relative; }
.section-sm { padding: 70px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-soft { background: linear-gradient(180deg, #ffffff 0%, #f1f6ff 100%); }
.bg-dark { background: var(--grad-dark); color: var(--text-invert); }
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4 { color: #fff; }
.bg-dark p { color: #cbd5e1; }

.container { max-width: 1200px; }
.container-tight { max-width: 960px; margin-inline: auto; padding-inline: 15px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(37,99,235,.08);
  padding: .45rem 1rem; border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.eyebrow.on-dark { background: rgba(255,255,255,.08); color: #7dd3fc; }

.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head p { font-size: 1.13rem; }

.divider-fade { height: 1px; background: linear-gradient(90deg, transparent, var(--slate-200), transparent); }

/* blob / glow backgrounds */
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; z-index: 0; pointer-events: none; }
.blob-1 { width: 480px; height: 480px; background: rgba(37,99,235,.22); }
.blob-2 { width: 420px; height: 420px; background: rgba(6,182,212,.22); }
.blob-3 { width: 360px; height: 360px; background: rgba(34,197,94,.18); }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: .85rem 1.7rem;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t);
  display: inline-flex; align-items: center; gap: .55rem;
  border: none; cursor: pointer; line-height: 1;
}
.btn:focus-visible { outline: 3px solid rgba(37,99,235,.4); outline-offset: 2px; }

.btn-gradient {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
  position: relative; overflow: hidden;
}
.btn-gradient:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 24px 50px rgba(37,99,235,.4); }
.btn-gradient::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s ease;
}
.btn-gradient:hover::after { transform: translateX(120%); }

.btn-light {
  background: #fff; color: var(--dark); box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
}
.btn-light:hover { color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid rgba(37,99,235,.35);
}
.btn-outline:hover { background: rgba(37,99,235,.06); color: var(--primary-700); transform: translateY(-3px); }

.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-3px); }

.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { color: var(--primary-700); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1.2rem; font-size: .9rem; }

/* pulse ring on primary CTA */
.btn-pulse { position: relative; }
.btn-pulse::before {
  content: ""; position: absolute; inset: -4px; border-radius: inherit;
  border: 2px solid var(--primary); opacity: 0;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { opacity: .5; transform: scale(.96); }
  80%,100% { opacity: 0; transform: scale(1.15); }
}

/* ==========================================================================
   6. NAVBAR
   ========================================================================== */
.navbar {
  padding: .9rem 0;
  transition: all var(--t);
  background: rgba(248,250,252,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.85);
  box-shadow: 0 6px 24px rgba(15,23,42,.06);
  border-bottom-color: var(--slate-200);
  padding: .65rem 0;
}
.navbar-brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.28rem; color: var(--dark); letter-spacing: -.02em; }
.navbar-brand:hover { color: var(--dark); }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--grad-primary);
  display: grid; place-items: center; color: #fff; font-size: 1.15rem;
  box-shadow: var(--shadow-primary);
  flex: none;
}
.brand-mark i { transform: translateY(0); }
.navbar .nav-link {
  font-weight: 500; color: var(--slate-600); margin: 0 .35rem; padding: .5rem .2rem !important;
  position: relative;
}
.navbar .nav-link::after {
  content: ""; position: absolute; left: .2rem; right: .2rem; bottom: .2rem; height: 2px;
  background: var(--grad-primary); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--primary); }
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border: none; padding: .3rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 160px 0 90px;
  background: var(--grad-hero), var(--bg);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(700px 500px at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 500px at 50% 0%, #000 30%, transparent 75%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 1.2rem; }
.hero .lead { max-width: 560px; margin-bottom: 2rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--r-pill); padding: .4rem .9rem; font-size: .85rem; font-weight: 500;
  color: var(--slate-600); box-shadow: var(--shadow-xs);
}
.hero-pill i { color: var(--accent); }

.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; color: var(--slate-500); font-size: .92rem; }
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px;
  display: grid; place-items: center; color: #fff; font-weight: 600; font-size: .8rem;
  box-shadow: var(--shadow-xs);
}
.hero-avatars span:first-child { margin-left: 0; }

/* hero visual / floating dashboard */
.hero-visual { position: relative; }
.hero-visual .glass-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r-md); padding: .9rem 1.1rem;
  box-shadow: var(--shadow-lg);
}
.float-1 { top: 8%; left: -6%; animation: floatY 6s ease-in-out infinite; }
.float-2 { bottom: 10%; right: -4%; animation: floatY 5s ease-in-out infinite .8s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ==========================================================================
   8. SECTION PRIMITIVES / CARDS
   ========================================================================== */
.card-premium {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--r-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.card-premium:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.25); }

.icon-badge {
  width: 60px; height: 60px; border-radius: var(--r-md);
  display: grid; place-items: center; font-size: 1.5rem; color: #fff;
  margin-bottom: 1.3rem; box-shadow: var(--shadow-md);
}
.ib-primary { background: var(--grad-primary); }
.ib-accent { background: var(--grad-accent); }
.ib-warm { background: var(--grad-warm); }
.ib-purple { background: var(--grad-purple); }
.ib-cyan { background: linear-gradient(135deg,#06B6D4,#0ea5e9); }
.ib-amber { background: linear-gradient(135deg,#F59E0B,#f97316); }
.ib-soft { background: rgba(37,99,235,.1); color: var(--primary); box-shadow: none; }

.card-premium h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.card-premium p { margin-bottom: 0; font-size: .98rem; }

/* glass card variant */
.glass {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   9. FEATURE / BENEFIT / INDUSTRY
   ========================================================================== */
/* Marquee of industries */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 2.6rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: .6rem; color: var(--slate-500); font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.marquee-item i { font-size: 1.3rem; color: var(--primary); opacity: .85; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* benefit list */
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-check {
  flex: none; width: 30px; height: 30px; border-radius: 9px;
  background: rgba(34,197,94,.14); color: var(--accent);
  display: grid; place-items: center; font-size: .85rem; margin-top: .25rem;
}
.benefit-item h4 { font-size: 1.08rem; margin-bottom: .2rem; }
.benefit-item p { margin: 0; font-size: .96rem; }

/* module chips grid */
.module-chip {
  display: flex; align-items: center; gap: .7rem;
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-sm);
  padding: .85rem 1rem; font-weight: 500; font-size: .95rem; color: var(--dark);
  box-shadow: var(--shadow-xs); transition: transform var(--t-fast), box-shadow var(--t), border-color var(--t);
  height: 100%;
}
.module-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.3); color: var(--primary); }
.module-chip i { color: var(--primary); font-size: 1.05rem; width: 22px; text-align: center; flex: none; }

/* split feature row */
.feature-media {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200); background: #fff;
}

/* ==========================================================================
   10. SCREENSHOTS / MOCKUPS
   ========================================================================== */
.mockup {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-lg);
}
.mockup-bar {
  display: flex; align-items: center; gap: .45rem; padding: .8rem 1rem;
  background: var(--slate-100); border-bottom: 1px solid var(--slate-200);
}
.mockup-bar span { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.mockup-url { margin-left: auto; font-size: .78rem; color: var(--slate-500); background: #fff; padding: .2rem .8rem; border-radius: 999px; border: 1px solid var(--slate-200); }
.mockup-body { padding: 0; position: relative; }
.mockup-placeholder {
  aspect-ratio: 16/10; width: 100%;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(37,99,235,.1), transparent 60%),
    linear-gradient(135deg, #eef2ff, #ecfeff);
  display: grid; place-items: center; color: var(--slate-400);
}
.mockup-placeholder .ph-inner { text-align: center; }
.mockup-placeholder i { font-size: 2.4rem; margin-bottom: .5rem; color: var(--slate-400); }

/* screenshots showcase float */
.shot-stack { position: relative; }
.shot-stack .mockup { transition: transform var(--t-slow); }
.shot-back { position: absolute; inset: 0; transform: translate(30px, 26px) scale(.94); opacity: .55; filter: blur(1px); z-index: 1; }
.shot-front { position: relative; z-index: 2; }
.floaty { animation: floatY 7s ease-in-out infinite; }

/* screenshot gallery tab */
.shot-tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.4rem; }
.shot-tab {
  border: 1px solid var(--slate-200); background: #fff; color: var(--slate-600);
  border-radius: var(--r-pill); padding: .55rem 1.2rem; font-weight: 500; font-size: .93rem;
  cursor: pointer; transition: all var(--t-fast);
}
.shot-tab.active, .shot-tab:hover { background: var(--grad-primary); color: #fff; border-color: transparent; box-shadow: var(--shadow-primary); }

/* ==========================================================================
   11. STATS
   ========================================================================== */
.stat-card { text-align: center; padding: 1.5rem 1rem; }
.stat-num { font-size: clamp(2.2rem,4vw,3rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.stat-label { color: var(--slate-500); font-weight: 500; margin-top: .5rem; }
.bg-dark .stat-label { color: #94a3b8; }

/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */
.testimonial-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-lg);
  padding: 2rem; box-shadow: var(--shadow-sm); height: 100%;
  display: flex; flex-direction: column;
}
.testimonial-stars { color: var(--warning); margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 1.05rem; color: var(--slate-600); line-height: 1.7; margin: 0 0 1.5rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; flex: none; }
.testimonial-author strong { display: block; color: var(--dark); font-size: .98rem; }
.testimonial-author span { font-size: .85rem; color: var(--slate-500); }
.swiper-testimonials { padding-bottom: 3.5rem !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* logo strip */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.5rem 3rem; }
.logo-strip .logo-item { font-weight: 700; font-size: 1.25rem; color: var(--slate-400); display: flex; align-items: center; gap: .5rem; transition: color var(--t); }
.logo-strip .logo-item:hover { color: var(--slate-600); }
.logo-strip .logo-item i { font-size: 1.5rem; }

/* ==========================================================================
   13. PRICING
   ========================================================================== */
.pricing-toggle { display: inline-flex; align-items: center; gap: .8rem; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-pill); padding: .35rem; box-shadow: var(--shadow-xs); }
.pricing-toggle button { border: none; background: transparent; padding: .55rem 1.3rem; border-radius: var(--r-pill); font-weight: 600; color: var(--slate-500); cursor: pointer; transition: all var(--t-fast); font-family: var(--font); }
.pricing-toggle button.active { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-primary); }
.pricing-save { font-size: .78rem; color: var(--accent); font-weight: 600; }

.pricing-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-lg);
  padding: 2.4rem 2rem; box-shadow: var(--shadow-sm); height: 100%;
  display: flex; flex-direction: column; position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border: none; color: #fff;
  background: var(--grad-dark);
  box-shadow: var(--shadow-xl); transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.pricing-card.featured h3, .pricing-card.featured .price-amt { color: #fff; }
.pricing-card.featured .price-desc, .pricing-card.featured .plan-name { color: #cbd5e1; }
.pricing-card.featured .pricing-features li { color: #e2e8f0; }
.pricing-badge-top { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-accent); color: #fff; font-size: .78rem; font-weight: 600; padding: .35rem 1rem; border-radius: var(--r-pill); box-shadow: var(--shadow-md); white-space: nowrap; }
.plan-name { font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--primary); margin-bottom: .6rem; }
.price-amt { font-size: 3rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price-amt small { font-size: 1rem; font-weight: 500; color: var(--slate-500); }
.price-desc { font-size: .92rem; color: var(--slate-500); margin: .6rem 0 1.6rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.8rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: .65rem; padding: .5rem 0; color: var(--slate-600); font-size: .96rem; }
.pricing-features li i { color: var(--accent); margin-top: .28rem; flex: none; }
.pricing-features li.muted { color: var(--slate-400); }
.pricing-features li.muted i { color: var(--slate-300); }
.featured .pricing-features li i { color: #4ade80; }

/* comparison table */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--slate-200); }
.compare-table th, .compare-table td { padding: 1rem 1.3rem; text-align: center; border-bottom: 1px solid var(--slate-100); }
.compare-table thead th { background: var(--slate-100); font-weight: 700; color: var(--dark); font-size: 1rem; }
.compare-table thead th.highlight { background: var(--grad-primary); color: #fff; }
.compare-table tbody td:first-child, .compare-table thead th:first-child { text-align: left; font-weight: 600; color: var(--dark); }
.compare-table tbody tr:hover td { background: var(--slate-100); }
.compare-table .fa-check { color: var(--accent); }
.compare-table .fa-xmark { color: var(--slate-300); }
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ==========================================================================
   14. SOLUTIONS
   ========================================================================== */
.solution-tabs-nav { display: flex; flex-direction: column; gap: .6rem; }
.solution-tab {
  display: flex; align-items: center; gap: .9rem; text-align: left; width: 100%;
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-md);
  padding: 1rem 1.1rem; cursor: pointer; transition: all var(--t-fast); color: var(--dark);
  font-weight: 600;
}
.solution-tab:hover { border-color: rgba(37,99,235,.35); }
.solution-tab.active { background: var(--grad-primary); color: #fff; border-color: transparent; box-shadow: var(--shadow-primary); }
.solution-tab .st-ico { width: 40px; height: 40px; border-radius: 11px; background: rgba(37,99,235,.1); color: var(--primary); display: grid; place-items: center; flex: none; transition: all var(--t-fast); }
.solution-tab.active .st-ico { background: rgba(255,255,255,.2); color: #fff; }
.solution-tab small { display: block; font-weight: 400; font-size: .8rem; opacity: .8; }

.solution-panel { display: none; }
.solution-panel.active { display: block; animation: fadeUp .5s ease; }

/* alternating solution block */
.solution-block { padding: 3rem 0; }
.solution-icon-lg { width: 72px; height: 72px; border-radius: var(--r-md); display: grid; place-items: center; font-size: 1.9rem; color: #fff; box-shadow: var(--shadow-md); margin-bottom: 1.3rem; }

.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; padding: .45rem 0; color: var(--slate-600); }
.check-list li i { color: var(--accent); margin-top: .3rem; flex: none; }

/* ==========================================================================
   15. FAQ / ACCORDION
   ========================================================================== */
.faq-item { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-md); margin-bottom: 1rem; overflow: hidden; transition: box-shadow var(--t), border-color var(--t); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.3); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; text-align: left; background: none; border: none; padding: 1.3rem 1.5rem; font-weight: 600; font-size: 1.05rem; color: var(--dark); cursor: pointer; font-family: var(--font); }
.faq-q .faq-icon { flex: none; width: 30px; height: 30px; border-radius: 8px; background: rgba(37,99,235,.1); color: var(--primary); display: grid; place-items: center; transition: transform var(--t); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--grad-primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); }
.faq-a-inner { padding: 0 1.5rem 1.4rem; color: var(--slate-600); }

/* ==========================================================================
   16. CTA BAND
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 4rem; background: var(--grad-dark); color: #fff; box-shadow: var(--shadow-xl); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 90% 0%, rgba(6,182,212,.35), transparent 60%), radial-gradient(500px 300px at 0% 100%, rgba(37,99,235,.4), transparent 55%); z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cbd5e1; }

/* ==========================================================================
   17. FORMS / CONTACT
   ========================================================================== */
.form-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.form-label { font-weight: 600; color: var(--dark); font-size: .92rem; margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--slate-200); border-radius: var(--r-sm); padding: .8rem 1rem;
  font-family: var(--font); font-size: .98rem; transition: border-color var(--t-fast), box-shadow var(--t-fast);
  background: var(--slate-100);
}
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.12); background: #fff; }
.form-control::placeholder { color: var(--slate-400); }

.contact-info-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; border-radius: var(--r-md); background: #fff; border: 1px solid var(--slate-200); box-shadow: var(--shadow-xs); transition: transform var(--t), box-shadow var(--t); }
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card .ci-ico { flex: none; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; color: #fff; font-size: 1.1rem; }
.contact-info-card h4 { font-size: 1.02rem; margin-bottom: .2rem; }
.contact-info-card p, .contact-info-card a { margin: 0; font-size: .95rem; color: var(--slate-500); }

.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--slate-200); background: linear-gradient(135deg,#eef2ff,#ecfeff); min-height: 320px; display: grid; place-items: center; color: var(--slate-400); position: relative; }
.map-embed i { font-size: 2.6rem; }

.form-note { font-size: .85rem; color: var(--slate-500); }
.form-success { display: none; padding: 1rem 1.2rem; border-radius: var(--r-sm); background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #15803d; font-weight: 500; margin-top: 1rem; }
.form-success.show { display: block; animation: fadeUp .4s ease; }

/* business hours list */
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--slate-100); font-size: .95rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--slate-600); }
.hours-list li span:last-child { font-weight: 600; color: var(--dark); }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.footer { background: var(--grad-dark); color: #cbd5e1; padding: 5rem 0 2rem; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(37,99,235,.6), rgba(6,182,212,.6), transparent); }
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; font-weight: 600; }
.footer .navbar-brand { color: #fff; }
.footer a { color: #94a3b8; display: inline-block; padding: .3rem 0; font-size: .94rem; }
.footer a:hover { color: #fff; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cbd5e1; padding: 0; transition: all var(--t-fast); }
.footer-social a:hover { background: var(--grad-primary); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 3rem; padding-top: 1.6rem; font-size: .88rem; color: #64748b; }
.footer-newsletter .form-control { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.footer-newsletter .form-control::placeholder { color: #64748b; }
.footer-newsletter .form-control:focus { background: rgba(255,255,255,.1); }

/* ==========================================================================
   19. ANIMATIONS & EFFECTS
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hover-lift { transition: transform var(--t), box-shadow var(--t); }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* gradient ring decorative */
.ring-deco { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(37,99,235,.25); animation: spinSlow 40s linear infinite; z-index: 0; }

/* number counter */
.counter { display: inline-block; }

/* page hero (interior pages) */
.page-hero { padding: 150px 0 70px; background: var(--grad-hero), var(--bg); position: relative; overflow: hidden; text-align: center; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { display: inline-flex; gap: .5rem; align-items: center; font-size: .88rem; color: var(--slate-500); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--slate-500); } .breadcrumbs a:hover { color: var(--primary); }

/* back to top */
.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%; background: var(--grad-primary); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-primary); opacity: 0; visibility: hidden; transform: translateY(14px); transition: all var(--t); z-index: 90; border: none; cursor: pointer; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); color: #fff; }

/* ==========================================================================
   20. RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
  :root { --section-y: 80px; }
  .navbar { background: rgba(255,255,255,.95); backdrop-filter: blur(14px); }
  .navbar-collapse { background: #fff; border-radius: var(--r-md); padding: 1rem; margin-top: .8rem; box-shadow: var(--shadow-lg); border: 1px solid var(--slate-200); }
  .navbar .nav-link { padding: .6rem .4rem !important; }
  .navbar .nav-item .btn { width: 100%; justify-content: center; margin-top: .5rem; }
  .hero { padding: 130px 0 60px; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-cta, .hero-badges, .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 3rem; }
  .float-1, .float-2 { position: static; margin: 1rem auto; display: inline-block; animation: none; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .cta-band { padding: 2.5rem 1.5rem; }
  .solution-tabs-nav { flex-direction: row; overflow-x: auto; padding-bottom: .5rem; }
  .solution-tab { min-width: 220px; }
}

@media (max-width: 767.98px) {
  body { font-size: .98rem; }
  .section { padding: 60px 0; }
  .form-card { padding: 1.6rem; }
  .cta-band { padding: 2.2rem 1.2rem; }
  .display-toggle { flex-direction: column; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-avatars { justify-content: center; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
