/* ========================================================================
   LoperTech Dark Theme — Enterprise Cybersecurity CSS
   Version: 7.0.0
   ======================================================================== */

/* ────────────────────────────────────────────────────────────────────────
   1. CSS Variables
   ──────────────────────────────────────────────────────────────────────── */

:root {
  --bg: #0a0f1a;
  --bg-alt: #111827;
  --bg-card: #1a2332;
  --bg-card-hover: #1e293b;
  --surface: rgba(255,255,255,.04);
  --surface-alt: rgba(255,255,255,.06);
  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-soft: rgba(59,130,246,.12);
  --cyan: #06b6d4;
  --cyan-hover: #22d3ee;
  --cyan-soft: rgba(6,182,212,.1);
  --green: #10b981;
  --green-soft: rgba(16,185,129,.1);
  --red: #ef4444;
  --red-soft: rgba(239,68,68,.1);
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(255,255,255,.15);
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}


/* ────────────────────────────────────────────────────────────────────────
   2. Reset & Base
   ──────────────────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  background-image: linear-gradient(135deg, rgba(59,130,246,.03) 0%, transparent 50%, rgba(6,182,212,.02) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

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

::selection {
  background: var(--accent);
  color: #fff;
}


/* ────────────────────────────────────────────────────────────────────────
   3. Utilities
   ──────────────────────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent);
}

.text-cyan {
  color: var(--cyan);
}

.text-green {
  color: var(--green);
}

.text-muted {
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 500;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent);
  white-space: nowrap;
}

.tag--cyan {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.tag--green {
  background: var(--green-soft);
  color: var(--green);
}

.tag--red {
  background: var(--red-soft);
  color: var(--red);
}

.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;
}


/* ────────────────────────────────────────────────────────────────────────
   4. Buttons
   ──────────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(59,130,246,.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 4px 20px rgba(59,130,246,.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--surface);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: .8rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-nav {
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  font-size: .85rem;
  border-radius: var(--radius);
}

.btn-nav:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}


/* ────────────────────────────────────────────────────────────────────────
   5. Navigation
   ──────────────────────────────────────────────────────────────────────── */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,15,26,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
  max-height: 48px;
}

.nav-logo .brand-text {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Force logo to 32px - override WordPress custom logo */
.nav-logo img,
.nav-logo .custom-logo,
.custom-logo-link,
.custom-logo-link img,
.wp-custom-logo img,
.nav-logo .custom-logo-link,
.nav-logo .custom-logo-link img,
div.custom-logo-link,
div.custom-logo-link img {
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Extra specificity for WordPress generated styles */
body .nav-logo .custom-logo-link img,
body header .nav-logo img,
body nav .nav-logo img,
body .site-logo img,
body .site-branding img {
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  max-width: 160px !important;
}

.nav-logo small {
  font-size: .65rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  line-height: 1.2;
  margin-top: -2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--text);
  transition: all var(--transition);
}

.nav-toggle.active svg line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active svg line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active svg line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--surface);
}

.nav-link.active {
  color: var(--accent);
}

.scroll-progress {
  position: fixed;
  top: 64px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  z-index: 999;
  transition: width .15s ease-out;
  width: 0%;
}


/* ────────────────────────────────────────────────────────────────────────
   6. Hero
   ──────────────────────────────────────────────────────────────────────── */

.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(59,130,246,.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 20% 80%, rgba(6,182,212,.06) 0%, transparent 60%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 40px 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-title.large {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.hero-stats.row {
  flex-direction: row;
}

.stat {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.stat-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
}


/* ────────────────────────────────────────────────────────────────────────
   7. Marquee
   ──────────────────────────────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5;
  flex-shrink: 0;
}


/* ────────────────────────────────────────────────────────────────────────
   8. Sections
   ──────────────────────────────────────────────────────────────────────── */

.section-premium {
  padding: 100px 0;
  position: relative;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 12px;
}

.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(59,130,246,.1) 0%, transparent 70%);
}

.page-hero-accent {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-band {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(59,130,246,.08), rgba(6,182,212,.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band h2 {
  margin-bottom: 16px;
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(59,130,246,.06) 0%, transparent 70%);
  pointer-events: none;
}


/* ────────────────────────────────────────────────────────────────────────
   9. Cards
   ──────────────────────────────────────────────────────────────────────── */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}


/* ────────────────────────────────────────────────────────────────────────
   10. Bento Grid
   ──────────────────────────────────────────────────────────────────────── */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 20px;
}

