/* ============================================================
   YOHANORG THEME — COMPONENT STYLES
   Imported via WordPress enqueue (appended after style.css)
   ============================================================ */

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: rgba(8, 12, 18, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 12, 18, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 174, 239, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header .header-inner.container {
  max-width: 1500px;
}

.site-logo .custom-logo-link,
.site-logo .custom-logo,
.site-logo img {
  display: block;
}

.site-logo .custom-logo,
.site-logo img {
  height: 100px;
  width: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .site-logo .custom-logo,
  .site-logo img {
    height: 100px !important;
  }
}

/* Nav Links */
.nav-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 244, 250, 0.75);
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--electric-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link--active {
  color: var(--white);
  background: rgba(0, 174, 239, 0.08);
}

.nav-link:hover::after,
.nav-link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--light-silver);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

#mobile-menu-toggle {
  gap: 6px;
}

#mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(4.25px) rotate(45deg);
}

#mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(8, 12, 18, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 174, 239, 0.1);
}

.mobile-menu.is-open {
  max-height: 100vh;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-list a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-silver);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-list a:hover {
  color: var(--electric-blue);
  padding-left: 0.5rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: var(--black);
  min-height: 100vh;
}

.hero-heading {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-radial-1 {
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 174, 239, 0.12) 0%, transparent 60%);
  filter: blur(40px);
}

.hero-radial-2 {
  bottom: -10%;
  right: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(141, 37, 244, 0.1) 0%, transparent 60%);
  filter: blur(60px);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(0, 174, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

/* Tech Badges */
.tech-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 174, 239, 0.8);
  background: rgba(0, 174, 239, 0.06);
  border: 1px solid rgba(0, 174, 239, 0.15);
  border-radius: 4px;
  transition: all 0.2s;
}

.tech-badge:hover {
  background: rgba(0, 174, 239, 0.12);
  border-color: rgba(0, 174, 239, 0.3);
  color: var(--electric-blue);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(0, 174, 239, 0.4);
  border-radius: 11px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--electric-blue);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  position: relative;
}

.service-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.25rem 0.75rem;
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
  color: var(--white);
  border-radius: 20px;
}

.service-icon-wrap {
  display: inline-flex;
}

.service-icon-inner {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15) 0%, rgba(141, 37, 244, 0.1) 100%);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--electric-blue);
  transition: all 0.4s var(--ease-smooth);
}

.service-card:hover .service-icon-inner {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.25) 0%, rgba(141, 37, 244, 0.2) 100%);
  border-color: rgba(0, 174, 239, 0.5);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 25px rgba(0, 174, 239, 0.3);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.floating-stat {
  position: absolute;
  padding: 0.85rem 1.25rem;
  background: rgba(8, 12, 18, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  text-align: center;
  z-index: 10;
}

.floating-stat-1 {
  top: 10%;
  right: -5%;
  animation: float 5s ease-in-out infinite;
}

.floating-stat-2 {
  bottom: 15%;
  left: -5%;
  animation: float 7s ease-in-out infinite 1s;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 8px;
  color: var(--electric-blue);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-timeline {
  position: relative;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-purple));
  z-index: 0;
  display: none;
}

@media (min-width: 1024px) {
  .process-line { display: block; }
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 1rem;
}

.process-step-number {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--electric-blue);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.process-step-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border: 2px solid rgba(0, 174, 239, 0.3);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--electric-blue);
  margin: 0 auto 1.25rem;
  transition: all 0.4s;
  position: relative;
}

.process-step-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--electric-blue) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  animation: rotate-slow 4s linear infinite;
}

/* ============================================================
   CONTACT FORM FIELDS
   ============================================================ */
#contact-form input,
#contact-form textarea,
#contact-form select,
#contact-page-form input,
#contact-page-form textarea,
#contact-page-form select,
#service-enquiry-form input,
#service-enquiry-form textarea,
#service-enquiry-form select {
  padding: 1rem 1.5rem;
}

#contact-form select,
#contact-page-form select,
#service-enquiry-form select {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--light-silver);
  border: 1px solid rgba(0, 174, 239, 0.2);
  -webkit-appearance: none;
  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='%23AFC5DE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.6rem;
}

