/*
 * SKPHost — Premium Redesign Custom CSS
 * Layered on top of existing style.css
 * Preserves 95-100% visual identity while improving UI/UX, performance, accessibility
 * Author: World-Class Redesign Team
 */

/* =============================================
   CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================= */
:root {
  --primary:       #1e58e7;
  --primary-dark:  #1644c4;
  --primary-light: #3d77f5;
  --accent:        #7c3aed;
  --accent-light:  #a78bfa;
  --cyan:          #00d2ff;
  --success:       #10b981;
  --warning:       #f59e0b;
  --danger:        #ef4444;

  --text-dark:     #0f172a;
  --text-body:     #334155;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;

  --bg-white:      #ffffff;
  --bg-light:      #f8fafd;
  --bg-subtle:     #f1f5f9;
  --border:        rgba(15,23,42,0.08);
  --border-mid:    rgba(15,23,42,0.12);

  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  --shadow-sm:     0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow:        0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.12);
  --shadow-xl:     0 20px 60px rgba(0,0,0,.16);
  --shadow-blue:   0 8px 30px rgba(30,88,231,0.25);
  --shadow-blue-lg:0 16px 48px rgba(30,88,231,0.35);

  --gradient-main: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-cyan: linear-gradient(90deg, var(--cyan), var(--primary));
  --gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);

  --transition:    all 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.45s cubic-bezier(0.4,0,0.2,1);

  --font-display:  "DM Sans", system-ui, sans-serif;
  --font-body:     "DM Sans", system-ui, sans-serif;
}

/* =============================================
   BASE RESETS & GLOBAL IMPROVEMENTS
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* =============================================
   SKIP LINK (ACCESSIBILITY)
   ============================================= */
.skip-link {
  position: absolute;
  top: -60px;
  left: 8px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* =============================================
   TOPBAR — REFINED
   ============================================= */
.topbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.topbar ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  transition: var(--transition);
}
.topbar ul li a:hover { color: var(--primary); }
.topbar ul li i { color: var(--primary); font-size: 14px; }

/* =============================================
   HEADER — IMPROVED STICKY + ACCESSIBILITY
   ============================================= */
.main-header {
  background: var(--bg-white);
  height: 72px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-slow);
}
.main-header.scrolled {
  box-shadow: var(--shadow);
  height: 64px;
}
.main-header.header-sticky {
  position: fixed;
  width: 100%;
  box-shadow: var(--shadow);
  animation: headerSlideDown 0.3s ease forwards;
}
@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.nav-brand img { max-height: 44px; }

/* Nav links */
.main-header .nabbar-nav .mainmenu > li > a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 4px 0;
  position: relative;
}
.main-header .nabbar-nav .mainmenu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.main-header .nabbar-nav .mainmenu > li:hover > a::after,
.main-header .nabbar-nav .mainmenu > li > a.active::after { width: 100%; }