.bento-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.bento-text {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ────────────────────────────────────────────────────────────────────────
   11. Split Layout
   ──────────────────────────────────────────────────────────────────────── */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-title {
  margin-bottom: 16px;
}

.split-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: .7rem;
  margin-top: 2px;
}


/* ────────────────────────────────────────────────────────────────────────
   12. Image Frame
   ──────────────────────────────────────────────────────────────────────── */

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.image-frame:hover img {
  transform: scale(1.03);
}

.image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(10,15,26,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--cyan);
}


/* ────────────────────────────────────────────────────────────────────────
   13. Tabs
   ──────────────────────────────────────────────────────────────────────── */

.tabs-premium {
  width: 100%;
}

.tabs-nav {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  flex: 1;
  padding: 12px 20px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.tab-btn:hover {
  color: var(--text-secondary);
}

.tab-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(59,130,246,.3);
}

.tab-panel {
  display: none;
  animation: fadeInUp .4s ease-out;
}

.tab-panel.active {
  display: block;
}


/* ────────────────────────────────────────────────────────────────────────
   14. Partners
   ──────────────────────────────────────────────────────────────────────── */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  opacity: .6;
  filter: grayscale(1);
}

.partner-item:hover {
  opacity: 1;
  filter: grayscale(0);
  border-color: var(--border-hover);
  background: var(--surface-alt);
}

.partner-item img {
  max-height: 36px;
  width: auto;
}


/* ────────────────────────────────────────────────────────────────────────
   15. Footer
   ──────────────────────────────────────────────────────────────────────── */

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 280px;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-grid h4 {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-grid a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-secondary);
}

.footer-bottom a:hover {
  color: var(--text);
}


/* ────────────────────────────────────────────────────────────────────────
   16. Dossier Card
   ──────────────────────────────────────────────────────────────────────── */

.dossier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.dossier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--cyan));
  border-radius: 3px 0 0 3px;
}

.dossier-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}


/* ────────────────────────────────────────────────────────────────────────
   17. Service Panel
   ──────────────────────────────────────────────────────────────────────── */

.service-panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
}

.service-panel-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 32px rgba(59,130,246,.1);
  transform: translateY(-2px);
}

.service-panel-card .service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
}

.service-panel-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.service-panel-card p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ────────────────────────────────────────────────────────────────────────
   18. Page Content (WordPress editor)
   ──────────────────────────────────────────────────────────────────────── */

.entry-content > * + * {
  margin-top: 1.5em;
}

.entry-content h2 {
  margin-top: 2em;
  margin-bottom: .6em;
}

.entry-content h3 {
  margin-top: 1.6em;
  margin-bottom: .5em;
}

.entry-content p {
  font-size: 1rem;
  line-height: 1.8;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4em;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: .4em;
  color: var(--text-secondary);
}

.entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.entry-content code {
  font-family: var(--font-mono);
  font-size: .85em;
  padding: 2px 8px;
  background: var(--surface-alt);
  border-radius: 4px;
  color: var(--cyan);
}

.entry-content pre {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  overflow-x: auto;
  margin: 2em 0;
}

.entry-content pre code {
  padding: 0;
  background: none;
  border-radius: 0;
  color: var(--text-secondary);
}

.entry-content img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 1.5em 0;
}

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content a:hover {
  color: var(--accent-hover);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}

.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: .9rem;
}

.entry-content th {
  background: var(--bg-card);
  font-weight: 600;
  color: var(--text);
}

.entry-content td {
  color: var(--text-secondary);
}


/* ────────────────────────────────────────────────────────────────────────
   19. Bio / Sidebar
   ──────────────────────────────────────────────────────────────────────── */

.bio-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.bio-sidebar {
  position: sticky;
  top: 88px;
}

.bio-sidebar .bio-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.bio-sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.bio-sidebar .bio-role {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bio-content {
  min-width: 0;
}

.svc-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text-secondary);
  transition: all var(--transition);
  margin-bottom: 8px;
}

.svc-nav-link:hover {
  background: var(--surface-alt);
  border-color: var(--border-hover);
  color: var(--text);
}

.svc-nav-link.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}


