/* ==========================================================================
   DSC.in.net — Main Stylesheet (complete, ~2000 lines)
   Replaces styles.css + 2026-trends.css
   Design system: Syne + Nunito, 8px grid, --accent #00C4C4
   Dark mode: html.dark-theme prefix throughout
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --primary:     #0D1B3E;
  --primary-mid: #1A2F5A;
  --accent:      #00C4C4;
  --accent-dark: #009E9E;
  --green:       #2ECC71;
  --white:       #FFFFFF;
  --light:       #F2F7FF;
  --gray:        #64748B;
  --text:        #334155;
  --border:      #E2EAF4;
  --shadow-sm:   0 2px 8px rgba(13,27,62,.07);
  --shadow-md:   0 4px 20px rgba(13,27,62,.10);
  --shadow-lg:   0 8px 40px rgba(13,27,62,.14);
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --header-h:    72px;
  --top-bar-h:   36px;
  --transition:  0.25s ease;
  --transition-slow: 0.4s ease;
  --font-heading: 'Syne', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, sans-serif;
}

html.dark-theme {
  --white:     #0F1729;
  --light:     #141E35;
  --light-mid: #1B2848;
  --text:      #CBD5E1;
  --border:    #263352;
  --gray:      #94A3B8;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  scroll-padding-top: calc(var(--header-h) + var(--top-bar-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html.dark-theme body { background: #0F1729; color: #CBD5E1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { text-decoration: underline; }
button { font-family: var(--font-body); }
ul, ol { list-style: none; }

/* --------------------------------------------------------------------------
   3. Skip Link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute; top: -100%; left: 8px;
  background: var(--accent); color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700; z-index: 10000; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
html.dark-theme h1,
html.dark-theme h2,
html.dark-theme h3,
html.dark-theme h4 { color: #E2EAF4; }

h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; color: var(--gray); line-height: 1.7; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
html.dark-theme .text-primary { color: #E2EAF4; }
.text-muted { color: var(--gray); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   5. Layout Utilities
   -------------------------------------------------------------------------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.section-lg { padding: 7rem 1.5rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
html.dark-theme .section-heading h2 { color: #E2EAF4; }
.section-heading p { color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0,196,196,.1);
  color: var(--accent-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
html.dark-theme .tag { background: rgba(0,196,196,.15); color: var(--accent); }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.15s, box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,196,196,.35);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-dark), #007A7A); box-shadow: 0 6px 20px rgba(0,196,196,.45); color: #fff; }
.btn-secondary { background: var(--primary); color: #fff; }
.btn-secondary:hover { background: var(--primary-mid); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
html.dark-theme .btn-outline { color: #E2EAF4; border-color: #E2EAF4; }
.btn-outline:hover { background: var(--primary); color: #fff; }
html.dark-theme .btn-outline:hover { background: #E2EAF4; color: #0D1B3E; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--light); color: var(--primary); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #27ae60; color: #fff; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   7. Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,.82);
  font-size: 0.8rem;
  padding: 0 1.5rem;
  height: var(--top-bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 901;
}
html.dark-theme .top-bar { background: rgba(3,6,18,0.98) !important; }
.top-bar a { color: rgba(255,255,255,.82); }
.top-bar a:hover { color: var(--accent); text-decoration: none; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: nowrap; }
.top-bar-item { display: flex; align-items: center; gap: 0.35rem; white-space: nowrap; }
.top-bar-item i { font-size: 0.75rem; color: var(--accent); }
.top-bar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* --------------------------------------------------------------------------
   8. Site Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: var(--header-h);
}
html.dark-theme .site-header { background: rgba(8,15,35,0.96) !important; border-bottom-color: #263352 !important; }
.site-header.scrolled { box-shadow: 0 4px 24px rgba(13,27,62,.12); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--primary); }
html.dark-theme .logo-name { color: #E2EAF4; }
.logo-tagline { font-size: 0.65rem; color: var(--gray); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 0.15rem; flex: 1; justify-content: center; }
.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  position: relative;
}
html.dark-theme .nav-link { color: #CBD5E1; }
.nav-link:hover { background: var(--light); color: var(--accent); text-decoration: none; }
html.dark-theme .nav-link:hover { background: #141E35; }
.nav-link.active { color: var(--accent); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.7rem; right: 0.7rem;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(4px);
  z-index: 950;
}
html.dark-theme .nav-dropdown-menu { background: #141E35; border-color: #263352; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
html.dark-theme .nav-dropdown-menu a { color: #CBD5E1; }
.nav-dropdown-menu a:hover { background: var(--light); color: var(--accent); text-decoration: none; }
html.dark-theme .nav-dropdown-menu a:hover { background: #1B2848; }
.nav-dropdown-menu a i { width: 18px; color: var(--accent); font-size: 0.8rem; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.theme-toggle {
  background: none; border: none;
  width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.theme-toggle:hover { background: var(--light); color: var(--accent); }
html.dark-theme .theme-toggle:hover { background: #1B2848; }
html:not(.dark-theme) .theme-toggle .fa-sun { display: none !important; }
html.dark-theme .theme-toggle .fa-sun  { display: inline-block !important; color: #F59E0B !important; }
html.dark-theme .theme-toggle .fa-moon { display: none !important; }

.search-toggle {
  background: none; border: none;
  width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.search-toggle:hover { background: var(--light); color: var(--accent); }
html.dark-theme .search-toggle:hover { background: #1B2848; }

.mobile-menu-btn {
  display: none; background: none; border: none;
  width: 38px; height: 38px;
  border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--text); font-size: 1.2rem;
}
html.dark-theme .mobile-menu-btn { color: #CBD5E1; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  z-index: 850;
  background: var(--white);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
html.dark-theme .mobile-nav { background: #0F1729; }
.mobile-nav.open { display: flex; transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.mobile-nav-close { background: none; border: none; font-size: 1.5rem; color: var(--text); cursor: pointer; }
html.dark-theme .mobile-nav-close { color: #CBD5E1; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: 1rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
html.dark-theme .mobile-nav-link { color: #CBD5E1; }
.mobile-nav-link:hover { background: var(--light); color: var(--accent); text-decoration: none; }
html.dark-theme .mobile-nav-link:hover { background: #141E35; }
.mobile-nav-link i { width: 22px; color: var(--accent); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 0.75rem 0; }

/* Cookie Bar */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: var(--primary);
  color: rgba(255,255,255,.88);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.88rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