/* Mega menu improvements */
.main-header .nabbar-nav .mainmenu li.has-droupdown .submenu {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-top: 3px solid var(--primary);
}
.main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a {
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover {
  background: linear-gradient(135deg, rgba(30,88,231,0.06), rgba(124,58,237,0.04));
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

/* CTA buttons in header */
.nav-right-side-bar .btns.one {
  background: var(--gradient-main);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 10px 22px;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
}
.nav-right-side-bar .btns.one:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
}
.nav-right-side-bar .btns.three {
  border: 1.5px solid var(--border-mid);
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  border-radius: var(--radius);
  padding: 10px 22px;
}
.nav-right-side-bar .btns.three:hover {
  background: var(--bg-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

/* =============================================
   HERO / MAIN BANNER — POLISHED
   ============================================= */
.main-banner {
  background: var(--bg-white);
  padding: 52px 0;
  border-top: none;
  border-bottom: 1px solid var(--border);
}
.main-banner .inner-content h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.main-banner .inner-content h3 {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}
.text-gradient {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-heading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg,rgba(30,88,231,0.1),rgba(124,58,237,0.08));
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(30,88,231,0.15);
}

/* Banner feature list */
.banner-list.icon { display: flex; flex-wrap: wrap; gap: 8px 0; }
.banner-list.icon li {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
  padding: 4px 0;
}
.banner-list.icon li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  background: linear-gradient(135deg,rgba(30,88,231,0.1),rgba(0,210,255,0.08));
  border-radius: 8px;
  color: var(--primary);
  font-size: 17px;
  transition: var(--transition);
}
.banner-list.icon li:hover i {
  background: var(--gradient-main);
  color: #fff;
  transform: scale(1.1);
}
@media (max-width: 575px) {
  .banner-list.icon li { width: 100%; }
}

/* Price display in hero */
.main-banner .inner-content h4 {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 18px;
}
.main-banner .inner-content h4 strong {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.main-banner .inner-content h4 sup { font-size: 22px; font-weight: 700; vertical-align: middle; }
.main-banner .inner-content h4 small { font-size: 14px; color: var(--text-muted); }

/* Hero image */
.hero-img {
  border-radius: var(--radius-xl);
  animation: heroFloat 5s ease-in-out infinite;
  box-shadow: var(--shadow-xl);
  filter: drop-shadow(0 20px 40px rgba(30,88,231,0.2));
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* =============================================
   CTA BUTTONS — GLOBAL IMPROVEMENT
   ============================================= */
.btn-glow {
  background: var(--gradient-cyan);
  border: none;
  color: #fff !important;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 15px;
  box-shadow: var(--shadow-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,0.2),transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-glow:hover::before { transform: translateX(100%); }
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue-lg);
  color: #fff !important;
}
.btn-glow:active { transform: translateY(0); }

.btn-outline-glow {
  background: transparent;
  border: 2px solid var(--border-mid);
  color: var(--text-dark) !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-glow:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: rgba(30,88,231,0.05);
}

/* =============================================
   DOT SLIDER TABS — CLEANER
   ============================================= */
.dot-slider {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dot-slider .container ul li {
  padding: 20px 14px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.dot-slider .container ul li::before { background: var(--gradient-main); opacity: 0; }
.dot-slider .container ul li.active::before { opacity: 1; }
.dot-slider .container ul li.active { color: #fff; }
.dot-slider .container ul li > * { font-size: 14.5px; font-weight: 600; }

/* =============================================
   DOMAIN SEARCH SECTION
   ============================================= */
.homepage-domain-search {
  background: var(--bg-white);
}
.section-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.homepage-domain-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 20px !important;
  border: 1.5px solid var(--border-mid);
  display: flex !important;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.homepage-domain-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,88,231,0.1), var(--shadow);
}
.homepage-domain-form input[type="text"] {
  border: none !important;
  background: transparent !important;
  height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 15px;
  color: var(--text-dark) !important;
  flex: 1;
  outline: none !important;
}
.homepage-domain-form input[type="text"]::placeholder { color: var(--text-light); }
.homepage-domain-form .submit {
  background: var(--gradient-main);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  height: 48px !important;
  max-width: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14.5px;
}
.homepage-domain-form .submit:hover { opacity: 0.9; }

.domain-lists {
  width: 100% !important;
  gap: 12px;
  margin-top: 8px !important;
}
.domain-lists li {
  border: 1.5px solid var(--border);
  border-radius: var(--radius) !important;
  background: var(--bg-white) !important;
  transition: var(--transition);
  padding: 14px 20px !important;
}
.domain-lists li:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

/* =============================================
   PRICING CARDS — MAJOR IMPROVEMENT
   ============================================= */
.pricing-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
}
.card-top {
  display: block;
  height: 5px;
  width: 100%;
  border-radius: 0;
}
.pricing-card .card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 14px 0 4px;
}
.price-main .currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 6px;
}
.price-main .amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-main .term {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.powered-by small { color: var(--text-muted); font-size: 11px; }
.powered-by img { height: 28px; width: auto; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i {
  color: var(--primary);
  font-size: 16px;
  min-width: 18px;
}
.feature-list li b { font-weight: 600; }

.btn-start {
  background: var(--gradient-main);
  border: none;
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 12px;
  font-size: 14.5px;
  transition: var(--transition);
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  text-align: center;
  display: block;
}
.btn-start:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
  color: #fff !important;
}
.btn-outline-primary.btn-start {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  box-shadow: none;
}
.btn-outline-primary.btn-start:hover {
  background: var(--gradient-main);
  color: #fff !important;
  box-shadow: var(--shadow-blue);
}

/* Popular badge for pricing cards */
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.pricing-card.popular .card-body { position: relative; }

/* =============================================
   FEATURES SECTION — CLEAN CARDS
   ============================================= */
.feature-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px !important;
  transition: var(--transition-slow);
  height: 100%;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,rgba(30,88,231,0.1),rgba(0,210,255,0.08));
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.icon-wrap i {
  font-size: 26px;
  color: var(--primary);
}
.feature-card h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.feature-card p.text-muted {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted) !important;
}