/* ────────────────────────────────────────────────────────────────────────
   20. Contact
   ──────────────────────────────────────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-sidebar {
  position: sticky;
  top: 88px;
}

.contact-sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact-sidebar p {
  font-size: .9rem;
  margin-bottom: 24px;
}

.contact-content {
  min-width: 0;
}


/* ────────────────────────────────────────────────────────────────────────
   21. Contact V2
   ──────────────────────────────────────────────────────────────────────── */

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--text-secondary);
}

.trust-bar .trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
}

.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.c-info-item {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.c-info-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.c-info-item h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.c-info-item p {
  font-size: .95rem;
  color: var(--text);
}

.c-office {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-office span {
  font-size: .9rem;
  color: var(--text-secondary);
}

.c-responses {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.c-resp {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.c-resp:hover {
  border-color: var(--border-hover);
}

.c-resp .c-resp-time {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.c-resp .c-resp-label {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.c-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.c-field input,
.c-field textarea,
.c-field select {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.c-field input:focus,
.c-field textarea:focus,
.c-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.c-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.c-field textarea {
  resize: vertical;
  min-height: 140px;
}

.c-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #2563eb);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(59,130,246,.3);
}

.c-submit:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 4px 20px rgba(59,130,246,.45);
  transform: translateY(-1px);
}

.c-emergency {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--red-soft);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.c-emergency .c-emergency-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.c-emergency p {
  font-size: .9rem;
  color: var(--text);
  margin: 0;
}

.c-emergency strong {
  color: var(--red);
}

.c-faq {
  margin-top: 48px;
}

.c-faq h3 {
  margin-bottom: 24px;
}

.c-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.c-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.c-faq-question:hover {
  background: var(--bg-card-hover);
}

.c-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.c-faq-item.open .c-faq-answer {
  max-height: 200px;
  padding: 16px 20px;
}

.c-success-box {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  background: var(--green-soft);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-lg);
}

.c-success-box.visible {
  display: flex;
}

.c-success-box .success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.c-success-box h3 {
  margin-bottom: 8px;
  color: var(--text);
}

.c-success-box p {
  color: var(--text-secondary);
}


/* ────────────────────────────────────────────────────────────────────────
   22. Scroll Reveal Animations
   ──────────────────────────────────────────────────────────────────────── */

.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(40px); }

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed,
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0);
}

/* stagger children via data-delay */
.reveal[data-delay="1"],
.reveal-left[data-delay="1"],
.reveal-right[data-delay="1"],
.reveal-up[data-delay="1"] { transition-delay: .1s; }

.reveal[data-delay="2"],
.reveal-left[data-delay="2"],
.reveal-right[data-delay="2"],
.reveal-up[data-delay="2"] { transition-delay: .2s; }

.reveal[data-delay="3"],
.reveal-left[data-delay="3"],
.reveal-right[data-delay="3"],
.reveal-up[data-delay="3"] { transition-delay: .3s; }

.reveal[data-delay="4"],
.reveal-up[data-delay="4"] { transition-delay: .4s; }

.reveal[data-delay="5"],
.reveal-up[data-delay="5"] { transition-delay: .5s; }


/* ────────────────────────────────────────────────────────────────────────
   23. Glitch Effect
   ──────────────────────────────────────────────────────────────────────── */

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.glitch::before {
  color: var(--accent);
  z-index: -1;
  animation: glitch 3s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--cyan);
  z-index: -2;
  animation: glitch 2s infinite linear alternate;
}

@keyframes glitch {
  0% {
    text-shadow: 2px 0 var(--accent), -2px 0 var(--cyan);
  }
  25% {
    text-shadow: -2px -2px var(--accent), 2px 2px var(--cyan);
  }
  50% {
    text-shadow: 2px 2px var(--accent), -2px -2px var(--cyan);
  }
  75% {
    text-shadow: -2px 0 var(--accent), 2px 0 var(--cyan);
  }
  100% {
    text-shadow: 2px 0 var(--accent), -2px 0 var(--cyan);
  }
}


/* ────────────────────────────────────────────────────────────────────────
   24. Matrix Rain Canvas
   ──────────────────────────────────────────────────────────────────────── */

#matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .06;
}


