/* Accessplus Communications - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #1D1F5A;
  --primary-light: #2A2D7C;
  --primary-hover: #151745;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --bg-light: #F1F6FE;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  --text-main: #1D1F5A;
  --text-muted: #475569;
  --text-light: #64748B;
  --font-main: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sidebar-width: 190px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: #FFFFFF;
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* DESKTOP SIDEBAR NAVIGATION */
.desktop-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background-color: #FFFFFF;
    border-right: 1px solid #F1F5F9;
    z-index: 50;
  }
}

.sidebar-logo {
  padding: 32px 24px 40px 24px;
}

.sidebar-logo img {
  width: 135px;
  height: auto;
  display: block;
}

.sidebar-nav {
  flex: 1;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

/* DROPDOWN MENU */
.nav-dropdown {
  width: 100%;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn.active {
  color: var(--primary);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-dropdown-btn.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  margin-bottom: 8px;
}

.nav-dropdown-menu.open {
  display: flex;
}

.nav-dropdown-menu a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--accent);
}

.sidebar-cta {
  padding: 0 24px 32px 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary);
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  width: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  color: #FFFFFF;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* MOBILE HEADER */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  padding: 0 16px;
  z-index: 50;
}

@media (min-width: 1024px) {
  .mobile-header {
    display: none;
  }
}

.mobile-header-logo img {
  width: 120px;
  height: auto;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #4B5563;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #1F2937;
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  z-index: 45;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.mobile-drawer-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

/* MAIN CONTENT WRAPPER */
.main-wrapper {
  width: 100%;
}

@media (min-width: 1024px) {
  .main-wrapper {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
  }
}

@media (max-width: 1023px) {
  .main-wrapper {
    padding-top: var(--header-height);
  }
}

/* CONTAINER */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

/* HERO SECTION */
.hero-section {
  padding: 60px 0 40px 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 80px 0 60px 0;
  }
}

.hero-title {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  max-width: 900px;
}

@media (min-width: 640px) { .hero-title { font-size: 52px; } }
@media (min-width: 1024px) { .hero-title { font-size: 68px; } }

.hero-title .highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 20px;
  }
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .hero-btns {
    flex-direction: row;
    align-items: center;
  }
}

.hero-media {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #0F172A;
}

@media (min-width: 768px) {
  .hero-media {
    height: 480px;
  }
}

.hero-media img, .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TRUSTED BY LOGO STRIP */
.trusted-section {
  padding: 24px 0 40px 0;
}

.trusted-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .trusted-flex {
    flex-direction: row;
    align-items: center;
  }
}

.trusted-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748B;
  white-space: nowrap;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
  width: 100%;
}

.trusted-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #94A3B8;
  letter-spacing: -0.5px;
}

/* SERVICES SECTION GRID */
.section-services {
  padding: 40px 0;
}

.services-box {
  background-color: var(--bg-light);
  border-radius: 24px;
  padding: 36px 24px;
}

@media (min-width: 768px) {
  .services-box {
    padding: 60px 48px;
  }
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.services-tag {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-title {
  font-size: 32px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .services-title {
    font-size: 48px;
  }
}

.services-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--primary);
  max-width: 680px;
}

@media (min-width: 768px) {
  .services-desc {
    font-size: 22px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(29, 31, 90, 0.08);
}

.service-card-link {
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-card-h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card-p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* INNOVATION SPOTLIGHT */
.section-innovation {
  padding: 80px 0;
}

.innovation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .innovation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.innovation-img {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
}

.innovation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.innovation-subtitle {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.innovation-h2 {
  font-size: 32px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .innovation-h2 {
    font-size: 48px;
  }
}

.innovation-p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* WHY CHOOSE US */
.section-why {
  padding: 60px 0 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pillar-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--bg-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* RESULTS / METRICS GRID */
.section-results {
  padding: 60px 0;
}

.results-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .results-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  background-color: var(--bg-light);
  border-radius: 16px;
  padding: 32px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.metric-label {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

.metric-val {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

/* TESTIMONIALS */
.section-testimonials {
  padding: 80px 0;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track:active,
.testimonial-track.is-dragging {
  cursor: grabbing !important;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 85%;
  max-width: 520px;
  scroll-snap-align: start;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  background-color: #FFFFFF;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 500px;
  }
}

.stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 20px;
}

.quote-text {
  font-size: 19px;
  line-height: 1.6;
  color: var(--primary);
  font-style: normal;
  margin-bottom: 24px;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* SECTOR SOLUTIONS TABS */
.section-sectors {
  padding: 80px 0;
}

.sectors-box {
  background-color: var(--bg-light);
  border-radius: 24px;
  padding: 36px 24px;
}

@media (min-width: 768px) {
  .sectors-box {
    padding: 60px 48px;
  }
}

.sectors-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 36px;
}

@media (min-width: 1024px) {
  .sectors-layout {
    flex-direction: row;
    gap: 48px;
  }
}

.sector-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 1024px) {
  .sector-nav {
    flex-direction: column;
    width: 220px;
    flex-shrink: 0;
  }
}

.sector-btn {
  background: none;
  border: none;
  padding: 12px 18px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.sector-btn.active {
  color: var(--primary);
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.7);
}

.sector-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .sector-content {
    flex-direction: row;
    align-items: center;
  }
}

.sector-img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .sector-img {
    width: 45%;
    height: 340px;
    flex-shrink: 0;
  }
}

.sector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-info h3 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.sector-info p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--primary);
}