/* Feature cards on hosting pages (col-md-4) */
.feature-card.shadow-sm { border: 1.5px solid var(--border); }
.feature-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 12px 0 8px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   WHY SKPHost — SIDE-BY-SIDE
   ============================================= */
.plan-description h4 {
  font-size: clamp(18px,3vw,24px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.plan-description p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* =============================================
   TESTIMONIALS — IMPROVED CARDS
   ============================================= */
.testimonial-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px !important;
  transition: var(--transition-slow);
  position: relative;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-card:hover {
  border-color: rgba(30,88,231,0.2);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.testimonial-card i.ri-double-quotes-l {
  color: var(--primary);
  opacity: 0.3;
}
.testimonial-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-body);
}
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.testimonial-card h6 {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

/* =============================================
   CTA DARK SECTION — REFINED
   ============================================= */
#cta-dark {
  background: var(--gradient-dark) !important;
  padding: 80px 0;
}
#cta-dark .wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
#cta-dark .card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
#cta-dark .title {
  font-size: clamp(24px,4vw,36px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
#cta-dark .subtitle {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.75);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 560px;
}
#cta-dark .accent {
  width: 60px; height: 4px;
  background: var(--gradient-cyan);
  border-radius: 999px;
  margin: 18px 0 0;
  box-shadow: 0 0 20px rgba(0,210,255,0.5);
}
#cta-dark .cta {
  background: var(--gradient-main);
  color: #fff !important;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 30px rgba(30,88,231,0.5);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
#cta-dark .cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,0.2),transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
#cta-dark .cta:hover::before { transform: translateX(100%); }
#cta-dark .cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(30,88,231,0.7);
}
@media (max-width: 768px) {
  #cta-dark .card { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  #cta-dark .cta { width: 100%; justify-content: center; }
}

/* =============================================
   FAQ ACCORDION — POLISHED
   ============================================= */
#faqs { background: var(--bg-light); }
#faqs h2 { color: var(--text-dark); font-weight: 800; letter-spacing: -0.02em; }
.accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  background: var(--bg-white) !important;
  transition: var(--transition);
}
.accordion-item:hover { border-color: var(--primary) !important; }
.accordion-button {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-white) !important;
  box-shadow: none !important;
  padding: 18px 20px;
}
.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: linear-gradient(135deg,rgba(30,88,231,0.04),rgba(0,210,255,0.03)) !important;
}
.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231e58e7' stroke-width='2' stroke-linecap='round' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.accordion-body {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  padding: 0 20px 18px;
}
.accordion-button i { color: var(--primary); font-size: 16px; }

/* =============================================
   PROFESSIONAL FEATURES SECTION
   ============================================= */