html.dark-theme .cookie-bar { background: #060D1A; }
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { margin: 0; }
.cookie-bar a { color: var(--accent); }
.cookie-bar-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   9. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, #0D3B6E 100%);
  color: #fff;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%2300C4C4' opacity='.18'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,196,196,.15); border: 1px solid rgba(0,196,196,.35);
  color: var(--accent); padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800;
  line-height: 1.18; margin-bottom: 1.25rem; color: #fff;
}
.hero h1 span { color: var(--accent); }
.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem; max-width: 680px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap; margin-top: 0.5rem;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,.75);
}
.hero-trust-item i { color: var(--green); font-size: 0.9rem; }

/* Hero CTA Bar */
.hero-cta-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-top: 1px solid rgba(255,255,255,.08);
}
html.dark-theme .hero-cta-bar { background: linear-gradient(135deg, #0D1B3E, #1A2F5A); }
.hero-cta-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; padding-top: 2rem; padding-bottom: 2rem;
}
.hero-cta-bar-text { color: rgba(255,255,255,.88); }
.hero-cta-bar-text h3 { font-size: 1.15rem; color: #fff; margin-bottom: 0.25rem; }
.hero-cta-bar-text p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,.7); }
.hero-cta-bar-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
html.dark-theme .card { background: #141E35; border-color: #263352; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
html.dark-theme .card:hover { border-color: var(--accent); }

.card-icon {
  width: 56px; height: 56px;
  background: rgba(0,196,196,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent);
  margin-bottom: 1.25rem;
}
html.dark-theme .card-icon { background: rgba(0,196,196,.15); }
.card h3 { font-size: 1.15rem; margin-bottom: 0.625rem; }
.card p { color: var(--gray); font-size: 0.93rem; margin: 0; }

/* --------------------------------------------------------------------------
   11. Bento Grid
   -------------------------------------------------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}
.bento-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
html.dark-theme .bento-item { background: #141E35; border-color: #263352; }
.bento-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bento-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.bento-item:hover::before { opacity: 1; }

/* Large bento spanning 2 columns */
.bento-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary), #0D3B6E) !important;
  color: #fff;
  border-color: transparent;
}
html.dark-theme .bento-large { background: linear-gradient(135deg, #1A2F5A, #060D1A) !important; border-color: #263352 !important; }
.bento-large h3, .bento-large h2 { color: #fff !important; }
.bento-large p { color: rgba(255,255,255,.8); }
.bento-large .card-icon { background: rgba(255,255,255,.15); color: #fff; }
.bento-large:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(13,27,62,.3); }

.bento-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-color: transparent;
}
.bento-accent h3 { color: #fff !important; }
.bento-accent p { color: rgba(255,255,255,.85); }
.bento-accent .card-icon { background: rgba(255,255,255,.2); color: #fff; }

.bento-light {
  background: var(--light);
  border-color: var(--border);
}
html.dark-theme .bento-light { background: #1B2848; border-color: #263352; }

/* --------------------------------------------------------------------------
   12. Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
  background: var(--primary);
  padding: 5rem 1.5rem;
}
html.dark-theme .stats-section { background: #060D1A; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { color: rgba(255,255,255,.75); font-size: 0.95rem; font-weight: 500; }

/* --------------------------------------------------------------------------
   13. Steps / How to Apply
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800;
  color: #fff; margin: 0 auto 1.25rem; box-shadow: 0 4px 14px rgba(0,196,196,.35);
}
.step-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
html.dark-theme .testimonial-card { background: #141E35; border-color: #263352; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #F59E0B; margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text { font-size: 0.93rem; color: var(--text); line-height: 1.65; margin-bottom: 1.25rem; font-style: italic; }
html.dark-theme .testimonial-text { color: #CBD5E1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray); }

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
html.dark-theme .faq-item { background: #141E35; border-color: #263352; }
.faq-item.open { border-color: var(--accent); box-shadow: 0 2px 12px rgba(0,196,196,.1); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; cursor: pointer;
  font-weight: 700; font-size: 1rem; color: var(--primary);
  background: none; border: none; width: 100%; text-align: left;
  transition: color var(--transition);
}
html.dark-theme .faq-question { color: #E2EAF4; }
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.8rem; color: var(--accent);
  transition: transform var(--transition), background var(--transition);
}
html.dark-theme .faq-icon { background: #1B2848; }
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--accent); color: #fff; }
.faq-answer { padding: 0 1.5rem 1.25rem; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.93rem; color: var(--gray); line-height: 1.7; margin: 0; }
html.dark-theme .faq-answer p { color: #94A3B8; }
.faq-answer ul { padding-left: 1.25rem; list-style: disc; }
.faq-answer ul li { font-size: 0.93rem; color: var(--gray); margin-bottom: 0.35rem; }

/* --------------------------------------------------------------------------
   16. CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
html.dark-theme .cta-banner { background: linear-gradient(135deg, #0D1B3E, #1A2F5A); }
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='%2300C4C4' opacity='.2'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   17. CA Logos Strip
   -------------------------------------------------------------------------- */
.ca-logos {
  background: var(--light);
  padding: 3rem 1.5rem;
  overflow: hidden;
}
html.dark-theme .ca-logos { background: #141E35; }
.ca-logos-label { text-align: center; font-size: 0.82rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.ca-logos-track { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.ca-logo-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.9rem; color: var(--gray);
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}
html.dark-theme .ca-logo-item { background: #0F1729; border-color: #263352; }
.ca-logo-item:hover { border-color: var(--accent); color: var(--accent); }
.ca-logo-item i { color: var(--accent); font-size: 1rem; }

/* --------------------------------------------------------------------------
   18. Documents Required
   -------------------------------------------------------------------------- */
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.docs-column {}
.docs-column h3 { font-size: 1.1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.docs-column h3 i { color: var(--accent); font-size: 1rem; }
.docs-list { display: flex; flex-direction: column; gap: 0.5rem; }
.docs-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500;
  transition: border-color var(--transition);
}
html.dark-theme .docs-item { background: #141E35; border-color: #263352; }
.docs-item:hover { border-color: var(--accent); }
.docs-item i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   19. Floating CTA / WhatsApp Button
   -------------------------------------------------------------------------- */
.floating-cta {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 9000;
  display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end;
}
.floating-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; border: none; cursor: pointer;
}
.floating-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,.3); text-decoration: none; }
.floating-btn-wa { background: #25D366; color: #fff; }
.floating-btn-phone { background: var(--primary); color: #fff; }
html.dark-theme .floating-btn-phone { background: #1A2F5A; }
.floating-btn-top {
  background: var(--white); color: var(--primary);
  border: 1px solid var(--border);
  font-size: 1rem;
  opacity: 0; visibility: hidden;
  transition: transform 0.2s, box-shadow 0.2s, opacity var(--transition), visibility var(--transition);
}
html.dark-theme .floating-btn-top { background: #1A2F5A; color: #E2EAF4; border-color: #263352; }
.floating-btn-top.show { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   20. Search Modal
   -------------------------------------------------------------------------- */
.search-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(13,27,62,.65);
  backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 8vh;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.search-modal.open { opacity: 1; visibility: visible; }
.search-modal-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 620px; margin: 0 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,27,62,.25);
  transform: translateY(-20px);
  transition: transform var(--transition);
}
html.dark-theme .search-modal-inner { background: #141E35; }
.search-modal.open .search-modal-inner { transform: translateY(0); }
.search-input-wrap {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
html.dark-theme .search-input-wrap { border-bottom-color: #263352; }
.search-input-wrap i { color: var(--gray); flex-shrink: 0; font-size: 1.1rem; }
#search-input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
}
html.dark-theme #search-input { color: #CBD5E1; }
#search-input::placeholder { color: var(--gray); }
.search-close { background: none; border: none; cursor: pointer; color: var(--gray); font-size: 0.8rem; padding: 0.25rem; flex-shrink: 0; }
.search-shortcut {
  font-size: 0.72rem; color: var(--gray); background: var(--light);
  border: 1px solid var(--border); border-radius: 4px; padding: 1px 5px; flex-shrink: 0;
}
html.dark-theme .search-shortcut { background: #1B2848; border-color: #263352; }
.search-results {
  max-height: 400px; overflow-y: auto;
  padding: 0.75rem;
}
.search-result-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.875rem; border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: background var(--transition);
}
.search-result-item:hover, .search-result-item.selected { background: var(--light); text-decoration: none; }
html.dark-theme .search-result-item:hover,
html.dark-theme .search-result-item.selected { background: #1B2848; }
.search-result-icon { width: 36px; height: 36px; border-radius: var(--radius); background: rgba(0,196,196,.1); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; font-size: 0.9rem; }
.search-result-title { font-weight: 700; font-size: 0.92rem; color: var(--text); margin-bottom: 0.2rem; }
html.dark-theme .search-result-title { color: #CBD5E1; }
.search-result-cat { font-size: 0.76rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.04em; }
.search-empty { padding: 2.5rem 1rem; text-align: center; color: var(--gray); font-size: 0.93rem; }
.search-footer { padding: 0.75rem 1.25rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--gray); display: flex; gap: 1rem; }
html.dark-theme .search-footer { border-top-color: #263352; }
.search-footer kbd { background: var(--light); border: 1px solid var(--border); border-radius: 3px; padding: 1px 5px; font-family: inherit; font-size: 0.75rem; }
html.dark-theme .search-footer kbd { background: #1B2848; border-color: #263352; }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.78);
  padding: 4rem 1.5rem 0;
}
html.dark-theme .footer { background: #060D1A; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { max-width: 140px; filter: brightness(0) invert(1) opacity(.9); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; text-decoration: none; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; font-size: 0.85rem; width: 16px; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,.75); }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem; color: rgba(255,255,255,.55);
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.55); }
.footer-bottom-links a:hover { color: var(--accent); text-decoration: none; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(0,196,196,.12); border: 1px solid rgba(0,196,196,.25);
  color: var(--accent); padding: 0.2rem 0.6rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700;
}

/* --------------------------------------------------------------------------
   22. Blog Cards
   -------------------------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
html.dark-theme .blog-card { background: #141E35; border-color: #263352; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--light); position: relative; }
html.dark-theme .blog-card-img { background: #1B2848; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.78rem; color: var(--gray); margin-bottom: 0.75rem; flex-wrap: wrap; }
.blog-card-meta i { font-size: 0.7rem; }
.blog-card-cat { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.75rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.625rem; line-height: 1.4; }
.blog-card h3 a { color: var(--primary); }
html.dark-theme .blog-card h3 a { color: #E2EAF4; }
.blog-card h3 a:hover { color: var(--accent); text-decoration: none; }
.blog-card p { font-size: 0.88rem; color: var(--gray); margin: 0; flex: 1; line-height: 1.6; }
.blog-card-footer { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
html.dark-theme .blog-card-footer { border-top-color: #263352; }
.read-more { font-size: 0.82rem; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 0.4rem; }
.read-more:hover { text-decoration: none; }
.read-more i { transition: transform 0.2s; }
.blog-card:hover .read-more i { transform: translateX(3px); }

/* Blog Filters */
.blog-filters {
  display: flex; align-items: center; gap: 0.625rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  color: var(--text);
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-family: var(--font-body);
}
html.dark-theme .filter-btn { background: #141E35; border-color: #263352; color: #CBD5E1; }
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Blog Search Bar */
.blog-search-bar {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.55rem 1.25rem;
  max-width: 380px;
  margin-bottom: 1.5rem;
}
html.dark-theme .blog-search-bar { background: #141E35; border-color: #263352; }
.blog-search-bar i { color: var(--gray); flex-shrink: 0; }
.blog-search-bar input {
  border: none; outline: none; background: none;
  font-family: var(--font-body); font-size: 0.88rem; color: var(--text); flex: 1;
}
html.dark-theme .blog-search-bar input { color: #CBD5E1; }
.blog-search-bar input::placeholder { color: var(--gray); }

/* --------------------------------------------------------------------------
   23. Article / Blog Post Page
   -------------------------------------------------------------------------- */
.blog-article { max-width: 780px; margin: 0 auto; }
.article-header { margin-bottom: 2.5rem; }
.article-cat-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(0,196,196,.1); border: 1px solid rgba(0,196,196,.25);
  color: var(--accent-dark); border-radius: 100px;
  padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem;
}
html.dark-theme .article-cat-badge { color: var(--accent); background: rgba(0,196,196,.15); }
.article-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2; margin-bottom: 1rem;
  color: var(--primary);
}
html.dark-theme .article-title { color: #E2EAF4; }
.article-meta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.article-meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--gray); }
.article-meta-item i { font-size: 0.75rem; color: var(--accent); }

.article-hero-img {
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem;
  aspect-ratio: 16/7; background: var(--light);
}
html.dark-theme .article-hero-img { background: #1B2848; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.article-body { font-size: 1rem; line-height: 1.75; color: var(--text); }
html.dark-theme .article-body { color: #CBD5E1; }
.article-body h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--primary); }
html.dark-theme .article-body h2 { color: #E2EAF4; }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; color: var(--primary); }
html.dark-theme .article-body h3 { color: #E2EAF4; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--primary); font-weight: 700; }
html.dark-theme .article-body strong { color: #E2EAF4; }
.article-body a { color: var(--accent); font-weight: 600; }
.article-body a:hover { text-decoration: underline; }
.article-body blockquote {
  border-left: 4px solid var(--accent);
  margin: 2rem 0; padding: 1.25rem 1.5rem;
  background: var(--light); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem; font-style: italic; color: var(--primary);
}
html.dark-theme .article-body blockquote { background: #141E35; color: #E2EAF4; }
.article-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.9rem; }
.article-body th { background: var(--primary); color: #fff; padding: 0.75rem 1rem; text-align: left; font-weight: 700; }
.article-body td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
html.dark-theme .article-body td { border-bottom-color: #263352; }
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:hover td { background: var(--light); }
html.dark-theme .article-body tr:hover td { background: #1B2848; }

.in-article-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
  color: #fff;
}
html.dark-theme .in-article-cta { background: linear-gradient(135deg, #1A2F5A, #0D1B3E); }
.in-article-cta h3 { color: #fff; margin-bottom: 0.5rem; }
.in-article-cta p { color: rgba(255,255,255,.8); margin-bottom: 1.25rem; font-size: 0.93rem; }
.in-article-cta .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Article Share */
.article-share { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
html.dark-theme .article-share { border-top-color: #263352; }
.article-share-label { font-weight: 700; font-size: 0.9rem; }
.share-links { display: flex; gap: 0.5rem; }
.share-link {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  background: var(--light); color: var(--text); font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
html.dark-theme .share-link { background: #1B2848; color: #CBD5E1; }
.share-link:hover { background: var(--accent); color: #fff; text-decoration: none; }
.share-link-wa { background: #25D366; color: #fff; }
.share-link-wa:hover { background: #1ebe59; color: #fff; }

/* Related Posts */
.related-posts { margin-top: 3rem; }
.related-posts h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--primary); }
html.dark-theme .related-posts h3 { color: #E2EAF4; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* Breadcrumbs */
.breadcrumb-nav { margin-bottom: 2rem; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem; list-style: none; font-size: 0.82rem; }
.breadcrumb-item a { color: var(--gray); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--text); font-weight: 600; }
html.dark-theme .breadcrumb-item.active { color: #CBD5E1; }
.breadcrumb-sep { color: var(--gray); }

/* Reading Progress */
#reading-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: var(--accent); z-index: 9999; transition: width .1s linear; }

/* --------------------------------------------------------------------------
   24. Page Hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  padding: 4rem 1.5rem;
  text-align: center;
  color: #fff;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%2300C4C4' opacity='.15'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   25. Pricing / Apply Now
   -------------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
html.dark-theme .pricing-card { background: #141E35; border-color: #263352; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-md);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 0.25rem 1rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; white-space: nowrap;
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pricing-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--primary); }
html.dark-theme .pricing-name { color: #E2EAF4; }
.pricing-desc { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.5rem; }
.pricing-price {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 2.2rem; color: var(--primary);
  margin-bottom: 0.25rem; line-height: 1;
}
html.dark-theme .pricing-price { color: #E2EAF4; }
.pricing-price span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.pricing-note { font-size: 0.78rem; color: var(--gray); margin-bottom: 1.75rem; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; }
.pricing-feature i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.pricing-feature.no i { color: var(--gray); }

/* --------------------------------------------------------------------------
   26. Contact Page
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
}
html.dark-theme .contact-info-item { background: #141E35; border-color: #263352; }
.contact-info-icon { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(0,196,196,.1); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.15rem; flex-shrink: 0; }
.contact-info-text h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-info-text p, .contact-info-text a { font-size: 0.93rem; color: var(--gray); margin: 0; }
html.dark-theme .contact-info-text a { color: #94A3B8; }
.contact-info-text a:hover { color: var(--accent); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; }
html.dark-theme .contact-form { background: #141E35; border-color: #263352; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-label { font-size: 0.85rem; font-weight: 700; color: var(--primary); }
html.dark-theme .form-label { color: #E2EAF4; }
.form-control {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.65rem 0.875rem;
  font-family: var(--font-body); font-size: 0.93rem; color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
html.dark-theme .form-control { background: #1B2848; border-color: #263352; color: #CBD5E1; }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,196,196,.12); }
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* --------------------------------------------------------------------------
   27. Downloads Page
   -------------------------------------------------------------------------- */
.download-category { margin-bottom: 3rem; }
.download-category h3 { font-size: 1.2rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; border-bottom: 2px solid var(--border); padding-bottom: 0.75rem; }
html.dark-theme .download-category h3 { border-bottom-color: #263352; }
.download-category h3 i { color: var(--accent); }
.download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.download-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; display: flex; align-items: flex-start; gap: 0.875rem;
  transition: border-color var(--transition), transform var(--transition);
}
html.dark-theme .download-item { background: #141E35; border-color: #263352; }
.download-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.download-icon { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(0,196,196,.1); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }
.download-info h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.download-info p { font-size: 0.78rem; color: var(--gray); margin: 0; }
.download-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 700; color: var(--accent); margin-top: 0.4rem; }
.download-link:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   28. About Page
   -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.value-item { padding: 1.25rem; background: var(--light); border-radius: var(--radius); }
html.dark-theme .value-item { background: #141E35; }
.value-item i { color: var(--accent); font-size: 1.5rem; margin-bottom: 0.625rem; }
.value-item h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.value-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 0.875rem; background: linear-gradient(135deg, var(--accent), var(--primary)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: #fff; }
.team-card h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.team-card p { font-size: 0.8rem; color: var(--gray); margin: 0; }
.ca-partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ca-partner-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; transition: border-color var(--transition), transform var(--transition); }
html.dark-theme .ca-partner-item { background: #141E35; border-color: #263352; }
.ca-partner-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.ca-partner-icon { width: 60px; height: 60px; background: var(--light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: var(--accent); }
html.dark-theme .ca-partner-icon { background: #1B2848; }
.ca-partner-item h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.ca-partner-item p { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* --------------------------------------------------------------------------
   29. Policy Pages
   -------------------------------------------------------------------------- */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.policy-content h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.policy-content p { margin-bottom: 1.15rem; line-height: 1.75; }
.policy-content ul, .policy-content ol { padding-left: 1.5rem; margin-bottom: 1.15rem; }
.policy-content ul { list-style: disc; }
.policy-content li { margin-bottom: 0.5rem; line-height: 1.65; }
.policy-content a { color: var(--accent); }

/* --------------------------------------------------------------------------
   30. 404 Page
   -------------------------------------------------------------------------- */
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem 1.5rem; }
.page-404-inner h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--accent); font-weight: 800; line-height: 1; margin-bottom: 0.5rem; }
.page-404-inner h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.page-404-inner p { color: var(--gray); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   31. Reveal / Scroll Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Native scroll timeline (progressive enhancement) */
@supports (animation-timeline: view()) {
  .reveal-native {
    animation: reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes reveal-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* --------------------------------------------------------------------------
   32. Utility Classes
   -------------------------------------------------------------------------- */
.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; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.p-0 { padding: 0; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.bg-light { background: var(--light); }
html.dark-theme .bg-light { background: #141E35; }
.bg-primary { background: var(--primary); }
.border { border: 1px solid var(--border); }
html.dark-theme .border { border-color: #263352; }
.overflow-hidden { overflow: hidden; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.w-100 { width: 100%; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }

/* Alert / Notice boxes */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.92rem; }
.alert-info { background: rgba(0,196,196,.1); border: 1px solid rgba(0,196,196,.25); color: var(--accent-dark); }
html.dark-theme .alert-info { color: var(--accent); }
.alert-warning { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25); color: #92400e; }
html.dark-theme .alert-warning { color: #F59E0B; }
.alert-success { background: rgba(46,204,113,.1); border: 1px solid rgba(46,204,113,.25); color: #166534; }
html.dark-theme .alert-success { color: var(--green); }

/* Tabs */
.tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; border-bottom: 2px solid var(--border); padding-bottom: 0; }
html.dark-theme .tabs { border-bottom-color: #263352; }
.tab-btn {
  padding: 0.65rem 1.25rem; background: none; border: none;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  color: var(--gray); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
html.dark-theme .tab-btn { color: #94A3B8; }
html.dark-theme .tab-btn.active { color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* --------------------------------------------------------------------------
   33. Responsive: Tablet (max 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ca-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   34. Responsive: Mobile (max 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .top-bar { display: none; }
  .site-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 4.5rem 1.25rem 3.5rem; }
  .section { padding: 3.5rem 1.25rem; }
  .section-lg { padding: 4rem 1.25rem; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ca-partners-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.25rem; }
  .hero-cta-bar .container { flex-direction: column; text-align: center; }
  .blog-search-bar { max-width: 100%; }
  .cookie-bar { flex-direction: column; text-align: center; }
  .cookie-bar-actions { justify-content: center; }
  .floating-cta { bottom: 1rem; right: 1rem; }
  .search-modal { padding-top: 4vh; }
  .article-meta { gap: 0.875rem; }
  .in-article-cta .btn-group { flex-direction: column; }

  /* Page hero responsive */
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* CTA banner actions stack on mobile */
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer badge wraps cleanly */
  .footer-badge { display: inline-flex; font-size: .78rem; }
}

/* --------------------------------------------------------------------------
   35. New Page Components — Services, Portfolio, Pricing, Article
   -------------------------------------------------------------------------- */

/* Section header (centered title + subtitle) */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--gray); font-size: 1.05rem; }

/* Check list (used in services, pricing, portfolio cards) */
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.93rem; line-height: 1.6; }
.check-list li i { margin-top: 3px; flex-shrink: 0; }

/* ── Services ── */
.service-detail-grid {
  display: grid; grid-template-columns: 120px 1fr; gap: 3rem; align-items: start;
}
.service-detail-grid--reverse { grid-template-columns: 1fr 120px; }
.service-detail-grid--reverse .service-detail-icon { order: 2; }
.service-detail-grid--reverse .service-detail-body { order: 1; }
.service-detail-icon {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 1.5rem; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: #fff; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,196,196,.3);
}
.service-detail-body h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin: .5rem 0 1rem; }

.service-uses-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: .75rem; margin-bottom: 1.5rem;
}
.service-use-item {
  display: flex; align-items: center; gap: .6rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: .625rem; padding: .6rem .85rem; font-size: .85rem; font-weight: 600;
}
html.dark-theme .service-use-item { background: #141E35; border-color: #263352; }
.service-use-item i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }

/* ── Feature Grid (used in Services, Pricing, About) ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform .3s, box-shadow .3s;
}
html.dark-theme .feature-card { background: #141E35; border-color: #263352; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(0,196,196,.1); border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent); margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--gray); margin: 0; line-height: 1.65; }

/* ── Steps (alternate step-card style) ── */
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-align: center; position: relative;
}
html.dark-theme .step-card { background: #141E35; border-color: #263352; }
.step-num {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  color: var(--accent); opacity: .2; line-height: 1; margin-bottom: .5rem;
}
.step-icon { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; display: block; }
.step-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.step-card p { font-size: .9rem; color: var(--gray); margin: 0; }

/* ── Portfolio ── */
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
html.dark-theme .stat-card { background: #141E35; border-color: #263352; }
.stat-card .stat-number { color: var(--accent); }
.stat-card .stat-label { color: var(--gray); }

.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.portfolio-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 120px 1fr; gap: 0;
  transition: transform .3s, box-shadow .3s;
}
html.dark-theme .portfolio-card { background: #141E35; border-color: #263352; }
.portfolio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.portfolio-card-icon {
  width: 120px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.portfolio-card-body { padding: 2rem; }
.portfolio-card-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.portfolio-card-body h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.portfolio-card-body p { font-size: .93rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.portfolio-quote {
  margin: 1.25rem 0 0; padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(0,196,196,.06);
  border-radius: 0 .5rem .5rem 0;
  font-size: .9rem; font-style: italic; color: var(--text); line-height: 1.65;
}
html.dark-theme .portfolio-quote { color: #CBD5E1; }
.portfolio-quote cite { display: block; margin-top: .5rem; font-size: .82rem; font-style: normal; font-weight: 700; color: var(--accent); }

.industries-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem;
}
.industry-pill {
  display: flex; align-items: center; gap: .65rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: .65rem 1.1rem;
  font-size: .88rem; font-weight: 600; color: var(--text);
  transition: border-color .2s, color .2s;
}
html.dark-theme .industry-pill { background: #141E35; border-color: #263352; color: #CBD5E1; }
.industry-pill:hover { border-color: var(--accent); color: var(--accent); }
.industry-pill i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }

/* ── Pricing (new layout) ── */
.pricing-grid-new {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.pricing-card--popular {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-md) !important;
  position: relative;
}
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: .25rem 1rem; border-radius: 100px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; white-space: nowrap;
}
.pricing-card-head { text-align: center; margin-bottom: 1.5rem; }
.pricing-card-icon {
  width: 56px; height: 56px;
  background: rgba(0,196,196,.1); border-radius: .875rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent);
  margin: 0 auto 1rem;
}
.pricing-card-head h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.pricing-card-subtitle { font-size: .82rem; color: var(--gray); line-height: 1.5; }
.pricing-card-prices { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 1.25rem 0; padding: .75rem 0; display: flex; flex-direction: column; gap: .5rem; }
html.dark-theme .pricing-card-prices { border-color: #263352; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; gap: .5rem; padding: .4rem .5rem; border-radius: .375rem; font-size: .85rem; }
.pricing-row--highlight { background: rgba(0,196,196,.08); }
.pricing-row-label { color: var(--gray); }
.pricing-row-price { font-weight: 800; color: var(--primary); font-family: var(--font-heading); font-size: .95rem; }
html.dark-theme .pricing-row-price { color: #E2EAF4; }
.pricing-card .pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.pricing-card .pricing-features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .85rem; line-height: 1.5; }
.pricing-cta { width: 100%; justify-content: center; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.compare-table th, .compare-table td {
  padding: .875rem 1rem; text-align: center; border-bottom: 1px solid var(--border);
}
html.dark-theme .compare-table th,
html.dark-theme .compare-table td { border-color: #263352; }
.compare-table th { font-weight: 700; background: var(--light); color: var(--primary); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
html.dark-theme .compare-table th { background: #141E35; color: #E2EAF4; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 600; }
.compare-table tbody tr:hover { background: rgba(0,196,196,.04); }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ── Article CTA Box ── */
.article-cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center; margin: 2rem 0;
}
.article-cta-box h3 { color: #fff; margin-bottom: .5rem; }
.article-cta-box p { color: rgba(255,255,255,.8); margin-bottom: 1.25rem; font-size: .93rem; }
.article-cta-box .btn { margin: .25rem; }

/* ── Responsive: new components ── */
@media (max-width: 1024px) {
  .pricing-grid-new { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .service-detail-grid, .service-detail-grid--reverse {
    grid-template-columns: 1fr; text-align: center;
  }
  .service-detail-grid--reverse .service-detail-icon { order: 0; }
  .service-detail-icon { margin: 0 auto; }
  .service-uses-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card { grid-template-columns: 1fr; }
  .portfolio-card-icon { width: 100%; height: 80px; }
  .pricing-grid-new { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: .8rem; }
  .compare-table th, .compare-table td { padding: .6rem .5rem; }
}
@media (max-width: 480px) {
  .service-uses-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   36. Print
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   37. Pricing Table
   -------------------------------------------------------------------------- */
.pricing-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.pricing-table th, .pricing-table td {
  padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
html.dark-theme .pricing-table th,
html.dark-theme .pricing-table td { border-color: #263352; }
.pricing-table thead tr { background: var(--primary); }
.pricing-table thead th { color: #fff; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.pricing-table thead th:first-child { border-radius: .5rem 0 0 0; }
.pricing-table thead th:last-child  { border-radius: 0 .5rem 0 0; }
.pricing-table tbody tr:hover { background: rgba(0,196,196,.04); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-issuance-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(0,196,196,.12); color: var(--accent);
  padding: .25rem .7rem; border-radius: 100px; font-size: .8rem; font-weight: 700;
}
.pricing-footnote {
  margin-top: 1.25rem; font-size: .85rem; color: var(--gray);
  border-left: 3px solid var(--accent); padding: .75rem 1rem;
  background: rgba(0,196,196,.06); border-radius: 0 .5rem .5rem 0;
}
@media (max-width: 768px) {
  .pricing-table thead { display: none; }
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td { display: block; width: 100%; }
  .pricing-table tr { border: 1px solid var(--border); border-radius: .75rem; margin-bottom: 1rem; padding: .75rem; }
  html.dark-theme .pricing-table tr { border-color: #263352; }
  .pricing-table td { border: none; padding: .3rem .5rem; font-size: .88rem; }
  .pricing-table td:first-child { font-size: 1rem; padding-top: .5rem; }
  .pricing-table td:last-child { padding-top: .75rem; }
}

/* --------------------------------------------------------------------------
   38. Blog Share Widget
   -------------------------------------------------------------------------- */
.blog-share-widget {
  margin: 2.5rem 0; padding: 1.5rem;
  background: var(--light); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
html.dark-theme .blog-share-widget { background: #141E35; border-color: #263352; }
.blog-share-label {
  font-weight: 700; font-size: .95rem; margin: 0 0 1rem;
  display: flex; align-items: center; gap: .5rem; color: var(--text);
}
.blog-share-label i { color: var(--accent); }
.blog-share-buttons { display: flex; gap: .65rem; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.1rem; border-radius: 100px;
  font-size: .85rem; font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.share-btn:hover { opacity: .88; transform: translateY(-1px); }
.share-btn--wa  { background: #25D366; color: #fff; }
.share-btn--x   { background: #000; color: #fff; }
html.dark-theme .share-btn--x { background: #1a1a1a; border: 1px solid #333; }
.share-btn--li  { background: #0A66C2; color: #fff; }
.share-btn--fb  { background: #1877F2; color: #fff; }
.share-btn--copy {
  background: var(--white); color: var(--text);
  border: 1px solid var(--border);
}
html.dark-theme .share-btn--copy { background: #0F1729; border-color: #263352; color: #CBD5E1; }
.share-btn--copy.copied { background: var(--accent); color: #fff; border-color: var(--accent); }

@media (max-width: 480px) {
  .blog-share-buttons { gap: .5rem; }
  .share-btn span { display: none; }
  .share-btn { padding: .55rem .85rem; }
}

@media print {
  .site-header, .footer, .floating-cta, .cookie-bar, .search-modal, #reading-progress { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; }
  .container { max-width: 100%; padding: 0; }
}

/* ==========================================================================
   Section 39 — Downloads Page
   ========================================================================== */

/* Notice bar */
.dl-notice-bar {
  background: #fff8e1;
  border: 1.5px solid #f6c90e;
  border-radius: var(--radius);
  padding: .875rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  margin-bottom: 2.5rem;
  font-size: .875rem;
  color: #5d4a00;
}
html.dark-theme .dl-notice-bar { background: #2a2000; border-color: #7a5c00; color: #e8c84a; }
.dl-notice-bar i { color: #c09000; margin-top: 2px; flex-shrink: 0; }
.dl-notice-bar a { color: #c07800; font-weight: 700; }
html.dark-theme .dl-notice-bar a { color: #f0a800; }

/* Download grid — 2-col by default, wide cards span full width */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

/* Cards */
.dl-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
html.dark-theme .dl-card { background: #0F1729; border-color: #263352; }
.dl-card--wide { grid-column: 1 / -1; }

/* Card header */
.dl-card-header {
  background: var(--primary);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
html.dark-theme .dl-card-header { background: #0a102a; }
.dl-card-header i { color: var(--accent); font-size: 1.1rem; }
.dl-card-header h3 { color: #fff; font-size: .95rem; margin: 0; font-family: 'Syne', sans-serif; font-weight: 700; }

/* Download list */
.dl-list { list-style: none; padding: 0; margin: 0; }
.dl-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.dl-item { border-bottom: 1px solid var(--border); }
.dl-item:last-child { border-bottom: none; }
.dl-list--grid .dl-item { border: 1px solid var(--border); margin: 4px; border-radius: var(--radius); }
.dl-item a {
  display: flex;
  align-items: center;
  gap: .625rem;
  width: 100%;
  padding: .75rem 1.25rem;
  color: var(--text);
  font-size: .875rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
html.dark-theme .dl-item a { color: #CBD5E1; }
.dl-item a:hover { background: var(--light); color: var(--accent); text-decoration: none; }
html.dark-theme .dl-item a:hover { background: #141E35; }
.dl-icon { color: var(--accent); font-size: .9rem; flex-shrink: 0; width: 18px; text-align: center; }
.dl-icon--pdf  { color: #e74c3c; }
.dl-icon--word { color: #2b579a; }
.dl-arrow { margin-left: auto; color: var(--gray); font-size: .7rem; flex-shrink: 0; }
.dl-item a:hover .dl-arrow { color: var(--accent); }
.dl-ext {
  margin-left: auto;
  font-size: .7rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.dl-item a span { flex: 1; }

/* Linux note */
.dl-linux-note {
  padding: .625rem 1.25rem;
  color: var(--gray);
  font-size: .8rem;
  font-style: italic;
  border-top: 1px solid var(--border);
}
.dl-linux-note a { font-weight: 600; }

/* Video KYC app grid */
.dl-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .875rem;
  padding: 1rem 1.25rem;
}
.dl-app-card {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .875rem 1rem;
}
html.dark-theme .dl-app-card { background: #141E35; border-color: #263352; }
.dl-app-name {
  font-size: .875rem;
  color: var(--primary);
  margin-bottom: .625rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}
html.dark-theme .dl-app-name { color: #E2EAF4; }
.dl-app-dot { color: var(--accent); font-size: .45rem; }
.dl-app-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.dl-app-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .875rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: .78rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
html.dark-theme .dl-app-btn { background: #0F1729; color: #CBD5E1; border-color: #263352; }
.dl-app-btn:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  .dl-grid { grid-template-columns: 1fr; }
  .dl-list--grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Section 39b — Content protection (no select, no image drag)
   Form fields, code blocks, and the copy-link share button stay selectable.
   ========================================================================== */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
input, textarea, select, [contenteditable="true"],
pre, code, .blog-share-widget, .blog-share-widget * {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}
img { -webkit-user-drag: none; user-drag: none; pointer-events: auto; }

/* ==========================================================================
   Section 40 — Blog Pagination & Count Bar
   ========================================================================== */

.blog-filter-count { opacity: .7; font-size: .75em; font-weight: 600; }

.blog-count-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: .84rem;
  color: var(--gray);
  min-height: 24px;
}
.blog-count-bar strong { color: var(--primary); font-weight: 700; }
html.dark-theme .blog-count-bar strong { color: #E2EAF4; }

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: .88rem;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
html.dark-theme .pagination-btn { background: #141E35; border-color: #263352; color: #CBD5E1; }
.pagination-btn:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.pagination-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
html.dark-theme .pagination-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 4px;
  color: var(--gray);
}