#contact-form select option,
#contact-page-form select option,
#service-enquiry-form select option {
  background: #0d1520;
  /* ============================================================
     SERVICE DESCRIPTION (in Hero)
     ============================================================ */
  .service-description {
    max-width: 900px;
  }

  .service-description p {
    color: var(--steel-gray);
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .service-description p:last-child {
    margin-bottom: 0;
  }

  .service-description h2,
  .service-description h3 {
    color: var(--light-silver);
    font-family: var(--font-headline);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .service-description h2 {
    font-size: 1.5rem;
  }

  .service-description h3 {
    font-size: 1.25rem;
  }

  .service-description ul,
  .service-description ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }

  .service-description li {
    color: var(--steel-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }

  .service-description strong {
    color: var(--light-silver);
    font-weight: 600;
  }

  /* ============================================================
     PROCESS STEPS
     ============================================================ */
  color: var(--light-silver);
}

.process-step:hover .process-step-icon {
  border-color: var(--electric-blue);
  box-shadow: 0 0 25px rgba(0, 174, 239, 0.4);
  transform: scale(1.1);
}

.process-step:hover .process-step-icon::before {
  opacity: 0.4;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(0, 174, 239, 0.1);
  pointer-events: none;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-purple);
  background: rgba(141, 37, 244, 0.08);
  border: 1px solid rgba(141, 37, 244, 0.2);
  border-radius: 3px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 10px;
  color: var(--electric-blue);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-item:hover .contact-icon-wrap {
  background: rgba(0, 174, 239, 0.15);
  border-color: rgba(0, 174, 239, 0.4);
  transform: scale(1.1);
}

.form-response {
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-response--success {
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: #00c864;
}

.form-response--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-heading {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-silver);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--steel-gray);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-link:hover {
  color: var(--electric-blue);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--steel-gray);
}

.footer-contact-list i {
  color: var(--electric-blue);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--steel-gray);
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--electric-blue);
}

.social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: var(--steel-gray);
  font-size: 0.875rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(0, 174, 239, 0.1);
  border-color: rgba(0, 174, 239, 0.3);
  color: var(--electric-blue);
  transform: translateY(-2px);
}

.footer-grid-overlay {
  background-image:
    linear-gradient(rgba(0, 174, 239, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal-link {
  font-size: 0.8rem;
  color: var(--steel-gray);
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--electric-blue);
}

/* Newsletter */
.newsletter-input {
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
}

.newsletter-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--electric-blue);
  border: none;
  border-radius: 6px;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: var(--deep-blue);
  transform: translateX(2px);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.15);
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: 8px;
  color: var(--electric-blue);
  cursor: pointer;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s var(--ease-smooth);
  backdrop-filter: blur(10px);
}

#back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#back-to-top:hover {
  background: rgba(0, 174, 239, 0.25);
  border-color: rgba(0, 174, 239, 0.6);
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.3);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.custom-cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(0, 174, 239, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  top: -14px;
  left: -14px;
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  mix-blend-mode: screen;
}

.custom-cursor.is-hover {
  width: 44px;
  height: 44px;
  background: rgba(0, 174, 239, 0.07);
  border-color: var(--electric-blue);
}

.custom-cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--electric-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  top: -2.5px;
  left: -2.5px;
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.custom-cursor-dot.is-hover {
  width: 8px;
  height: 8px;
  background: var(--white);
}

/* ============================================================
   STATS
   ============================================================ */
.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(0, 174, 239, 0.15);
}

.stat-item:last-child::after {
  display: none;
}

/* ============================================================
   PAGE SPECIFIC
   ============================================================ */

/* Single Post */
.post-content {
  max-width: 760px;
  margin: 0 auto;
}

.post-content,
.service-main-content,
.case-study-content {
  color: var(--steel-gray);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  line-height: 1.85;
}