.pro-features-section {
  background: var(--bg-white);
}
.pro-features-section h6.text-uppercase {
  color: var(--primary) !important;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 12px;
}
.pro-features-section h2 {
  font-size: clamp(22px,3.5vw,30px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

/* =============================================
   STATS / TRUST BAR
   ============================================= */
.stats-bar {
  background: var(--gradient-main);
  padding: 32px 0;
}
.stats-bar .stat-item {
  text-align: center;
  color: #fff;
}
.stats-bar .stat-item .stat-num {
  font-size: clamp(28px,4vw,40px);
  font-weight: 900;
  display: block;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stats-bar .stat-item .stat-label {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
  font-weight: 500;
}
.stats-bar .divider-v {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  margin: 0 auto;
}

/* =============================================
   SECTION HEADERS — GLOBAL
   ============================================= */
.section-header.center { text-align: center; }
.section-header h2 {
  font-size: clamp(26px,4vw,38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
}
.section-header.center p { margin: 0 auto; }

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg,rgba(30,88,231,0.1),rgba(124,58,237,0.08));
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(30,88,231,0.15);
}

/* =============================================
   MOBILE STICKY CTA BAR
   ============================================= */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.1);
  gap: 10px;
}
@media (max-width: 767px) {
  .mobile-sticky-cta { display: flex; }
}
.mobile-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.mobile-sticky-cta .mob-cta-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.mobile-sticky-cta .mob-cta-secondary {
  background: var(--bg-subtle);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

/* =============================================
   FOOTER — RESPONSIVE FIXES
   ============================================= */
.footer-light { background: var(--bg-white); }
.footer-grid { gap: 28px; }
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
  .f-news { grid-column: span 2; }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand { grid-column: span 2; }
  .f-news { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .f-news { grid-column: span 1; }
}
.col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.f-col a {
  font-size: 13.5px;
  color: var(--text-muted);
}
.f-col a:hover { color: var(--primary); transform: translateX(3px); }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  background: var(--gradient-main);
  border-radius: 50%;
  width: 44px; height: 44px;
  box-shadow: var(--shadow-blue);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue-lg);
}
.scroll-top svg { fill: #fff; }

/* =============================================
   UTILITY: SECTION GAP
   ============================================= */
.section-gap { padding: 60px 0; }
.section-gap.pt-20 { padding-top: 20px; }

/* =============================================
   SCHEMA / HIDDEN SITELABEL — SEO
   ============================================= */
.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-wrap {
  background: var(--bg-subtle);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-item a {
  color: var(--primary);
  font-size: 13px;
}
.breadcrumb-item.active { color: var(--text-muted); font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); }

/* =============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================= */
button, a, input, select, textarea {
  outline-offset: 2px;
}
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* High contrast text for small text */
.text-muted { color: var(--text-muted) !important; }

/* Ensure minimum touch targets */
.btns, .btn-glow, .btn-start, button {
  min-height: 44px;
}
.topbar ul li a {
  min-height: 36px;
}

/* =============================================
   PERFORMANCE: PREFERS-REDUCED-MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img { animation: none; }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .topbar, .main-header, .mobile-sticky-cta,
  .scroll-top, footer, #cta-dark { display: none !important; }
  body { background: #fff; color: #000; }
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 991px) {
  .section-gap { padding: 44px 0; }
  .main-banner { padding: 36px 0; }
}
@media (max-width: 575px) {
  .section-gap { padding: 32px 0; }
  .section-header h2 { font-size: 24px; }
  .price-main .amount { font-size: 38px; }
  .main-banner .inner-content h1 { font-size: 28px; }
  .inline-btns { flex-direction: column; align-items: stretch; }
  .inline-btns .btn-glow,
  .inline-btns .btn-outline-glow { width: 100%; justify-content: center; }
}

/* =============================================
   PRICING SECTION SPECIFIC
   ============================================= */
#pricing { background: var(--bg-light); }
#pricing .section-header h2 {
  font-size: clamp(24px,4vw,36px);
}

/* =============================================
   TRUST BADGES ROW (HOMEPAGE)
   ============================================= */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-row .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-body);
}
.trust-row .trust-item i { color: var(--success); font-size: 18px; }

/* =============================================
   LIGHT / DARK SECTION ALTERNATION
   ============================================= */
.section-white { background: var(--bg-white); }
.section-light { background: var(--bg-light); }
.bg-light { background: var(--bg-light) !important; }

/* =============================================
   ANNOUNCEMENT BAR (optional)
   ============================================= */
.announce-bar {
  background: var(--gradient-main);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}
.announce-bar a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.announce-bar a:hover { color: #fff; }