/* ────────────────────────────────────────────────────────────────────────
   25. Animation Keyframes
   ──────────────────────────────────────────────────────────────────────── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ────────────────────────────────────────────────────────────────────────
   26. Responsive
   ──────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bio-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bio-sidebar {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .bio-sidebar .bio-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-sidebar {
    position: static;
  }

  .contact-2col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .c-responses {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-sep {
    display: none;
  }

  .stat {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 4px;
    transition: right var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-links .btn-nav {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .hero-premium {
    min-height: 85vh;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .hero-title.large {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .stat-sep {
    display: none;
  }

  .stat {
    padding: 0 16px;
    min-width: 120px;
  }

  .section-premium,
  .section {
    padding: 60px 0;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tabs-nav {
    gap: 2px;
    overflow-x: auto;
  }

  .tab-btn {
    padding: 10px 14px;
    font-size: .8rem;
  }

  .c-form-box {
    padding: 24px;
  }

  .trust-bar {
    gap: 16px;
    padding: 24px 0;
  }

  .trust-bar .trust-item {
    font-size: .75rem;
  }

  .trust-bar .trust-icon {
    width: 32px;
    height: 32px;
    font-size: .85rem;
  }

  .c-responses {
    grid-template-columns: 1fr;
  }

  .c-emergency {
    flex-direction: column;
    text-align: center;
  }

  .contact-2col {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 40px;
  }

  .bio-layout {
    grid-template-columns: 1fr;
  }

  .bio-sidebar {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .bio-sidebar .bio-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
  }

  .scroll-progress {
    top: 0;
  }

  .top-bar {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10,15,26,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container,
  .container-narrow {
    padding: 0 16px;
  }

  .hero-content {
    padding: 24px 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat {
    padding: 0;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .card,
  .bento-card,
  .dossier-card,
  .service-panel-card {
    padding: 24px;
  }

  .c-form-box {
    padding: 20px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: .9rem;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partner-item {
    padding: 16px;
  }

  .bio-sidebar {
    flex-direction: column;
    text-align: center;
  }

  .section-header h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-sub {
    font-size: .95rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .marquee-item {
    padding: 0 20px;
    font-size: .8rem;
  }

  .image-badge {
    font-size: .65rem;
    padding: 4px 10px;
  }

  .check-list li {
    font-size: .9rem;
  }

  .footer {
    padding: 48px 0 0;
  }

  .footer-brand p {
    font-size: .8rem;
  }
}


/* ────────────────────────────────────────────────────────────────────────
   27. Accessibility
   ──────────────────────────────────────────────────────────────────────── */

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

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }

  .glitch::before,
  .glitch::after {
    animation: none;
  }

  .scroll-indicator {
    animation: none;
  }

  .pulse {
    animation: none;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* skip to content link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}


/* ────────────────────────────────────────────────────────────────────────
   28. Scrollbar
   ──────────────────────────────────────────────────────────────────────── */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}


/* ────────────────────────────────────────────────────────────────────────
   29. Page Hero Accent
   ──────────────────────────────────────────────────────────────────────── */

.page-hero-accent {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

.page-hero-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(59,130,246,.1) 0%, transparent 70%);
}

.page-hero-accent .container {
  position: relative;
  z-index: 1;
}

.page-hero-accent h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.page-hero-accent p {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ────────────────────────────────────────────────────────────────────────
   30. Breadcrumb
   ──────────────────────────────────────────────────────────────────────── */

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep,
.breadcrumb-sep {
  opacity: .4;
}

.breadcrumb .current,
.breadcrumb-current {
  color: var(--text-secondary);
}


/* ────────────────────────────────────────────────────────────────────────
   31. Trust Bar (Page Templates)
   ──────────────────────────────────────────────────────────────────────── */

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-bar-item i {
  color: var(--accent);
  font-size: .9rem;
}

.trust-bar-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}


/* ────────────────────────────────────────────────────────────────────────
   32. Service Cards (Contact Page)
   ──────────────────────────────────────────────────────────────────────── */

.c-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.c-service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.c-service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.1rem;
  margin: 0 auto 14px;
}

.c-service-card h4 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 6px;
}


/* ────────────────────────────────────────────────────────────────────────
   33. Contact Sidebar Blocks
   ──────────────────────────────────────────────────────────────────────── */

.c-sidebar-block {
  margin-bottom: 24px;
}

.c-sidebar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.c-sidebar-head i {
  color: var(--accent);
  font-size: 1rem;
}

.c-sidebar-head h3 {
  font-size: 1rem;
  font-weight: 600;
}

.c-info-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: all var(--transition);
}

.c-info-item:hover {
  border-color: var(--border-hover);
}

.c-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: .9rem;
}