.post-content > *:not(:last-child),
.service-main-content > *:not(:last-child),
.case-study-content > *:not(:last-child) {
  margin-bottom: 1.25rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.service-main-content h1,
.service-main-content h2,
.service-main-content h3,
.service-main-content h4,
.service-main-content h5,
.service-main-content h6,
.case-study-content h1,
.case-study-content h2,
.case-study-content h3,
.case-study-content h4,
.case-study-content h5,
.case-study-content h6 {
  color: var(--light-silver);
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
}

.post-content h1,
.service-main-content h1,
.case-study-content h1 {
  font-size: clamp(1.9rem, 1.6rem + 1vw, 2.6rem);
}

.post-content h2,
.service-main-content h2,
.case-study-content h2 {
  font-size: clamp(1.55rem, 1.35rem + 0.8vw, 2rem);
}

.post-content h3,
.service-main-content h3,
.case-study-content h3 {
  font-size: clamp(1.3rem, 1.15rem + 0.5vw, 1.6rem);
}

.post-content h4,
.service-main-content h4,
.case-study-content h4 {
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.3rem);
}

.post-content h5,
.service-main-content h5,
.case-study-content h5,
.post-content h6,
.service-main-content h6,
.case-study-content h6 {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.post-content p,
.service-main-content p,
.case-study-content p {
  color: var(--steel-gray);
}

.post-content a,
.service-main-content a,
.case-study-content a {
  color: var(--electric-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.post-content a:hover,
.service-main-content a:hover,
.case-study-content a:hover {
  color: var(--light-silver);
}

.post-content ul,
.post-content ol,
.service-main-content ul,
.service-main-content ol,
.case-study-content ul,
.case-study-content ol {
  padding-left: 1.5rem;
  margin: 1.25rem 0;
}

.post-content ul,
.service-main-content ul,
.case-study-content ul {
  list-style: disc;
}

.post-content ol,
.service-main-content ol,
.case-study-content ol {
  list-style: decimal;
}

.post-content li,
.service-main-content li,
.case-study-content li {
  margin-bottom: 0.55rem;
  padding-left: 0.2rem;
}

.post-content li::marker,
.service-main-content li::marker,
.case-study-content li::marker {
  color: rgba(0, 174, 239, 0.9);
}

.post-content li > ul,
.post-content li > ol,
.service-main-content li > ul,
.service-main-content li > ol,
.case-study-content li > ul,
.case-study-content li > ol {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.post-content blockquote,
.service-main-content blockquote,
.case-study-content blockquote,
.post-content .wp-block-quote,
.service-main-content .wp-block-quote,
.case-study-content .wp-block-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid rgba(0, 174, 239, 0.65);
  border-radius: 0 0.75rem 0.75rem 0;
  background: linear-gradient(90deg, rgba(0, 174, 239, 0.08), rgba(0, 174, 239, 0.02));
  color: var(--light-silver);
}

.post-content blockquote p,
.service-main-content blockquote p,
.case-study-content blockquote p,
.post-content .wp-block-quote p,
.service-main-content .wp-block-quote p,
.case-study-content .wp-block-quote p {
  color: var(--light-silver);
  font-size: 1.02em;
}

.post-content hr,
.service-main-content hr,
.case-study-content hr {
  border: 0;
  height: 1px;
  margin: 2.25rem 0;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.3), transparent);
}

.post-content code,
.service-main-content code,
.case-study-content code {
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.15);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-size: 0.875em;
  color: var(--electric-blue);
  font-family: 'Fira Code', 'Courier New', monospace;
}

.post-content pre,
.service-main-content pre,
.case-study-content pre {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.post-content pre code,
.service-main-content pre code,
.case-study-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  color: var(--light-silver);
}

.post-content table,
.service-main-content table,
.case-study-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  border: 1px solid rgba(0, 174, 239, 0.16);
}

.post-content th,
.post-content td,
.service-main-content th,
.service-main-content td,
.case-study-content th,
.case-study-content td {
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(0, 174, 239, 0.12);
  text-align: left;
}

.post-content th,
.service-main-content th,
.case-study-content th {
  color: var(--light-silver);
  background: rgba(0, 174, 239, 0.08);
}

.post-content img,
.service-main-content img,
.case-study-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.post-content figure,
.service-main-content figure,
.case-study-content figure {
  margin: 1.75rem 0;
}