/* CTA BANNER */
.cta-banner {
  background-color: var(--primary);
  color: #FFFFFF;
  border-radius: 24px;
  padding: 60px 24px;
  text-align: center;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 80px 48px;
  }
}

.cta-banner h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-banner h2 { font-size: 48px; }
}

.cta-banner p {
  font-size: 18px;
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

/* FOOTER */
.site-footer {
  background-color: #FFFFFF;
  border-top: 1px solid #F1F5F9;
  padding: 80px 0 40px 0;
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
  }
}

.footer-brand img {
  width: 140px;
  margin-bottom: 20px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #F1F5F9;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #94A3B8;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #94A3B8;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--primary);
}

/* INDEPENDENT MULTI-COLOR WAVE FLOWING BANNER */
.hero-media {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #1E1B4B;
}

@media (min-width: 768px) {
  .hero-media {
    height: 480px;
  }
}

.independent-flowing-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: #1E1B4B;
}

.independent-flowing-svg {
  width: 135%;
  height: 135%;
  position: absolute;
  top: -17.5%;
  left: -17.5%;
  display: block;
}

.color-layer {
  transform-origin: center center;
  will-change: transform;
}

/* Layer 1: Deep Indigo Background Motion */
.layer-bg {
  animation: flowBg 24s ease-in-out infinite alternate;
}

@keyframes flowBg {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(1deg); }
  100% { transform: scale(0.98) rotate(-1deg); }
}

/* Layer 2: Amber/Gold Wave (Flows Top-Right & Rotates) */
.layer-gold {
  animation: flowGold 13s ease-in-out infinite alternate;
}

@keyframes flowGold {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(35px, -25px) scaleY(1.18) rotate(2.5deg);
  }
  66% {
    transform: translate(-20px, 15px) scaleY(0.92) rotate(-2deg);
  }
  100% {
    transform: translate(15px, -30px) scaleY(1.1) rotate(1deg);
  }
}

/* Layer 3: Pink/Magenta Wave (Flows Down & Scales Horizontally) */
.layer-pink {
  animation: flowPink 17s ease-in-out infinite alternate;
}

@keyframes flowPink {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  40% {
    transform: translate(-45px, 30px) scaleX(1.12) scaleY(1.05);
  }
  80% {
    transform: translate(30px, -20px) scaleX(0.92) scaleY(0.95);
  }
  100% {
    transform: translate(-15px, 15px) scale(1.04);
  }
}

/* Layer 4: Sky Blue/Cyan Wave (Flows Bottom-Left Sweep & Diagonal Oscillation) */
.layer-blue {
  animation: flowBlue 9.5s ease-in-out infinite alternate;
}

@keyframes flowBlue {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
  }
  35% {
    transform: translate(-35px, -35px) scale(1.14) rotate(-3deg);
  }
  70% {
    transform: translate(25px, 20px) scale(0.92) rotate(2deg);
  }
  100% {
    transform: translate(-10px, -15px) scale(1.06) rotate(-1deg);
  }
}

.flowing-glow-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.25), transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.2), transparent 50%);
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite alternate;
}

/* BLOG ARTICLE DETAIL STYLES */
.article-header {
  padding: 60px 0 32px 0;
  max-width: 860px;
}

.article-category {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.article-title {
  font-size: 38px;
  line-height: 1.15;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .article-title {
    font-size: 50px;
  }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 36px;
}

.article-banner-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 48px;
}

.article-content {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
}

.article-content h2 {
  font-size: 28px;
  color: var(--primary);
  margin: 48px 0 20px 0;
  font-weight: 700;
}

.article-content h3 {
  font-size: 22px;
  color: var(--primary);
  margin: 32px 0 16px 0;
  font-weight: 600;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content ul, .article-content ol {
  margin: 0 0 28px 24px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content blockquote {
  border-left: 4px solid var(--accent);
  background-color: var(--bg-light);
  padding: 24px 28px;
  border-radius: 0 16px 16px 0;
  font-style: italic;
  font-size: 20px;
  color: var(--primary);
  margin: 36px 0;
}

.article-content pre {
  background-color: #0F172A;
  color: #F8FAFC;
  padding: 24px;
  border-radius: 14px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin: 32px 0;
}

@keyframes glowPulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.85; }
}