.c-icon-cyan {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.c-icon-green {
  background: var(--green-soft);
  color: var(--green);
}

.c-info-item h4 {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.c-link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}

.c-link:hover {
  color: var(--accent);
}

.c-sub {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 2px;
}


/* ────────────────────────────────────────────────────────────────────────
   34. Social Links
   ──────────────────────────────────────────────────────────────────────── */

.c-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.c-social-link:hover {
  background: var(--surface-alt);
  border-color: var(--border-hover);
  color: var(--text);
}

.c-social-link i {
  width: 20px;
  text-align: center;
  color: var(--accent);
}


/* ────────────────────────────────────────────────────────────────────────
   35. Response Badges
   ──────────────────────────────────────────────────────────────────────── */

.c-responses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.c-resp {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.c-resp:hover {
  border-color: var(--border-hover);
}

.c-resp-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.c-resp-std { background: var(--accent-soft); color: var(--accent); }
.c-resp-pri { background: var(--cyan-soft); color: var(--cyan); }
.c-resp-urg { background: rgba(245,158,11,.12); color: #f59e0b; }
.c-resp-emg { background: var(--red-soft); color: var(--red); }

.c-resp-time {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}


/* ────────────────────────────────────────────────────────────────────────
   36. Commitment Cards
   ──────────────────────────────────────────────────────────────────────── */

.c-commitment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.c-commitment-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.c-commitment-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.c-commitment-time {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}


/* ────────────────────────────────────────────────────────────────────────
   37. Office Cards
   ──────────────────────────────────────────────────────────────────────── */

.c-office-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.c-office-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.c-office-flag {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.c-office-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.c-office-label {
  font-size: .8rem;
  color: var(--text-muted);
}


/* ────────────────────────────────────────────────────────────────────────
   38. Testimonial
   ──────────────────────────────────────────────────────────────────────── */

.c-testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.c-testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.c-testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  border: none;
  padding: 0;
  background: none;
}

.c-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.c-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-testimonial-author strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
}

.c-testimonial-author span {
  font-size: .8rem;
  color: var(--text-muted);
}


/* ────────────────────────────────────────────────────────────────────────
   39. FAQ (Page Templates)
   ──────────────────────────────────────────────────────────────────────── */

.c-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.c-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card);
  cursor: pointer;
  transition: background var(--transition);
}

.c-faq-q:hover {
  background: var(--bg-card-hover);
}

.c-faq-q h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}

.c-faq-q i {
  color: var(--text-muted);
  font-size: .8rem;
  transition: transform var(--transition);
}

.c-faq-item.open .c-faq-q i {
  transform: rotate(180deg);
}

.c-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.c-faq-item.open .c-faq-a {
  max-height: 300px;
}

.c-faq-a p {
  padding: 0 20px 16px;
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ────────────────────────────────────────────────────────────────────────
   40. Emergency Contact
   ──────────────────────────────────────────────────────────────────────── */

.c-emg-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-emg-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.c-emg-left h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.c-emg-left p {
  font-size: .85rem;
  color: var(--text-secondary);
}

.c-emg-btn {
  white-space: nowrap;
}


/* ────────────────────────────────────────────────────────────────────────
   41. Form Extras
   ──────────────────────────────────────────────────────────────────────── */

.c-form-head {
  margin-bottom: 24px;
}

.c-form-head h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.c-form-head p {
  font-size: .85rem;
  color: var(--text-muted);
}

.c-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.c-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.c-secure i {
  color: var(--green);
}

.form-message {
  font-size: .85rem;
  margin-top: 8px;
}

.c-success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}


/* ────────────────────────────────────────────────────────────────────────
   42. Bio Sidebar Header
   ──────────────────────────────────────────────────────────────────────── */

.bio-sidebar-header {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}


/* ────────────────────────────────────────────────────────────────────────
   43. Responsive — Page Templates
   ──────────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .c-form-row {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-bar-sep {
    display: none;
  }

  .c-responses {
    grid-template-columns: 1fr 1fr;
  }

  .c-emergency {
    flex-direction: column;
    text-align: center;
  }

  .c-emg-left {
    flex-direction: column;
    text-align: center;
  }

  .c-testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .c-info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .c-responses {
    grid-template-columns: 1fr;
  }

  .c-form-row {
    grid-template-columns: 1fr;
  }

  .trust-bar-item {
    font-size: .75rem;
  }
}