.post-content figcaption,
.service-main-content figcaption,
.case-study-content figcaption {
  margin-top: 0.6rem;
  color: rgba(240, 244, 250, 0.65);
  font-size: 0.88rem;
  text-align: center;
}

@media (max-width: 767px) {
  .post-content,
  .service-main-content,
  .case-study-content {
    line-height: 1.78;
  }

  .post-content h1,
  .post-content h2,
  .post-content h3,
  .post-content h4,
  .service-main-content h1,
  .service-main-content h2,
  .service-main-content h3,
  .service-main-content h4,
  .case-study-content h1,
  .case-study-content h2,
  .case-study-content h3,
  .case-study-content h4 {
    margin-top: 1.9rem;
  }
}

/* Keep single template article content aligned to the left grid edge */
.service-main-content,
.case-study-content {
  max-width: none;
  margin: 0;
}

.service-main-content,
.case-study-content {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.service-main-content p,
.case-study-content p {
  color: var(--steel-gray);
  line-height: inherit;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--steel-gray); }
.breadcrumbs a { color: var(--steel-gray); }
.breadcrumbs a:hover { color: var(--electric-blue); }

/* Pagination */
.pagination {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.page-numbers {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--steel-gray);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: all 0.2s;
}

.page-numbers:hover,
.page-numbers.current {
  background: rgba(0, 174, 239, 0.1);
  border-color: rgba(0, 174, 239, 0.3);
  color: var(--electric-blue);
}

/* Widget Styles */
.widget-title {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--electric-blue);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 174, 239, 0.15);
}

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area {
  scroll-margin-top: 100px;
}

.comments-title {
  color: var(--light-silver);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-item {
  padding: 1.5rem;
}

.comment-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.comment-author-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  border: 2px solid rgba(0, 174, 239, 0.1);
}

.comment-content-wrap {
  min-width: 0;
}

.comment-author-name {
  color: var(--light-silver);
}

.comment-author-name a {
  color: var(--light-silver);
  text-decoration: none;
  transition: color 0.2s;
}

.comment-author-name a:hover {
  color: var(--electric-blue);
}

.comment-text {
  line-height: 1.7;
}

.comment-text p {
  margin-bottom: 1rem;
}

.comment-text p:last-child {
  margin-bottom: 0;
}

.comment-actions {
  font-size: 0.75rem;
}

.comment-actions a {
  color: var(--steel-gray);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: var(--font-headline);
}

.comment-actions a:hover {
  color: var(--electric-blue);
}

.comment-actions .reply-link a::before {
  content: '\f3e5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.25rem;
}

/* Nested comments */
.children {
  list-style: none;
  margin-top: 1.5rem;
  padding-left: 0;
}

.children .comment-item {
  position: relative;
}

.children .comment-item::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.3) 0%, transparent 100%);
}

@media (min-width: 768px) {
  .children {
    padding-left: 3rem;
  }
  
  .children .comment-item::before {
    left: -1.5rem;
  }
}

/* Comment form */
.comment-form {
  padding: 2rem;
  margin-top: 3rem;
}

.comment-form label {
  color: var(--light-silver);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 174, 239, 0.15);
  border-radius: 8px;
  color: var(--light-silver);
  font-size: 0.875rem;
  transition: all 0.2s;
  font-family: inherit;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: rgba(0, 174, 239, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.08);
}

.comment-form textarea {
  resize: vertical;
  min-height: 150px;
}

.comment-form .required {
  color: #ef4444;
}

.comment-form .form-submit {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.comment-reply-title {
  color: var(--light-silver);
}

.comment-reply-title small {
  font-size: 0.75rem;
  margin-left: 1rem;
}

.comment-reply-title small a {
  color: var(--steel-gray);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: color 0.2s;
}

.comment-reply-title small a:hover {
  color: var(--electric-blue);
}

/* Comment navigation */
.comment-navigation a {
  color: var(--steel-gray);
  text-decoration: none;
  font-size: 0.875rem;
  font-family: var(--font-headline);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.comment-navigation a:hover {
  color: var(--electric-blue);
}

.no-comments {
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
